@font-face {
    font-family: 'Titre'; /* Le nom que vous choisirez pour l'utiliser plus tard */
    src: url('../fonts/Soligant.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: 'Texte'; /* Le nom que vous choisirez pour l'utiliser plus tard */
    src: url('../fonts/SofiaProRegularAz.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Sur-texte'; /* Le nom que vous choisirez pour l'utiliser plus tard */
    src: url('../fonts/Cinzel.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Avis';
    src: url('../fonts/CormorantInfant.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Largeur de la scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

/* Fond de la scrollbar */
::-webkit-scrollbar-track {
    background: #1B2179;
}

/* La partie qui bouge */
::-webkit-scrollbar-thumb {
    background: #F4F2EC;
    border-radius: 10px;
}

/* Au hover sur la partie qui bouge */
::-webkit-scrollbar-thumb:hover {
    background: #d99f35;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #F4F2EC;
    text-decoration: none;
    color: white;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 100px;
    background: #1B2179;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 100%;
    z-index: 1000;
}

.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    animation: navSlideDown 0.35s ease forwards;
}

@keyframes navSlideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}

#nav-spacer {
    width: 100%;
    height: 0;
}

.nav-logo img {
    height: 100px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-family: 'Texte', sans-serif;
    text-decoration: none;
    color: inherit;
    /* font-weight: 20; */
    transition: color 0.2s;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: #F1BA53;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-social a {
    color: inherit;
    display: flex;
    align-items: center;
    transition: color 0.2s, transform 0.2s;
}

.nav-social a:hover {
    color: #F1BA53;
    transform: scale(1.15);
}

header {
    display: flex;
    height: 100vh;
    background: #1B2179;
    overflow: hidden;
}

.hero-image {
    width: 50%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.hero-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 7rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-right: 0;
    gap: 1.2rem;
}

.Sur-titre {
    font-family: 'Sur-texte', sans-serif;
    color: #F1BA53;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-content h1{
    font-family: 'Sur-texte', sans-serif;
    font-size: 5rem;
    font-weight:normal;
    margin-bottom: 0;
}

.lieu{
    color: #949494;
    padding-bottom: 30px;
}

.description{
    font-family: 'Texte', sans-serif;
    font-weight: normal;
    font-size: 1.2rem;
    padding-right: 150px;
}

.btn {
    padding: 0.9rem 2.4rem;
    background: transparent;
    border: 2px solid #F1BA53;
    color: #F1BA53;
    font-family: 'Sur-texte', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    text-decoration: none;
    display: inline-block;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #F1BA53;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: #1B2179;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-contact {
    padding: 0.9rem 2.4rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Sur-texte', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease;
    text-decoration: none;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-contact:hover::before {
    left: 0;
}

.btn-contact:hover {
    border-color: rgba(255, 255, 255, 0.9);
    color: white;
}

.btn-contact span {
    position: relative;
    z-index: 1;
}

.lang-switcher {
    margin-left: 15px;
    display: flex;
    align-items: center;
    
}
.lang-switcher select {
    padding: 5px;
    border-radius: 5px;
    border: 2px solid #4551ff;
    background: #1B2179;
    cursor: pointer;
    font-family: inherit;
    color: white;
}

#verif {
    display: none;
}
 
/* Icône hamburger/close — cachée par défaut sur desktop */
.icons {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 2rem;
    z-index: 1100;
}
 
#close-icon { display: none; }
 
.nav-logo img {
    height: 100px;
    display: block;
}
 
/* Liens centrés */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
 
.nav-links a {
    font-family: 'Texte', sans-serif;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
    font-size: 1.1rem;
}
 
.nav-links a:hover {
    color: #F1BA53;
}
 
/* Icônes sociales + langue */
.nav-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}
 
.nav-social a {
    color: inherit;
    display: flex;
    align-items: center;
    transition: color 0.2s, transform 0.2s;
}
 
.nav-social a:hover {
    color: #F1BA53;
    transform: scale(1.15);
}

.nav-links-social-mobile {
    display: none;
}


@media (max-width: 1300px){
    .btn {
        padding: 0.9rem 0.4rem;
        font-size: 0.9rem;
    }

    .btn-contact {
        padding: 0.9rem 0.4rem;
        font-size: 0.9rem;
    }
}

/* ══════════════════════════════════════════
   NAVBAR – MOBILE  (≤ 900px)
══════════════════════════════════════════ */
 
@media (max-width: 1000px) {

    .nav-social {
        display: none !important;
    }
 
    nav {
        height: 70px;
        padding: 0 1.5rem;
        flex-wrap: nowrap;
    }
 
    .nav-logo img {
        height: 70px;
    }
 
    /* Afficher le bouton hamburger */
    .icons {
        display: flex;
        align-items: center;
        justify-content: center;
    }
 
    /* Menu déroulant : masqué par défaut */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #1b2179e8;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transform: translateX(100%);   /* Off-screen à droite */
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        left: unset;
        right: 0;
    }
 
    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
 
    .nav-links a {
        font-size: 1.4rem;
        letter-spacing: 0.08em;
    }
 
    .nav-links-social-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 2rem; /* Espace par rapport au dernier lien */
        border-top: 1px solid rgba(241, 186, 83, 0.2);
        padding-top: 2rem;
        width: 60%; /* Pour centrer la bordure */
    }

    .social-row {
        display: flex;
        gap: 2rem;
    }

    .social-row i {
        font-size: 2rem;
        color: #F1BA53;
    }

    .nav-links-social-mobile .lang-switcher{
        margin-left: 15px;
        display: flex;
        align-items: center;
    
    }

    .nav-links-social-mobile .lang-switcher select {
        padding: 5px;
        border-radius: 5px;
        border: 2px solid #4551ff;
        background: #1B2179;
        cursor: pointer;
        font-family: inherit;
        color: white;
    }
 
    /* ── Ouverture via checkbox ── */
    #verif:checked ~ .nav-links {
        transform: translateX(0);
    }
 
    #verif:checked ~ .nav-links li {
        opacity: 1;
        transform: translateY(0);
    }
 
    /* Délai en cascade pour chaque lien */
    #verif:checked ~ .nav-links li:nth-child(1) { transition-delay: 0.15s; }
    #verif:checked ~ .nav-links li:nth-child(2) { transition-delay: 0.22s; }
    #verif:checked ~ .nav-links li:nth-child(3) { transition-delay: 0.29s; }
    #verif:checked ~ .nav-links li:nth-child(4) { transition-delay: 0.36s; }
 
    /* Swap icônes hamburger ↔ croix */
    #verif:checked ~ .icons #menu-icon  { display: none; }
    #verif:checked ~ .icons #close-icon { display: block; }
 
    /* Socials + langue EN BAS du menu mobile */
    #verif:checked ~ .nav-links::after {
        content: '';
    }
 
    /* On insère les socials dans le menu via un bloc dédié */
    .nav-links-social-mobile {
        display: none;
    }
 
    #verif:checked ~ .nav-links .nav-links-social-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 1rem;
        opacity: 1;
        transition-delay: 0.42s;
    }

    .nav-links-social-mobile .lang-switcher select {
        padding: 5px 10px;       
        font-size: 1.1rem;        
        border: 2px solid #4551ff;
        background: #1B2179;
        cursor: pointer;
        font-family: 'Texte', sans-serif;
        color: white;
        width: 100%;              
        max-width: 200px;         
    }

}
 

