/* HERO */

.hero {
    min-height: 100vh;
    background:
        radial-gradient(circle at 30% 20%, rgba(77,163,255,0.12), transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05), transparent 40%),
        var(--bg-main);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

/* TYPOGRAPHY */

.hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* BUTTON */

.hero-actions {
    display: flex;
}
@media (max-width: 768px) {
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
}
.btn-primary {
    background: var(--accent);
    color: #000;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

/* FADE-IN ANIMATION */

.fade-group .fade-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
}

.fade-group .delay-1 {
    animation-delay: 0.2s;
}

.fade-group .delay-2 {
    animation-delay: 0.4s;
}

.fade-group .delay-3 {
    animation-delay: 0.6s;
}

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


@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
        align-items: flex-start;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }
}
