:root {
    --pink: #e72485;
    --dark: #1c1c1c;
    --light: #f5f5f5;
    --text: #333;
}

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

body {
    font-family: "ProzaLibre" ;
    background: var(--light);
    color: var(--text);
}

/* Layout */
.container {
    width: 90%;
   /*  max-width: 1200px; */
    margin: auto;
    font-family: "ProzaLibre" ;
}

/* Header */
.header {
    background: white;
    color: white;
    padding: 20px 0;
    font-family: "ProzaLibre" ;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left:10px;
    margin-right:30px;
    
}

.logo {
    font-size: 28px;
    color: var(--pink);
    font-weight: bold;
}

.nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.btn-contact, .btn-decouvrir{
    background: var(--pink);
    padding: 10px 20px;
    color: white;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}

.formcontact-error {
    
    color:var(--pink);
    font-weight:bold;
    margin-bottom:10px;
}

.formcontact-success {
   
    color: var(--pink);
    margin-bottom:10px;
}
/* Hero */
.hero {
    /* background: url("../images/Test_vue_boutique_ext5-zIt8HAn.webp") center/cover no-repeat; */
    height: 600px;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
}

.hero-content {
    color: white;
    padding-top: 150px;
}

.hero h1 {
    font-size: 50px;
}

.hero span {
    color: var(--pink);
}

.cta {
    margin-top: 20px;
    background: var(--pink);
    padding: 15px;
    display: inline-block;
    border-radius: 10px;
    font-family: "ProzaLibre" ;
}

/* Features */
.features {
    background: white;
    color: white;
    padding: 2px 0;
    
}

.hero {
    background: white;    
}

.feature {
    background: white;
    color: var(--dark);
    border-radius: 10px;
    padding-top:25px;
    padding-right:25px;
    border: solid 1px var(--pink);
}
.feature p{
    font-size:13px;
    text-align: center;
  
    
}
.feature strong{
    font-size:22px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}
.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.feature {
    text-align: center;
    margin-top:20px;
}

/* Values */
.values {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
    color : #333;
    font-family: "ProzaLibre" ;
}

.values h2 span {
    color: var(--pink);
}

.cards .card {
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    color : #333;
    
}

/* Brand */
.brand {
    background: #fff;
    color : #333;
    padding-top: 0px;
    padding-bottom: 10px;
    
}


.brand-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ddd7bc;
    border-radius: 10px;

    padding:30px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--pink);
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
}

/* Modal Contact */
.modal-contact-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    font-family: "ProzaLibre", sans-serif;
}

.modal-contact-header {
    background: white;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--pink);
}

.modal-logo {
    width: 500px;
    height: auto;
}

.modal-contact-body {
    background: var(--light);
    padding: 28px 32px;
}

.contact-label {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.form-control.contact-input,
.form-control.contact-input:not(:focus) {
    border: 2px solid var(--pink) !important;
    border-radius: 8px;
    padding: 10px 14px;
    font-family: "ProzaLibre", sans-serif;
    font-size: 14px;
    transition: border-width 0.15s;
    background-color: #ffffff !important;
    color: var(--text) !important;
    box-shadow: none !important;
}

.form-control.contact-input:focus {
    border: 4px solid var(--pink) !important;
    background-color: #ffffff !important;
    color: var(--text) !important;
    box-shadow: none !important;
    outline: none;
}

.btn-envoyer {
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: "ProzaLibre", sans-serif;
    font-size: 16px;
    text-decoration: none;
}

/* Modal Diaporama Produits */
.modal-diaporama-dialog {
    max-width: 860px;
    width: 95vw;
}

.modal-diaporama-content {
    background: var(--dark);
    border: 2px solid var(--pink);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.modal-diaporama-close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 10;
    background: transparent;
    border: none;
    color: var(--pink);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: opacity 0.2s;
}

.modal-diaporama-close:hover {
    opacity: 0.7;
}

.diaporama-img {
    width: 100%;
    height: 75vh;
    max-height: 600px;
    object-fit: contain;
    background: var(--dark);
}

.diaporama-control {
    width: 48px;
    opacity: 1;
}

.diaporama-arrow {
    color: var(--pink);
    font-size: 28px;
    line-height: 1;
    text-shadow: 0 0 6px rgba(0,0,0,0.8);
}

.diaporama-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #666;
    border: none;
    margin: 0 4px;
    opacity: 1;
    transition: background-color 0.3s;
}

.diaporama-indicators button.active {
    background-color: var(--pink);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 20px 0;
}

.footer .highlight {
    color: var(--pink);
}

/* Card title wrapper — transparent sur desktop, actif sur mobile */
.card-title-wrapper {
    display: contents;
}

/* ===================================================
   RESPONSIVE MOBILE (≤ 768 px)
   Aucun changement sur la version desktop.
   =================================================== */
@media (max-width: 768px) {

    /* --- HEADER --- */
    .header-inner {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
        gap: 12px;
    }
    .header-inner .logo {
        width: 100%;
    }
    .header-inner .logo img {
        width: 100% !important;
        height: auto;
    }
    .header-inner > img {
        width: 100%;
    }

    /* --- HERO / CARROUSEL --- */
    .hero {
        height: auto;
    }
    .cta {
        padding: 8px 10px;
    }
    .cta svg {
        height: 2em !important;
        width: 2em !important;
    }
    .dateouverture {
        font-size: 0.8em;
    }

    /* --- FEATURES : 1 colonne --- */
    .grid-3 {
        grid-template-columns: 1fr;
    }

    /* --- CARDS VALUES : disposition spécifique ---
       Chaque card occupe 100 % de largeur (grid-3 → 1 col ci-dessus).
       Intérieur de la card : grille 2 colonnes
         - ligne 1 : icône + titre centré (pleine largeur)
         - ligne 2 : photo (gauche) | texte (droite)
    */
    .cards .card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "title title"
            "photo para";
        gap: 8px;
    }
    .cards .card > div:first-child {
        grid-area: photo;
    }
    .cards .card > .mt-3 {
        display: contents;
    }
    .cards .card > .mt-3 > .card-title-wrapper {
        grid-area: title;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }
    .cards .card > .mt-3 > p {
        grid-area: para;
        font-size: 0.85em;
        margin-top: 0;
    }

    /* --- BRAND : empilement vertical --- */
    .brand-inner {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .brand-inner > .d-flex {
        flex-direction: column;
        width: 100% !important;
        align-items: center;
    }
    .brand-inner > .d-flex > img {
        width: 80% !important;
    }
    .brand-inner > .d-flex > div {
        width: 90% !important;
        margin-left: 0 !important;
        text-align: center;
    }
    .brand-inner > div:last-child > img {
        margin-right: 0 !important;
    }
}