@media (max-width: 1000px) {
    header {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        /* padding-top: 70px; */
    }
 
    .hero-image {
        width: 100%;
        height: 45vw;
        max-height: 300px;
    }
 
    .hero-content {
        width: 100%;
        padding: 2.5rem 1.5rem;
        align-items: center;
        text-align: center;
    }
 
    .hero-content h1 {
        font-size: 2.8rem;
    }
 
    .description {
        padding-right: 0;
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 740px){
    .hero-image {
        width: 100%;
        height: 65vw;
        max-height: 300px;
        max-width: 740px;
    }
}

@media (max-width: 420px){
    .hero-content h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 400px){
    .hero-content h1 {
        font-size: 2rem;
    }
}












/* ── Section Produits ── */
.produits {
    background-color: #F4F2EC;
    padding: 7rem 6rem;
    color: #1B2179;
}

.produits-header {
    display: flex;
    flex-wrap: wrap; /* Permet à la barre de recherche de passer à la ligne */
    align-items: center;
    justify-content: space-between; /* Titre à gauche, sous-titre à droite */
    margin-bottom: 4rem;
    padding: 0; /* On gère le padding via la section parente */
}

.catalogue {
    flex-basis: 100%; /* Prend toute la largeur en haut */
    color: #F1BA53;
    font-family: 'Sur-texte', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.produits-titre {
    font-family: 'Sur-texte', sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    color: #1B2179;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.produits-sous-titre {
    font-family: 'Texte', sans-serif;
    color: #4a4a4a;
    font-size: 1.1rem;
    max-width: 450px; /* Limite la largeur pour forcer le bloc à droite */
    line-height: 1.5;
    margin-left: auto; /* Pousse le texte vers la droite */
}

/* Barre de recherche */
.search-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #ccc;
    border-radius: 12px; /* Coins arrondis comme sur l'image */
    padding: 1.2rem 2rem;
    background: white;
    width: 100%; /* Prend toute la largeur */
    margin-top: 3rem; /* Espace par rapport au titre */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.search-bar:focus-within {
    border-color: #F1BA53;
    box-shadow: 0 0 0 3px rgba(241, 186, 83, 0.15);
}

.search-bar svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.search-bar input {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Texte', sans-serif;
    font-size: 1.1rem;
    color: #1B2179;
    width: 100%;
}

.search-bar input::placeholder {
    color: #9a9a9a;
}

.produits {
    background-color: #F4F2EC;
    padding: 7rem 10%; /* Utilisation de % pour un meilleur centrage responsive */
}

/* Grille produits */
.produits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.produit-card {
    background: white;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.produit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(27, 33, 121, 0.12);
}

.produit-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 250px;
    margin: 0 auto;
}

.produit-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.produit-card:hover .produit-img-wrap img {
    transform: scale(1.06);
}

.produit-img-wrap picture, 
.produit-img-wrap img {
    display: block;
    width: 100% !important;
    height: auto;
    aspect-ratio: 1 / 1;
}

.produit-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #F1BA53;
    color: #1B2179;
    font-family: 'Sur-texte', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.75rem;
}

