/* ==================================================
   SALON DES VINS
   Feuille de style principale
================================================== */

:root {
    --salon-primary: #472c3f;
    --salon-primary-dark: #321629;
    --salon-primary-light: #68465e;
    --salon-gold: #c7a66a;
    --salon-bg: #f7f5f3;
    --salon-text: #332d31;
    --salon-muted: #6f686c;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--salon-bg);
    color: var(--salon-text);
    font-family: Arial, Helvetica, sans-serif;
}

/* ==================================================
   NAVBAR SALON
================================================== */

.salon-navbar {
    min-height: 82px;

    padding: 0;

    background: rgba(50, 22, 41, .98);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    box-shadow: 0 4px 20px rgba(0, 0, 0, .10);
}


/* ==================================================
   CONTAINER
================================================== */

.salon-navbar .container {
    min-height: 82px;
}


/* ==================================================
   LOGO
================================================== */

.salon-navbar-brand {
    display: flex;
    align-items: center;

    margin-right: 3rem;
    padding: 0;
}


.salon-navbar-logo {
    display: block;

    width: auto;
    height: 62px;

    object-fit: contain;
}


/* ==================================================
   MENU
================================================== */

.salon-navbar-menu {
    gap: .35rem;
}


/* ==================================================
   LIENS
================================================== */

.salon-navbar .nav-link {
    position: relative;

    display: flex;
    align-items: center;
    gap: .55rem;

    min-height: 82px;

    padding: 0 .9rem !important;

    color: rgba(255, 255, 255, .90);

    font-size: .96rem;
    font-weight: 500;

    transition:
        color .2s ease,
        background-color .2s ease;
}


/* Icônes */

.salon-navbar .nav-link i {
    color: rgba(255, 255, 255, .90);

    font-size: 1rem;

    transition: color .2s ease;
}


/* ==================================================
   SURVOL
================================================== */

.salon-navbar .nav-link:hover,
.salon-navbar .nav-link:focus {
    color: #fff;
}


.salon-navbar .nav-link:hover i,
.salon-navbar .nav-link:focus i {
    color: var(--salon-gold);
}


/* ==================================================
   LIEN ACTIF
================================================== */

.salon-navbar .nav-link.active {
    color: #fff;
}


/* Icône jaune */

.salon-navbar .nav-link.active i {
    color: var(--salon-gold);
}


/* Soulignement jaune */

.salon-navbar .nav-link.active::after {
    content: "";

    position: absolute;

    left: .9rem;
    right: .9rem;
    bottom: 0;

    height: 3px;

    border-radius: 3px 3px 0 0;

    background: var(--salon-gold);
}


/* ==================================================
   INVITATION
================================================== */

.salon-navbar-invitation {
    margin-left: 1.5rem;
}


.salon-navbar-invitation-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;

    min-height: 48px;

    padding: .75rem 1.25rem;

    border-radius: 12px;

    color: #2d1724;
    text-decoration: none;

    background: linear-gradient(
        135deg,
        #f6ce55,
        #ffb92e
    );

    font-size: .95rem;
    font-weight: 700;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .18);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.salon-navbar-invitation-button i {
    font-size: 1.15rem;

    transform: rotate(-12deg);
}


.salon-navbar-invitation-button:hover {
    color: #2d1724;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}


/* ==================================================
   TOGGLER
================================================== */

.salon-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, .25);
}


.salon-navbar .navbar-toggler:focus {
    box-shadow: none;
}


/* ==================================================
   TABLETTE / MOBILE
================================================== */

@media (max-width: 1199.98px) {

    .salon-navbar-brand {
        margin-right: 1rem;
    }

    .salon-navbar-logo {
        height: 55px;
    }

    .salon-navbar .nav-link {
        padding-left: .6rem !important;
        padding-right: .6rem !important;

        font-size: .9rem;
    }

    .salon-navbar-invitation {
        margin-left: .5rem;
    }

}


/* ==================================================
   MENU MOBILE
================================================== */

