/* Bannière */
.hero-banner {
    width: 100%;
    margin-top: 100px; /* Pour compenser le header fixe */
    margin-bottom: 0; /* Supprime la marge en bas */
}

.banner-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    max-height: 300px; /* Réduit de 400px à 300px */
}

.banner-image img {
    width: 100%;
    height: 300px; /* Réduit de 400px à 300px */
    display: block;
    object-fit: cover; /* Assure que l'image couvre bien l'espace */
    object-position: center; /* Centre l'image */
}

/* Cartouche avec dégradé */
.banner-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, 
        rgba(203, 188, 160, 0.9) 0%,
        rgba(203, 188, 160, 0.8) 40%,
        rgba(203, 188, 160, 0) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Texte dans le cartouche */
.banner-text {
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-right: 2rem;
}

.text-decorative {
    font-family: "Grand Hotel", cursive;
    font-size: 3rem;
    line-height: 1.2;
}

.text-modern {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-banner {
        margin-top: 90px;
    }

    .banner-overlay {
        width: 60%;
    }

    .text-decorative {
        font-size: 2.5rem;
    }

    .text-modern {
        font-size: 1.25rem;
    }

    .banner-image, .banner-image img {
        height: 250px; /* Réduit de 300px à 250px */
    }
}

@media (max-width: 768px) {
    .hero-banner {
        margin-top: 70px;
    }

    .banner-overlay {
        width: 70%;
    }

    .text-decorative {
        font-size: 2rem;
    }

    .text-modern {
        font-size: 1rem;
    }

    .banner-image, .banner-image img {
        height: 200px; /* Réduit de 250px à 200px */
    }
}