.produit-info {
    padding: 0.8rem 1rem 1rem;
    border-top: 1px solid #f0ede4;
}

.produit-origine {
    font-family: 'Sur-texte', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: #F1BA53;
    margin-bottom: 0.35rem;
}

.produit-nom {
    font-family: 'Sur-texte', sans-serif;
    font-size: 1rem;
    font-weight: normal;
    color: #1B2179;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.produit-prix {
    font-family: 'Texte', sans-serif;
    font-size: 1rem;
    color: #1B2179;
    opacity: 0.6;
}

.produits-filtres {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.produits-filtres button {
    padding: 8px 20px;
    border: 1px solid #1B2179;
    border-radius: 100px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    background: transparent;
    color: #1B2179;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.produits-filtres button.active {
    background-color: #1B2179; 
    color: white; 
}

.produit-card.rupture {
    opacity: 0.6;
    filter: grayscale(60%);
}

.produit-card.rupture .produit-img-wrap::after {
    content: "Rupture temporaire";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    z-index: 2;
}

.voir-plus-wrap {
    text-align: center;
    margin-top: 3rem;
}

.btn-voir-plus {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: 1.5px solid #1B2179;
    color: #1B2179;
    font-family: 'Sur-texte', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-voir-plus:hover {
    background: #1B2179;
    color: #F1BA53;
}

.btn-voir-plus svg {
    transition: transform 0.2s;
}

.btn-voir-plus:hover svg {
    transform: translateY(3px);
}

.btn-voir-plus svg {
    transition: transform 0.2s;
}

.btn-voir-plus:hover svg {
    transform: translateY(-3px); /* flèche monte au hover sur "Voir moins" */
}

#btnVoirMoins{
    margin-right: 1rem;
}




@media (max-width: 1200px){

    .produits-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .produits-sous-titre {
        margin-left: 0;
    }

    .produit-nom {
        font-size: 0.875rem;
    }
}

@media (max-width: 1000px){
    .produits-titre {
        font-size: 2.5rem;
    }
    .produits-sous-titre {
        font-size: 0.9rem;
    }

    #btnVoirMoins{
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

@media (max-width: 900px) {
    .produits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 450px) {
    .produits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .produits-filtres button{
        padding: 6px 10px;
    }
}

@media (max-width: 600px) {
    .produits-filtres {
        gap: 0.6rem;
    }

    .produit-nom {
        font-size: 0.775rem;
    }

    .produits-filtres button {
        padding: 6px 12px;
        font-size: 0.65rem;
    }
}












/* ══ FOOTER ══ */
footer {
    background: linear-gradient(170deg, #12185A 0%, #1B2179 60%, #0e1347 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Cercle décoratif en arrière-plan */
footer::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241,186,83,0.07), transparent 70%);
    pointer-events: none;
}

.footer-main {
    padding: 5.5rem 8% 3.5rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
}

/* ── Logo ── */
.footer-logo-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(241,186,83,0.15);
    margin-bottom: 1rem;
}