@media (max-width: 991.98px) {

    .salon-navbar {
        padding: .65rem 0;
    }

    .salon-navbar .container {
        min-height: auto;
    }

    .salon-navbar-logo {
        height: 52px;
    }

    .salon-navbar .navbar-collapse {
        padding-top: 1rem;
        padding-bottom: .5rem;
    }

    .salon-navbar-menu {
        gap: 0;
    }

    .salon-navbar .nav-link {
        min-height: auto;

        padding: .85rem .5rem !important;

        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }


    /* Plus de soulignement desktop */

    .salon-navbar .nav-link.active::after {
        display: none;
    }


    /* Indicateur actif à gauche */

    .salon-navbar .nav-link.active {
        padding-left: 1rem !important;

        border-left: 3px solid var(--salon-gold);

        background: rgba(255, 255, 255, .04);
    }


    /* Invitation */

    .salon-navbar-invitation {
        margin: 1rem 0 0;
    }

    .salon-navbar-invitation-button {
        width: 100%;
    }

}
/* ==================================================
   HERO SALON PREMIUM
================================================== */

.hero-salon-premium {
    position: relative;
    overflow: hidden;

    padding: 5rem 0 2.5rem;

    color: #fff;

    background:
        #321629
        url("../images/hero/hero-salon.jpg")
        center right / cover
        no-repeat;
}


/* ==================================================
   VOILE BORDEAUX
================================================== */

.hero-salon-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(42, 13, 32, .98) 0%,
            rgba(50, 22, 41, .94) 35%,
            rgba(50, 22, 41, .72) 68%,
            rgba(50, 22, 41, .35) 100%
        );
}


/* Le contenu reste au-dessus */

.hero-salon-premium .container {
    z-index: 2;
}


/* ==================================================
   PARTIE PRINCIPALE
================================================== */

.hero-salon-main {
    min-height: 390px;
}


/* ==================================================
   LOGO
================================================== */

.hero-salon-logo-large {
    display: block;

    width: 100%;
    max-width: 390px;
    height: auto;

    margin: 0 auto;
}


/* ==================================================
   CONTENU
================================================== */

.hero-salon-content {
    max-width: 850px;
}


/* ==================================================
   TITRE
================================================== */

.hero-salon-premium .hero-salon-title {
    margin: 0;

    color: #fff;

    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.04em;

    text-shadow: 0 3px 15px rgba(0, 0, 0, .18);
}


/* Trait doré */

.hero-title-line {
    width: 125px;
    height: 4px;

    margin: 2rem 0;

    border-radius: 10px;

    background: var(--salon-gold);
}


/* ==================================================
   MESSAGE
================================================== */

.hero-salon-premium .hero-salon-message {
    max-width: 760px;

    color: rgba(255, 255, 255, .95);

    font-size: clamp(1.3rem, 2vw, 1.75rem);
    line-height: 1.55;
}


/* ==================================================
   BANDEAU BAS
================================================== */

.hero-actions {
    display: grid;

    grid-template-columns:
        minmax(330px, 1.25fr)
        1px
        minmax(300px, 1fr)
        1px
        minmax(300px, 1fr);

    align-items: center;

    margin-top: 2rem;
    padding: 1.5rem 1.7rem;

    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 22px;

    background: rgba(64, 22, 46, .72);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, .22);

    backdrop-filter: blur(8px);
}


/* ==================================================
   ÉLÉMENTS DU BANDEAU
================================================== */

.hero-action {
    display: flex;
    align-items: center;
}


/* Séparateurs */

.hero-action-separator {
    width: 1px;
    height: 90px;

    background: var(--salon-gold);

    opacity: .8;
}


/* ==================================================
   INVITATION
================================================== */

.hero-action-invitation {
    padding-right: 1.7rem;
}


.hero-invitation-button {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 1.25rem;

    padding: 1.25rem 1.5rem;

    border-radius: 18px;

    color: #24151d;
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #f6ca53,
            #ffb927
        );

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .22);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.hero-invitation-button:hover {
    color: #24151d;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, .3);
}


.hero-invitation-icon {
    font-size: 2rem;

    transform: rotate(-12deg);
}


.hero-invitation-text {
    flex: 1;

    line-height: 1.15;
}


.hero-invitation-text strong {
    display: block;

    font-size: 1.25rem;
}


.hero-invitation-arrow {
    font-size: 1.25rem;
}


/* ==================================================
   COMPTEUR
================================================== */

.hero-action-counter {
    justify-content: center;

    gap: 1.25rem;

    padding: 0 1.7rem;
}


.hero-counter-icon {
    color: var(--salon-gold);

    font-size: 3.2rem;
}


.hero-counter-label {
    display: block;

    margin-bottom: .2rem;

    color: #fff;

    font-size: 1rem;
}


.hero-counter-number {
    display: block;

    color: var(--salon-gold);

    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .04em;
}


/* ==================================================
   QR CODE
================================================== */

.hero-action-qr {
    justify-content: center;

    gap: 1.2rem;

    padding-left: 1.7rem;
}


