/* Hero Section */
.nav-links a:hover {
    color: var(--text-primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
    background-image: url('../assets/back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    cursor: default;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 2;
    padding: 3rem;
}

.hero h1 {
    font-family: 'Homenaje', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;

}

@keyframes marbleFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.hero .subtitle {
    font-family: 'Homenaje', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #d4d2cf;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.launchlist-widget {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

@media (prefers-contrast: high) {
    .hero::before {
        background: rgba(0, 0, 0, 0.6);
    }
    
    .hero-content {
        background: rgba(0, 0, 0, 0.7);
    }
}