/* Hero Section Styles */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--gray-dark);
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
                url('../../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 1;
}

.hero-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
    width: 100%;
    text-align: center;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s 0.3s ease forwards;
    opacity: 0;
    animation-fill-mode: both;
    width: 100%;
    max-width: 42rem; /* equivalent to max-w-2xl */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .btn-primary {
    animation: fadeInUp 1s 0.6s ease forwards;
    opacity: 0;
    animation-fill-mode: both;
    margin: 0 auto;
}

/* Background image with overlay */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive adjustments */
@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
    
    .hero-section p {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-section h1 {
        font-size: 4.5rem;
    }
}