.hero-qr-code {
    width: 100px;
    height: 100px;

    padding: 5px;

    border-radius: 9px;

    background: #fff;

    object-fit: contain;
}


.hero-qr-content {
    color: #fff;
}


.hero-qr-title {
    display: flex;
    align-items: center;

    gap: .6rem;

    margin-bottom: .4rem;

    font-size: 1.05rem;
}


.hero-qr-title i {
    font-size: 1.35rem;
}


.hero-qr-content > span {
    color: rgba(255, 255, 255, .72);

    font-size: .85rem;
    line-height: 1.4;
}


/* ==================================================
   TABLETTE
================================================== */

@media (max-width: 1199.98px) {

    .hero-actions {
        grid-template-columns: 1fr 1px 1fr;
    }

    .hero-action-qr {
        grid-column: 1 / -1;

        justify-content: center;

        margin-top: 1.5rem;
        padding: 1.5rem 0 0;

        border-top: 1px solid rgba(255, 255, 255, .15);
    }

    .hero-actions .hero-action-separator:last-of-type {
        display: none;
    }

}


/* ==================================================
   MOBILE / TABLETTE
================================================== */

@media (max-width: 991.98px) {

    .hero-salon-premium {
        padding-top: 3rem;

        background-position: 70% center;
    }

    .hero-salon-overlay {
        background: rgba(42, 13, 32, .88);
    }

    .hero-salon-main {
        min-height: auto;

        text-align: center;
    }

    .hero-salon-logo-large {
        max-width: 280px;
    }

    .hero-salon-content {
        margin: 0 auto;
    }

    .hero-title-line {
        margin-left: auto;
        margin-right: auto;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767.98px) {

    .hero-actions {
        display: flex;
        flex-direction: column;

        gap: 1rem;

        padding: 1rem;
    }

    .hero-action {
        width: 100%;
    }

    .hero-action-separator {
        width: 100%;
        height: 1px;
    }

    .hero-action-invitation,
    .hero-action-counter,
    .hero-action-qr {
        justify-content: center;

        padding: .75rem 0;
    }

    .hero-action-counter {
        text-align: left;
    }

    .hero-action-qr {
        margin: 0;

        border: 0;
    }

}


/* ==================================================
   PETIT MOBILE
================================================== */

@media (max-width: 575.98px) {

    .hero-salon-premium .hero-salon-title {
        font-size: 2.5rem;
    }

    .hero-salon-premium .hero-salon-message {
        font-size: 1.1rem;
    }

    .hero-invitation-text strong {
        font-size: 1rem;
    }

    .hero-counter-number {
        font-size: 2rem;
    }

    .hero-qr-code {
        width: 80px;
        height: 80px;
    }

}

/* ==================================================
   TITRES
================================================== */

.section-salon {
    padding: 5rem 0;
}

.section-salon-white {
    background: #fff;
}

.section-title {
    margin-bottom: 2.5rem;
}

.section-title h2 {
    color: var(--salon-primary);
    font-weight: 700;
}

.section-title-line {
    width: 60px;
    height: 3px;
    margin-top: 12px;
    background: var(--salon-gold);
}


/* ==================================================
   CAROUSEL
================================================== */

.salon-carousel {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.salon-carousel .carousel-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.salon-carousel .carousel-caption {
    left: 0;
    right: 0;
    bottom: 0;
    text-align: left;
    padding: 3rem 2rem 1.5rem;
    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, .75)
        );
}


/* ==================================================
   MESSAGE
================================================== */

.welcome-card {
    border: 0;
    border-left: 5px solid var(--salon-gold);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .07);
}


/* ==================================================
   EXPOSANTS
================================================== */

.exposant-card {
    height: 100%;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
}

.exposant-card-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border-radius: 50%;
    background: rgba(71, 44, 63, .1);
    color: var(--salon-primary);
    font-size: 1.4rem;
}

.salon-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.salon-list li + li {
    border-top: 1px solid #eee;
}

.salon-list-button {
    width: 100%;
    padding: .8rem 0;
    border: 0;
    background: transparent;
    text-align: left;
    color: var(--salon-text);
    transition: .2s ease;
}

.salon-list-button:hover {
    padding-left: .4rem;
    color: var(--salon-primary);
}


/* ==================================================
   INFORMATIONS
================================================== */

