:root {
    --hero-bg: var(--color-navy);
}


.hero-section {
    /* background-color: var(--hero-bg); */
    background-image:linear-gradient(to top, var(--color-navy), var(--color-deep-blue));
    color: white;
    padding: 4rem 0;
    padding-top:2rem;
    margin-bottom: 3rem;
}

.hero-section .section-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.hero-section .section-description p{
    color:white !important;
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }

    .hero-section .section-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section .section-header h1 {
        font-size: 2rem;
    }
}