
/* styles.css for elenebelocococicococicocicacia.com */

:root {
    --primary-color: #1e40af;
    --secondary-color: #38bdf8;
    --accent-color: #fda4af;
    --bg-gradient: linear-gradient(135deg, #ffffff, #f3f4f6);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-gradient);
    color: #111827;
    line-height: 1.6;
    overscroll-behavior: none;
}

a {
    color: inherit;
    text-decoration: none;
}

header {
    position: fixed;
    width: 100%;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    position: relative;
    font-weight: 600;
    padding: 0.5rem 0;
    transition: all var(--transition-speed) ease;
}

nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav a:hover::after {
    transform: scaleX(1);
}

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--glass-bg);
    border-radius: 2rem;
    backdrop-filter: blur(20px);
    margin-top: 8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    color: transparent;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10rem;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.2);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(30, 64, 175, 0.3);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.card {
    background: var(--glass-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(15px);
    transition: transform var(--transition-speed) ease;
}

.card:hover {
    transform: translateX(10px);
}

.footer {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
    font-size: 0.9rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 4rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Add animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.float {
    animation: float 6s infinite ease-in-out;
}