.info-card {
    height: 100%;
    padding: 2rem;
    border: 0;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.info-icon {
    color: var(--salon-primary);
    font-size: 2rem;
}


/* ==================================================
   BOUTONS
================================================== */

.btn-salon {
    background: var(--salon-primary);
    border-color: var(--salon-primary);
    color: #fff;
}

.btn-salon:hover {
    background: var(--salon-primary-dark);
    border-color: var(--salon-primary-dark);
    color: #fff;
}

.btn-outline-salon {
    color: var(--salon-primary);
    border-color: var(--salon-primary);
}

.btn-outline-salon:hover {
    color: #fff;
    background: var(--salon-primary);
}


/* ==================================================
   FOOTER
================================================== */

.footer-salon {
    padding: 3.5rem 0 1.5rem;
    background: var(--salon-primary-dark);
    color: rgba(255, 255, 255, .8);
}

.footer-salon h5,
.footer-salon h6 {
    color: #fff;
}

.footer-salon a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
}

.footer-salon a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: .75rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 767.98px) {

    .hero-content {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .section-salon {
        padding: 3.5rem 0;
    }

    .salon-carousel .carousel-item img {
        height: 300px;
    }

}
/* ==================================================
   MODAL EXPOSANTS
================================================== */

.modal-salon {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
}

.modal-salon .modal-header {
    padding: 1.25rem 1.5rem;
    border: 0;
    background: var(--salon-primary-dark);
    color: #fff;
}

.modal-title-small {
    margin-bottom: .2rem;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .12rem;
    color: rgba(255, 255, 255, .6);
}

.modal-salon .modal-body {
    padding: 1.5rem;
    background: #f7f5f3;
}


/* Chargement */

.modal-loading {
    padding: 5rem 1rem;
    text-align: center;
    color: var(--salon-muted);
}

.modal-loading .spinner-border {
    color: var(--salon-primary);
}


/* Appellation / région */

.modal-appellation-header {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 2rem;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--salon-gold);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
}

.modal-appellation-header strong {
    color: var(--salon-primary);
}


/* Liste */

.vignerons-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}


/* Carte vigneron */

.vigneron-card {
    padding: 1.5rem;
    border-left: 4px solid var(--salon-primary);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
}

.vigneron-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.vigneron-name {
    margin: 0 0 .3rem;
    color: var(--salon-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.vigneron-appellation {
    font-size: .85rem;
    color: var(--salon-muted);
}


/* Coordonnées */

.vigneron-details {
    display: grid;
    gap: .65rem;
}

.vigneron-detail {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.vigneron-detail-icon {
    flex: 0 0 24px;
    color: var(--salon-primary);
    text-align: center;
}

.vigneron-detail a {
    color: var(--salon-primary);
    text-decoration: none;
}

.vigneron-detail a:hover {
    text-decoration: underline;
}


/* Vins */

.vigneron-wines {
    margin-top: 1.25rem;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--salon-gold);
    background: #f8f7f5;
}

.vigneron-wines-title {
    margin-bottom: .5rem;
    color: var(--salon-primary);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05rem;
}

.vigneron-wines-content {
    line-height: 1.6;
}


/* Mobile */

@media (max-width: 767.98px) {

    .modal-salon .modal-body {
        padding: 1rem;
    }

    .vigneron-card {
        padding: 1.2rem;
    }

}
/* ==================================================
   IMAGES CARTES EXPOSANTS
================================================== */

.exposant-card {
    overflow: hidden;
    padding: 0;
}

.exposant-card-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.exposant-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.exposant-card:hover .exposant-card-image img {
    transform: scale(1.03);
}

.exposant-card > .exposant-card-icon,
.exposant-card > h3,
.exposant-card > p,
.exposant-card > .salon-list {
    margin-left: 2rem;
    margin-right: 2rem;
}

.exposant-card > .exposant-card-icon {
    margin-top: 2rem;
}

.exposant-card > .salon-list {
    margin-bottom: 2rem;
}
/* ==================================================
   INFORMATIONS PRATIQUES
================================================== */

.info-highlight {
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--salon-gold);
    border-radius: 6px;
    background: #f8f7f5;
    line-height: 1.7;
}

.info-highlight strong {
    color: var(--salon-primary);
}
/* ==================================================
   INFORMATIONS PRATIQUES - BLOC PRINCIPAL
================================================== */

.info-pratique-main {
    padding: 2rem;
    background: #fff;
    border-left: 5px solid var(--salon-gold);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.info-pratique-main-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(71, 44, 63, .1);
    color: var(--salon-primary);
    font-size: 1.5rem;
}

.info-pratique-main h3 {
    color: var(--salon-primary);
    font-weight: 700;
}

.info-pratique-tarif {
    display: inline-block;
    padding: .8rem 1.2rem;
    background: #f8f7f5;
    border-left: 3px solid var(--salon-gold);
    border-radius: 6px;
    color: var(--salon-primary);
}


/* ==================================================
   STATIONNEMENT
================================================== */

.parking-card {
    overflow: hidden;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.parking-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--salon-primary);
    color: #fff;
}

