/* Hero Section - Mobile First */

.hero {
    min-height: fit-content;
    display: flex;
    align-items: center;
    padding: 3rem 1rem ;
    background: url('../assets/Background/BackgroundBlurLight.png') center/cover;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero h1 {
    font-size: 2rem;
    color: rgba(24, 24, 24, 0.95);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(24, 24, 24, 0.95);
    max-width: 100%;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-medium);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Tablet */
@media (min-width: 768px) {
    .hero {
        padding: 6rem 2rem 4rem;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .hero-icon {
        width: 100px;
        height: 100px;
    }

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 600px;
    }

    .cta-button {
        font-size: 1.05rem;
        padding: 1.1rem 2.25rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {


.hero-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 4rem;
}

    .hero-icon {
        width: 120px;
        height: 120px;
    }

    .hero h1 {
        font-size: 4.5rem;
        margin-bottom: 1.5rem;
    }

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

    .cta-button {
        font-size: 1.1rem;
        padding: 1.2rem 2.5rem;
    }
}