/* assets/contact-header.css */
.contact-header-banner {
    position: relative;
    background-image: url('https://res.cloudinary.com/dyr9k38ue/images/v1769766695/home-hero-banner/home-hero-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    color: var(--white);
    text-align: center;
    margin-top: 80px; /* To offset fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-header-banner.gallery-page {
    background-image: url('https://res.cloudinary.com/dyr9k38ue/images/w_2560,h_1520,c_scale/v1769766564/narayani/narayani.jpg');
}

.case-study-detail-hero {
    min-height: 400px;
}

.contact-header-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 69%); /* Theme green overlay with 70% opacity */
    z-index: 1;
}


.contact-header-banner .container {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
}

.contact-header-banner .banner-content h1 {
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.contact-header-banner .banner-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-header-banner {
        padding: 4rem 2rem;
        margin-top: 70px;
    }

    .contact-header-banner .banner-content h1 {
        font-size: 2.8rem;
    }

    .contact-header-banner .banner-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .contact-header-banner {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-header-banner .banner-content h1 {
        font-size: 2.2rem;
    }
}