.parking-header .text-muted {
    color: rgba(255, 255, 255, .7) !important;
}

.parking-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    font-size: 1.6rem;
}

.parking-content {
    padding: 2rem;
}

.parking-title {
    color: var(--salon-primary);
    font-weight: 700;
}

.parking-content .lead {
    font-size: 1.1rem;
}


/* Arrêt minute */

.parking-minute {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
    padding: 1.25rem;
    border-left: 4px solid var(--salon-gold);
    background: #f8f7f5;
    border-radius: 8px;
}

.parking-minute-icon {
    flex: 0 0 35px;
    color: var(--salon-primary);
    font-size: 1.3rem;
    text-align: center;
}

.parking-minute h5 {
    color: var(--salon-primary);
    font-weight: 700;
}


/* Google Maps */

.parking-map {
    width: 100%;
    min-height: 450px;
    background: #eee;
}

.parking-map iframe {
    display: block;
    width: 100%;
    height: 450px;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 575.98px) {

    .info-pratique-main {
        padding: 1.5rem;
    }

    .info-pratique-tarif {
        display: block;
    }

    .info-pratique-tarif .mx-2 {
        display: none;
    }

    .info-pratique-tarif strong {
        display: block;
    }

    .parking-header,
    .parking-content {
        padding: 1.25rem;
    }

    .parking-minute {
        flex-direction: column;
    }

    .parking-map,
    .parking-map iframe {
        height: 350px;
        min-height: 350px;
    }
}
/* ==================================================
   PRÉSENTATION DU SALON
================================================== */

.salon-presentation-card {
    overflow: hidden;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
}

.salon-presentation-image {
    width: 100%;
    height: 330px;
    overflow: hidden;
}

.salon-presentation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-presentation-content {
    padding: 1.75rem 2rem 2rem;
    line-height: 1.65;
}


/* Citations */

.salon-quote {
    margin: 1.5rem 0 0;
    padding: 1.25rem 0 0;
    border-top: 1px solid #e5e1e3;
}

.salon-quote p {
    margin-bottom: .5rem;
    font-style: italic;
}

.salon-quote footer {
    text-align: right;
    color: var(--salon-primary);
    font-weight: 600;
    font-style: italic;
}


/* Mobile */

@media (max-width: 767.98px) {

    .salon-presentation-image {
        height: 260px;
    }

    .salon-presentation-content {
        padding: 1.5rem;
    }

}
/* ==================================================
   DEVENIR EXPOSANT
================================================== */

.devenir-exposant-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
}

.devenir-exposant-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(71, 44, 63, .1);
    color: var(--salon-primary);
    font-size: 1.3rem;
}

.devenir-exposant-content {
    flex: 1;
}

.devenir-exposant-content h3 {
    margin: 0 0 .25rem;
    color: var(--salon-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.devenir-exposant-content p {
    margin: 0;
    color: var(--salon-muted);
    font-size: .9rem;
}

.devenir-exposant-card .btn {
    white-space: nowrap;
}

@media (max-width: 575.98px) {

    .devenir-exposant-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .devenir-exposant-card .btn {
        width: 100%;
    }
}
/* ==================================================
   MODAL DEVENIR EXPOSANT
================================================== */

.devenir-exposant-modal-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: rgba(71, 44, 63, .1);
    color: var(--salon-primary);
    font-size: 1.6rem;
}

.devenir-exposant-modal h3 {
    color: var(--salon-primary);
    font-weight: 700;
}

.devenir-exposant-modal-title {
    color: var(--salon-primary);
    font-weight: 700;
}


/* Contact */

.devenir-exposant-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.devenir-exposant-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid #e6e1e4;
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.devenir-exposant-contact-item:hover {
    color: inherit;
    border-color: var(--salon-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .06);
}

.devenir-exposant-contact-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(71, 44, 63, .1);
    color: var(--salon-primary);
}

.devenir-exposant-contact-item small,
.devenir-exposant-contact-item strong {
    display: block;
}

.devenir-exposant-contact-item small {
    margin-bottom: .15rem;
    color: var(--salon-muted);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .04rem;
}

