/* Hero Section */

.hero-section {
    padding: 7rem 0;
    background: linear-gradient(
        135deg,
        var(--bg-light) 0%,
        var(--primary-subtle) 100%
    );
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero-title {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.hero-title,
.hero-lead,
.hero-section .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s ease forwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-lead {
    animation-delay: 0.5s;
}

.hero-section .btn {
    animation-delay: 0.8s;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    top: -120px;
    left: -100px;
    filter: blur(40px);
    animation: floatBlob 10s ease-in-out infinite;
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
    filter: blur(35px);
    animation: floatBlob 14s ease-in-out infinite reverse;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes floatBlob {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.08);
    }
}
