/* Hero Section Styles */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-align: center;
    position: relative;
    margin-top: 0;
    padding-top: 140px;
    /* To account for fixed navbar */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}


.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, var(--saffron-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* text-fill-color: transparent; */
}

.hero-content h2 {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 25px;
    /*background: linear-gradient(135deg, #3e8e41, #a9cd62, #f0f9e8);*/
    background: linear-gradient(135deg, #FF9933, #FFA500, #FFD580);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(34, 60, 34, 0.2);
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-content p:last-of-type {
    font-size: 1.4rem;
    margin-bottom: 35px;
}

.hero-content .cta-button {
    font-size: 1.1rem;
    padding: 15px 35px;
}

/* Add a subtle animation for the hero content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content h2 {
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-content p {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-content .cta-button {
    animation: fadeInUp 1s ease 0.6s both;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-content p:last-of-type {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-content p:last-of-type {
        font-size: 1.1rem;
    }
    
    .hero-content .cta-button {
        font-size: 1rem;
        padding: 12px 30px;
    }
}