.devenir-exposant-contact-item strong {
    color: var(--salon-primary);
}


/* Mobile */

@media (max-width: 767.98px) {

    .devenir-exposant-contact {
        grid-template-columns: 1fr;
    }

}/* ==================================================
   CARROUSEL ACCUEIL
================================================== */

.home-carousel {
    width: 100%;
    background: var(--salon-primary-dark);
}

#carouselAccueil {
    width: 100%;
    background: var(--salon-primary-dark);
}

#carouselAccueil .carousel-item {
    height: 600px;
    background: var(--salon-primary-dark);
}

#carouselAccueil .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}


/* Navigation */

#carouselAccueil .carousel-control-prev,
#carouselAccueil .carousel-control-next {
    width: 8%;
}


/* Indicateurs */

#carouselAccueil .carousel-indicators {
    z-index: 3;
}

#carouselAccueil .carousel-indicators button {
    width: 30px;
    height: 3px;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {

    #carouselAccueil .carousel-item {
        height: 480px;
    }

}

@media (max-width: 767.98px) {

    #carouselAccueil .carousel-item {
        height: 360px;
    }

}

@media (max-width: 575.98px) {

    #carouselAccueil .carousel-item {
        height: 280px;
    }

}
/* ==================================================
   HERO SALON
================================================== */

.hero-salon {
    position: relative;
    overflow: hidden;

    padding: 4rem 0 2.5rem;

    color: #fff;

    background:
        var(--salon-primary-dark)
        url("../images/hero/hero-salon.jpg")
        center center / cover
        no-repeat;
}


/* ==================================================
   VOILE BORDEAUX
================================================== */

.hero-salon-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;

    background: linear-gradient(
        90deg,
        rgba(45, 15, 35, .94) 0%,
        rgba(50, 22, 41, .88) 35%,
        rgba(50, 22, 41, .62) 65%,
        rgba(50, 22, 41, .20) 100%
    );
}


/* Contenu au-dessus de la photo */

.hero-salon .container {
    position: relative;
    z-index: 1;
}


/* ==================================================
   PARTIE PRINCIPALE
================================================== */

.hero-salon-main {
    min-height: 350px;
}


/* ==================================================
   LOGO
================================================== */

.hero-salon-logo {
    display: block;

    width: 100%;
    max-width: 420px;
    height: auto;

    margin: 0 auto;
}


/* ==================================================
   TITRE
================================================== */

.hero-salon-title {
    margin: 0;

    color: #fff;

    font-size: clamp(2.8rem, 4.3vw, 4.6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.04em;

    text-shadow: 0 3px 15px rgba(0, 0, 0, .25);
}


/* ==================================================
   TRAIT DORÉ
================================================== */

.hero-title-line {
    width: 125px;
    height: 4px;

    margin: 1.75rem 0;

    border-radius: 10px;

    background: var(--salon-gold);
}


/* ==================================================
   MESSAGE
================================================== */

.hero-salon-message {
    max-width: 760px;

    color: rgba(255, 255, 255, .95);

    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.55;

    text-shadow: 0 2px 8px rgba(0, 0, 0, .20);
}


/* IMPORTANT :
   plus de ::before ici.
   Le trait est maintenant .hero-title-line
*/


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {

    .hero-salon {
        padding: 3rem 0 2rem;

        background-position: 65% center;
    }

    .hero-salon-overlay {
        background: rgba(45, 15, 35, .82);
    }

    .hero-salon-main {
        min-height: auto;

        text-align: center;
    }

    .hero-salon-logo {
        max-width: 300px;
    }

    .hero-title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-salon-message {
        margin-left: auto;
        margin-right: auto;
    }

}


@media (max-width: 575.98px) {

    .hero-salon {
        padding: 2.5rem 0 1.5rem;
    }

    .hero-salon-logo {
        max-width: 240px;
    }

    .hero-salon-title {
        font-size: 2.5rem;
    }

    .hero-salon-message {
        font-size: 1.1rem;
    }

}
/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {

    .hero-salon {
        padding: 2.5rem 0;
        text-align: center;
    }

    .hero-salon-logo {
        max-width: 190px;
    }

    .hero-salon-title {
        margin-top: .5rem;
    }

    .hero-salon-message {
        margin: 0 auto;
    }

    .hero-salon-message::before {
        margin-left: auto;
        margin-right: auto;
    }

}


@media (max-width: 575.98px) {

    .hero-salon {
        padding: 2rem 0;
    }

    .hero-salon-logo {
        max-width: 160px;
    }

    .hero-salon-title {
        font-size: 2.3rem;
    }

    .hero-salon-message {
        font-size: 1.1rem;
    }

}
/* ==================================================
   GALERIE - HEADER
================================================== */

.gallery-hero {
    padding: 3rem 0;
    background: var(--salon-primary-dark);
    color: #fff;
}

.gallery-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.gallery-hero-small {
    display: block;
    margin-bottom: .5rem;
    color: var(--salon-gold);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12rem;
}

.gallery-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
}