.footer-logo-row img {
    height: 180px;
    filter: brightness(0) invert(1);
    opacity: 0.88;
    transition: opacity 0.3s;
}

.footer-logo-row img:hover {
    opacity: 1;
}

/* ── Description ── */
.footer-desc {
    font-family: 'Texte', sans-serif;
    color: rgba(232,229,220,0.5);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 400px;
}

/* Petite ligne dorée sous la description */
.footer-desc::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #F1BA53;
    margin-bottom: 1.2rem;
    border-radius: 999px;
}

/* ── Réseaux sociaux ── */
.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(241,186,83,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(232,229,220,0.55);
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.2s;
}

.footer-social-btn:hover {
    background: #F1BA53;
    border-color: #F1BA53;
    color: #1B2179;
    transform: translateY(-2px);
}

/* ── Titres colonnes ── */
.footer-col-title {
    font-family: 'Sur-texte', sans-serif;
    color: #F1BA53;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1.5px;
    background: rgba(241,186,83,0.4);
    border-radius: 999px;
}

/* ── Liens ── */
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-col ul li a {
    font-family: 'Texte', sans-serif;
    color: rgba(232,229,220,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-col ul li a::before {
    content: '–';
    color: #F1BA53;
    opacity: 0;
    transform: translateX(-6px);
    transition: 0.2s;
    font-size: 0.75rem;
}

.footer-col ul li a:hover {
    color: #F1BA53;
    padding-left: 4px;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ── Séparateur ── */
.footer-divider {
    margin: 0 8%;
    height: 1px;
    background: rgba(232,229,220,0.08);
}

/* ── Barre basse ── */
.footer-bottom {
    padding: 1.8rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    font-family: 'Sur-texte', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: rgba(232,229,220,0.3);
    text-align: center;
}

.footer-bottom a {
    /* text-decoration: none; */
    color: rgba(255, 191, 0, 0.3);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 4rem 6% 3rem;
        gap: 2.5rem;
    }
    .footer-desc {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 550px) {
    .footer-main {
        grid-template-columns: 1fr;
        padding: 3.5rem 6% 2.5rem;
    }
    .footer-logo-row img {
        height: 130px;
    }
    .footer-divider { margin: 0 6%; }
    .footer-bottom { padding: 1.5rem 6%; }
}












#Contact {
    background-color: #F4F2EC;
    position: relative;
    overflow: hidden;
}

.contact-subtitle {
    flex-basis: 100%; /* Prend toute la largeur en haut */
    color: #F1BA53;
    font-family: 'Sur-texte', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-titre {
    font-family: 'Sur-texte', sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    color: #1B2179;
    margin-bottom: 1rem;
    line-height: 1.1;
    margin-bottom: 3.5rem;
}

 
        /* ── Conteneur principal ── */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}
 
        /* ══ CÔTÉ GAUCHE – Infos ══ */
.contact-info {
    padding: 6rem 5rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
 
.contact-label {
    font-family: 'Sur-texte', sans-serif;
    color: #1B2179;
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
 
        /* Blocs d'infos */
.info-bloc {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    margin-bottom: 2.2rem;
}
 
.info-icon {
    width: 46px;
    height: 46px;
    background: #1B2179;
    border: 1px solid #12185A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
}
 
/* .info-bloc:hover .info-icon {
    background: rgba(8, 25, 133, 0.712);
    border-color: #1B2179;
} */
 
.info-icon svg {
    color: #F4F2EC;
}
 
.info-text-label {
    font-family: 'Sur-texte', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F1BA53;
    margin-bottom: 0.3rem;
}
 
.info-text-value {
    font-family: 'Texte', sans-serif;
    color: #1B2179;
    font-size: 1rem;
    line-height: 1.55;
}
 
.info-text-value a {
    color: #1B2179;
    text-decoration: none;
    transition: color 0.2s;
}
.info-text-value a:hover {
    color: #F1BA53;
}
 
        /* Séparateur doré */
.contact-divider {
    width: 50px;
    height: 2px;
    background: #F1BA53;
    margin: 2.5rem 0;
    opacity: 0.5;
}
 
        /* Horaires */
.horaires-grid {
    display: grid;
    gap: 0.5rem 1.5rem;
}
 
.horaire-row {
    display: flex;
    justify-content: flex-start; 
    gap: 1rem; 
    font-family: 'Texte', sans-serif;
    font-size: 0.88rem;
    color: #1B2179;
    padding: 0.25rem 0;
}

.horaire-row .jour {
    min-width: 120px; 
    color: #1B2179;
}
 
.horaire-row .heure {
    color: #1B2179;
    font-weight: 500;
}
 
.horaire-row.ferme .heure {
    color: #1B2179;
}
 
        /* ══ CÔTÉ DROIT – Carte ══ */
.contact-map {
    position: relative;
    background: #1a1a2e;
    overflow: hidden;
}
 
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: saturate(0.85) contrast(1.05);
    transition: filter 0.4s;
}
 
.contact-map:hover iframe {
    filter: saturate(1) contrast(1);
}
 
        /* ══ Bande basse ══ */
.contact-footer-bar {
    background: #12185A;
    padding: 1.6rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}


/* ── Section Ouverture Pau ── */
.ouverture-section {
    background: linear-gradient(135deg, #1B2179, #12185A);
    padding: 7rem 10%;
    color: white;
}

.ouverture-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.ouverture-label {
    color: #F1BA53;
    font-family: 'Sur-texte', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ouverture-titre {
    font-family: 'Sur-texte', sans-serif;
    font-size: 3rem;
    font-weight: normal;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.ouverture-highlight {
    color: #F1BA53;
}

.ouverture-desc {
    font-family: 'Texte', sans-serif;
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 420px;
}

.ouverture-form-wrap {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(241,186,83,0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.ouverture-form-label {
    display: block;
    font-family: 'Sur-texte', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #F1BA53;
    margin-bottom: 1rem;
}

.notify-input-row {
    display: flex;
    gap: 0.8rem;
}

.notify-input-row input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    color: white;
    font-family: 'Texte', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.notify-input-row input::placeholder {
    color: rgba(255,255,255,0.4);
}

.notify-input-row input:focus {
    border-color: #F1BA53;
}

.notify-input-row button {
    background: #F1BA53;
    color: #1B2179;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.6rem;
    font-family: 'Sur-texte', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}

.notify-input-row button:hover {
    background: white;
    transform: translateY(-1px);
}

.notify-legal {
    font-family: 'Texte', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 1rem;
}

.notify-success {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #F1BA53;
    font-family: 'Sur-texte', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}


        /* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }
    .contact-map {
        height: 380px;
    }
    .contact-info {
        padding: 4rem 2.5rem 3rem;
    }
    .contact-footer-bar {
        padding: 1.4rem 2.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .horaires-grid {
        grid-template-columns: 1fr;
    }
    .contact-titre {
        font-size: 2.2rem;
    }
    .ouverture-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ouverture-titre {
        font-size: 2.2rem;
    }
    .notify-input-row {
        flex-direction: column;
    }
    .notify-input-row button {
        width: 100%;
    }
}







#Avis {
    background-color: #1B2179;
    padding: 7rem 6rem;
    color: #1B2179;
}

.avis-header {
    display: flex;
    flex-wrap: wrap; /* Permet à la barre de recherche de passer à la ligne */
    align-items: center;
    justify-content: space-between; /* Titre à gauche, sous-titre à droite */
    margin-bottom: 4rem;
    padding: 0; /* On gère le padding via la section parente */
}

.avis-subtitle {
    flex-basis: 100%; /* Prend toute la largeur en haut */
    color: #F1BA53;
    font-family: 'Sur-texte', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.avis-titre {
    font-family: 'Sur-texte', sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    color: #e8e5dc;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.rating{
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
    background-color: #1B2179;
}

.rating-card {
    background-color: #F9F7F2; 
    padding: 3rem;
    border-radius: 40px; 
    display: flex;
    align-items: center;
    gap: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 1300px;
    width: 100%;
}

/* Partie Gauche */
.rating-left {
    text-align: center;
    color: #1B2179;
}

.rating-score {
    font-family: 'Avis', serif;
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stars-row {
    color: #F1BA53;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-count {
    font-family: 'Texte', sans-serif;
    color: #949494;
    font-size: 0.9rem;
}

/* Partie Droite */
.rating-right {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.star-label {
    font-family: 'Texte', sans-serif;
    color: #1B2179;
    font-size: 0.8rem;
    width: 25px;
}

.progress-bar {
    background-color: #E0E0E0; /* Couleur de la barre vide */
    height: 8px;
    flex-grow: 1;
    border-radius: 10px;
    overflow: hidden;
}

.fill {
    background-color: #F1BA53; /* Couleur dorée */
    height: 100%;
    border-radius: 10px;
}

.avis-grid{
    column-count: 4;
    column-gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 50px auto;
    
}

.avis-card{
    background: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 2rem;
    display: block; 
    width: 100%;
    break-inside: avoid-column; /* Empêche la carte de se couper entre deux colonnes */
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.avis-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(27, 33, 121, 0.12);
}

.avis-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avis-card-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.avis-card-header .avis-user-name {
    font-family: 'Texte', sans-serif;
    color: #1B2179;
    font-size: 0.9rem;
    font-weight: bold;
}
.avis-card-header .avis-date {
    font-family: 'Texte', sans-serif;
    color: #949494;
    font-size: 0.8rem;
}

.avis-card-header .stars-row {
    color: #F1BA53;
    font-size: 1rem;
}
.avis-card-body {
    font-family: 'Texte', sans-serif;
    color: #1B2179;
    font-size: 0.9rem;
    line-height: 1.4;
}

.avis-footer {
    margin-top: 4rem;
    text-align: center;
}

.avis-footer-title {
    font-family: 'Sur-texte', sans-serif;
    font-size: 3rem;
    font-weight: normal;
    color: white;
    line-height: 1.15;
    margin-bottom: 3rem;
}

.avis-highlight {
    color: #F1BA53;
}

.avis-button {
    text-decoration: none;
    background: #F1BA53;
    color: #1B2179;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.6rem;
    font-family: 'Sur-texte', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}

.avis-button:hover {
    background: white;
    transform: translateY(-1px);
}
/* ── Responsive ── */

@media (max-width: 1100px) {
    #Avis {
        padding: 5rem 4rem;
    }

    .avis-grid {
        column-count: 3;
    }

    .rating-card {
        gap: 2.5rem;
        padding: 2.5rem;
    }

    .rating-score {
        font-size: 5rem;
    }
}


@media (max-width: 900px) {
    #Avis {
        padding: 4rem 3rem;
    }

    .avis-titre {
        font-size: 2.5rem;
    }

    .avis-grid {
        column-count: 2;
    }

    .rating-card {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        border-radius: 24px;
        align-items: stretch;
    }

    .rating-left {
        display: flex;
        align-items: center;
        gap: 2rem;
        text-align: left;
    }

    .rating-score {
        font-size: 5rem;
    }

    .rating {
        padding: 3rem 1.5rem;
    }
}


@media (max-width: 600px) {
    #Avis {
        padding: 3rem 1.5rem;
    }

    .avis-header {
        margin-bottom: 2.5rem;
    }

    .avis-titre {
        font-size: 2rem;
    }

    .avis-subtitle {
        font-size: 0.75rem;
    }

    .avis-grid {
        column-count: 1;
        margin: 30px auto;
    }

    .rating {
        padding: 2rem 1rem;
    }

    .rating-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        border-radius: 20px;
    }

    .rating-left {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        text-align: left;
    }

    .rating-score {
        font-size: 4rem;
    }

    .stars-row {
        font-size: 1.2rem;
    }

    .rating-count {
        font-size: 0.8rem;
    }

    .avis-card {
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 1.2rem;
    }

    .avis-card-header img {
        width: 42px;
        height: 42px;
    }

    .avis-card-header .avis-user-name {
        font-size: 0.85rem;
    }

    .avis-card-header .avis-date {
        font-size: 0.75rem;
    }

    .avis-card-body {
        font-size: 0.85rem;
    }
}


@media (max-width: 390px) {
    #Avis {
        padding: 2.5rem 1rem;
    }

    .avis-titre {
        font-size: 1.7rem;
    }

    .rating-card {
        padding: 1.2rem;
        border-radius: 16px;
        gap: 1.2rem;
    }

    .rating-left {
        gap: 1rem;
    }

    .rating-score {
        font-size: 3.5rem;
    }

    .stars-row {
        font-size: 1rem;
    }

    .rating-count {
        font-size: 0.75rem;
    }

    .avis-card {
        padding: 14px;
        margin-bottom: 1rem;
    }

    .avis-card-header img {
        width: 36px;
        height: 36px;
    }

    .avis-card-header .avis-user-name {
        font-size: 0.8rem;
    }

    .avis-card-body {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .bar-item {
        gap: 0.6rem;
    }
}

@media (max-width: 770px) {

    .avis-footer-title {
        font-size: 2rem;
    }
}