.gallery-hero p {
    margin: .5rem 0 0;
    color: rgba(255, 255, 255, .75);
    font-size: 1.1rem;
}

.gallery-count {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
}

.gallery-count i {
    color: var(--salon-gold);
    font-size: 1.3rem;
}

.gallery-count strong {
    font-size: 1.2rem;
}


/* ==================================================
   TOOLBAR
================================================== */

.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}


/* ==================================================
   GRILLE
================================================== */

.gallery-grid {
    columns: 3;
    column-gap: 1.5rem;
}

.gallery-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 1.5rem;
    overflow: hidden;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 7px 25px rgba(0, 0, 0, .07);
    break-inside: avoid;
}


/* ==================================================
   PHOTO
================================================== */

.gallery-photo-button {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #eee;
    cursor: pointer;
}

.gallery-photo-button img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .4s ease;
}

.gallery-photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(50, 22, 41, .45);
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transition: opacity .3s ease;
}

.gallery-photo-button:hover img {
    transform: scale(1.025);
}

.gallery-photo-button:hover .gallery-photo-overlay {
    opacity: 1;
}


/* ==================================================
   CARTE
================================================== */

.gallery-card-body {
    padding: 1.3rem;
}

.gallery-card-body h3 {
    margin: 0 0 .8rem;
    color: var(--salon-primary);
    font-size: 1.05rem;
    font-weight: 700;
}

.gallery-address {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin-bottom: 1rem;
    color: var(--salon-muted);
    font-size: .9rem;
}

.gallery-address i {
    margin-top: .2rem;
    color: var(--salon-primary);
}

.gallery-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}


/* ==================================================
   LIGHTBOX
================================================== */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem 6rem;
    background: rgba(20, 10, 17, .96);
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-content {
    width: min(1200px, 100%);
    max-height: calc(100vh - 6rem);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 12rem);
    width: auto;
    height: auto;
    object-fit: contain;
}

.gallery-lightbox-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1rem;
    color: #fff;
}

.gallery-lightbox-info h3 {
    margin: 0 0 .25rem;
    font-size: 1.1rem;
}

#galleryLightboxAddress {
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
}

.gallery-lightbox-counter {
    white-space: nowrap;
    color: rgba(255, 255, 255, .65);
}


/* Boutons */

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next,
.gallery-lightbox-play {
    position: absolute;
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    transition: background .2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover,
.gallery-lightbox-play:hover {
    background: rgba(255, 255, 255, .2);
}

.gallery-lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.4rem;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    top: 50%;
    width: 52px;
    height: 70px;
    transform: translateY(-50%);
    border-radius: 8px;
}

.gallery-lightbox-prev {
    left: 1.5rem;
}

.gallery-lightbox-next {
    right: 1.5rem;
}

.gallery-lightbox-play {
    left: 50%;
    bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1rem;
    border-radius: 8px;
    transform: translateX(-50%);
}


/* ==================================================
   GALERIE VIDE
================================================== */

.gallery-empty {
    padding: 5rem 1rem;
    text-align: center;
}

.gallery-empty i {
    margin-bottom: 1rem;
    color: var(--salon-primary);
    font-size: 3rem;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {

    .gallery-grid {
        columns: 2;
    }

}

@media (max-width: 767.98px) {

    .gallery-hero-content,
    .gallery-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-lightbox {
        padding: 4rem 1rem 5rem;
    }

    .gallery-lightbox-prev {
        left: .5rem;
    }

    .gallery-lightbox-next {
        right: .5rem;
    }

}

@media (max-width: 575.98px) {

    .gallery-grid {
        columns: 1;
    }

    .gallery-toolbar .btn {
        width: 100%;
    }

}
/* ==================================================
   BIENVENUE AU SALON
================================================== */

.salon-welcome-card {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: 300px 1fr;

    min-height: 250px;

    border: 1px solid rgba(74, 42, 62, .08);
    border-radius: 18px;

    background: #fff;

    box-shadow: 0 12px 35px rgba(50, 22, 41, .07);
}


/* ==================================================
   DATE
================================================== */

.salon-welcome-date {
    display: flex;
    align-items: center;
    gap: 1.25rem;

    padding: 2.5rem;

    color: #fff;

    background: var(--salon-primary-dark);
}


.salon-welcome-date-icon {
    display: flex;
    flex: 0 0 58px;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    color: var(--salon-primary-dark);
    background: var(--salon-gold);

    font-size: 1.45rem;
}


.salon-welcome-date-label {
    display: block;

    margin-bottom: .35rem;

    color: var(--salon-gold);

    font-size: .8rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .12em;
}


.salon-welcome-date-value {
    color: #fff;

    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
}


/* ==================================================
   CONTENU
================================================== */

.salon-welcome-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 2.5rem 3rem;
}


.salon-welcome-content h3 {
    margin: 0;

    color: var(--salon-primary-dark);

    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
}


.salon-welcome-line {
    width: 70px;
    height: 3px;

    margin: 1.25rem 0;

    border-radius: 5px;

    background: var(--salon-gold);
}


.salon-welcome-content p {
    max-width: 850px;

    margin: 0;

    color: #4f4b4d;

    font-size: 1.05rem;
    line-height: 1.7;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 767.98px) {

    .salon-welcome-card {
        grid-template-columns: 1fr;
    }

    .salon-welcome-date {
        padding: 1.75rem;
    }

    .salon-welcome-content {
        padding: 2rem 1.75rem;
    }

}
/* ==================================================
   INFORMATIONS PRATIQUES - CARTE PRINCIPALE
================================================== */

.salon-info-card {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;

    min-height: 250px;

    background: #fff;

    border: 1px solid rgba(74, 42, 62, 0.08);
    border-radius: 18px;

    box-shadow: 0 12px 35px rgba(50, 22, 41, 0.07);
}

/* --------------------------------------------------
   COLONNE GAUCHE
-------------------------------------------------- */

.salon-info-side {
    display: flex;
    align-items: center;
    gap: 1.25rem;

    padding: 2.5rem;

    color: #fff;
    background: var(--salon-primary-dark);
}


.salon-info-side-icon {
    display: flex;
    flex: 0 0 58px;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    color: var(--salon-primary-dark);
    background: var(--salon-gold);

    font-size: 1.45rem;
}


.salon-info-side-label {
    display: block;

    margin-bottom: 0.35rem;

    color: var(--salon-gold);

    font-size: 0.8rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}


.salon-info-side-title {
    color: #fff;

    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.35;
}


/* --------------------------------------------------
   CONTENU
-------------------------------------------------- */

.salon-info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 2.5rem 3rem;
}


.salon-info-content h3 {
    margin: 0;

    color: var(--salon-primary-dark);

    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
}


.salon-info-line {
    width: 70px;
    height: 3px;

    margin: 1.25rem 0;

    border-radius: 5px;

    background: var(--salon-gold);
}


.salon-info-content p {
    color: #4f4b4d;

    font-size: 1rem;
    line-height: 1.65;
}


/* --------------------------------------------------
   TARIF
-------------------------------------------------- */

.salon-info-price {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.75rem;

    margin: 0.25rem 0 1rem;
    padding: 0.8rem 1.25rem;

    color: var(--salon-primary-dark);
    background: #f8f5f2;

    border-left: 3px solid var(--salon-gold);
    border-radius: 6px;
}


/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

@media (max-width: 767.98px) {

    .salon-info-card {
        grid-template-columns: 1fr;
    }

    .salon-info-content {
        padding: 2rem 1.75rem;
    }

    .salon-info-side {
        padding: 1.75rem;
    }
}

  .salon-info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;

    padding: 2.5rem 3rem;
}
    .salon-info-price {
        flex-wrap: wrap;
    }

.salon-info-side-right {

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

}

.salon-info-side-right .salon-info-side-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 58px;

    height: 58px;

    flex: 0 0 58px;

    margin-bottom: 0.75rem;

    border-radius: 50%;

    color: var(--salon-primary-dark);

    background: var(--salon-gold);

    font-size: 1.45rem;

}

.salon-info-side-right .salon-info-side-label {

    display: block;

    margin-bottom: 0.35rem;

    color: var(--salon-gold);

    font-size: 0.8rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.12em;

}

.salon-info-side-right .salon-info-side-title {

    color: #fff;

    font-size: 1.3rem;

    font-weight: 700;

    line-height: 1.35;

}