/* ============================================================
   Domaine du Bommelaers Wall – style.css
   Reproduction fidèle du design visible sur les captures
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; }

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
    background: #fff;
    color: #2d2d2d;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a { color: #b5973a; text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }
p { margin: 0 0 1.2em; }
ul, ol { margin: 0 0 1.2em; padding-left: 2.2em; }
li { margin-bottom: .3em; }
strong { font-weight: 600; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: #111;
    color: #fff;
    font-size: 1.3rem;
    padding: .7rem 0;
    position: relative;
    z-index: 200;
}
.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.top-bar-left span,
.top-bar-left a {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    font-size: 1.3rem;
}
.top-bar-left a:hover { text-decoration: underline; }
.top-bar-left i { font-size: 1.2rem; }
.top-bar-right {
    display: flex;
    gap: .6rem;
}
.top-bar-right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
    transition: opacity .2s;
}
.top-bar-right a:hover { opacity: .85; }
.top-bar-right .fb  { background: #1877f2; }
.top-bar-right .ig  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

/* ============================================================
   HEADER + NAV (sticky)
   ============================================================ */
#site-header {
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo img {
    height: 5.5rem;
    width: auto;
}
.site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.site-logo-text .logo-du   { font-size: 1.2rem; color: #2d2d2d; font-weight: 400; }
.site-logo-text .logo-name { font-size: 2rem; font-weight: 700; color: #2d2d2d; letter-spacing: -.01em; }

nav.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}
nav.main-nav ul li a {
    display: block;
    padding: .6rem 1.3rem;
    font-size: 1.45rem;
    font-weight: 500;
    color: #2d2d2d;
    text-decoration: none;
    transition: color .15s;
    white-space: nowrap;
}
nav.main-nav ul li a:hover,
nav.main-nav ul li.current a {
    color: #b5973a;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid #ddd;
    padding: .5rem .9rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 3px;
    color: #2d2d2d;
}

/* ============================================================
   HERO – image pleine largeur avec texte centré
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 50rem;
    overflow: hidden;
    background: #222;
}
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.25);
}
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.hero-title {
    font-family: 'Great Vibes', 'Pacifico', cursive;
    font-size: 5.5rem;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
    margin: 0 0 2.5rem;
    line-height: 1.2;
}
.hero-btn {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .9rem 2.8rem;
    text-decoration: none;
    transition: background .2s, color .2s;
    background: transparent;
}
.hero-btn:hover {
    background: #fff;
    color: #2d2d2d;
    text-decoration: none;
}

/* ============================================================
   SECTION 3 COLONNES (icônes + texte) – fond sable
   ============================================================ */
.features-section {
    background: #c8a96e;
    padding: 5rem 2rem;
}
.features-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}
.feature-item .feature-icon {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1.2rem;
}
.feature-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
}
.feature-item p {
    font-size: 1.45rem;
    color: rgba(255,255,255,.9);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   CONTENU PRINCIPAL (pages internes et accueil texte)
   ============================================================ */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}
.page-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #8a7d3a;
    margin: 0 0 2rem;
    font-style: italic;
}

/* ============================================================
   SECTION CONTACT + AVIS (fond blanc, 2 colonnes)
   ============================================================ */
.contact-reviews-section {
    background: #fff;
    padding: 5rem 0;
}
.contact-reviews-inner {
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Formulaire */
.contact-block {
	
}
.contact-block .block-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0 0 .4rem;
}
.contact-block .block-subtitle {
    font-size: 1.3rem;
    color: #888;
    margin: 0 0 2rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #f5f5f5;
    border: none;
    border-radius: 3px;
    padding: 1.1rem 1.4rem;
    font-size: 1.5rem;
    font-family: inherit;
    color: #2d2d2d;
    margin-bottom: 1rem;
    outline: none;
    transition: box-shadow .15s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; }
.contact-form input:focus,
.contact-form textarea:focus { box-shadow: 0 0 0 2px #b5973a40; }
.contact-form textarea { height: 12rem; resize: vertical; }
.contact-form .form-hint {
    font-size: 1.25rem;
    color: #aaa;
    margin: -.5rem 0 1rem;
}
.contact-form button {
    background: #2d2d2d;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s;
    border-radius: 3px;
}
.contact-form button:hover { background: #b5973a; }

/* Avis */
.reviews-block {}
.reviews-block .block-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0 0 .3rem;
}
.reviews-block .block-stars {
    color: #f5a623;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.reviews-block .block-stars span { font-size: 1.3rem; color: #888; }

/* Carrousel avis */
.reviews-carousel { position: relative; overflow: hidden; }
.reviews-track {
    display: flex;
    transition: transform .4s ease;
}
.review-card {
    min-width: 100%;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 2rem;
}
.review-card .rc-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .8rem;
}
.review-card .rc-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #ddd;
}
.review-card .rc-name { font-size: 1.5rem; font-weight: 600; color: #2d2d2d; }
.review-card .rc-stars { color: #f5a623; font-size: 1.3rem; }
.review-card .rc-date { font-size: 1.2rem; color: #aaa; margin-bottom: .8rem; }
.review-card .rc-text { font-size: 1.45rem; color: #444; line-height: 1.6; margin: 0; }

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.carousel-btn {
    background: none;
    border: 1px solid #ddd;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, color .2s;
}
.carousel-btn:hover { border-color: #b5973a; color: #b5973a; }
.carousel-dots {
    display: flex;
    gap: .5rem;
}
.carousel-dot {
    width: .8rem;
    height: .8rem;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background .2s;
    border: none;
    padding: 0;
}
.carousel-dot.active { background: #b5973a; }

/* Messages formulaire */
.msg-succes {
    background: #f0faf0;
    border: 1px solid #b2dfb2;
    color: #2e7d32;
    padding: 1rem 1.5rem;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.msg-erreur {
    background: #fdf0f0;
    border: 1px solid #f5c6c6;
    color: #c62828;
    padding: 1rem 1.5rem;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* ============================================================
   GOOGLE MAP pleine largeur
   ============================================================ */
.map-section iframe {
    display: block;
    width: 100%;
    height: 40rem;
    border: none;
}

/* ============================================================
   FOOTER – fond sable
   ============================================================ */
.site-footer {
    background: #c8a96e;
    padding: 5rem 0 2rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.5rem;
}
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
    font-size: 1.4rem;
    color: rgba(255,255,255,.9);
    text-decoration: none;
}
.footer-col ul li a:hover { color: #fff; text-decoration: underline; }
.footer-col p {
    font-size: 1.4rem;
    color: rgba(255,255,255,.9);
    margin-bottom: .5em;
    display: flex;
    align-items: flex-start;
    gap: .7rem;
}
.footer-col p i { margin-top: .2rem; flex-shrink: 0; color: #fff; }
.footer-col p a { color: rgba(255,255,255,.9); }
.footer-col p a:hover { color: #fff; }
.footer-social {
    display: flex;
    gap: .7rem;
    margin-top: 1rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    font-size: 1.4rem;
    color: #fff;
    transition: opacity .2s;
}
.footer-social a:hover { opacity: .85; }
.footer-social .fb { background: #1877f2; }
.footer-social .ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255,255,255,.25);
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255,255,255,.8);
}

/* ============================================================
   PAGES INTERNES – GALERIES ELEMENTOR (grille fixe 3 col)
   ============================================================ */
.e-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin: 3rem 0;
}
.e-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #ddd;
    aspect-ratio: 1 / 1;
}
.e-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.e-gallery-item:hover img { transform: scale(1.05); }
.e-gallery-item .e-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .35s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.e-gallery-item:hover .e-gallery-overlay { background: rgba(0,0,0,.3); }
.e-gallery-overlay i {
    color: #fff;
    font-size: 2.5rem;
    opacity: 0;
    transition: opacity .35s;
}
.e-gallery-item:hover .e-gallery-overlay i { opacity: 1; }

/* Galerie page Photos – 3 colonnes inégales style Masonry */
.photos-gallery {
    column-count: 3;
    column-gap: 5px;
    margin: 3rem 0;
}
.photos-gallery figure {
    break-inside: avoid;
    margin: 0 0 5px;
    cursor: pointer;
    overflow: hidden;
    display: block;
    position: relative;
}
.photos-gallery figure img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .35s ease;
}
.photos-gallery figure:hover img { transform: scale(1.04); }

/* ============================================================
   LIGHTBOX VANILLA
   ============================================================ */
.lb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lb-overlay.open { display: flex; }
.lb-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-overlay img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    display: block;
    border: none;
}
.lb-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    z-index: 10000;
    transition: color .2s;
}
.lb-close:hover { color: #b5973a; }
.lb-prev, .lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: background .2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.3); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-caption {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.8);
    font-size: 1.4rem;
    text-align: center;
    z-index: 10000;
    pointer-events: none;
}

/* ============================================================
   PAGES LÉGALES / CONTENU TEXTE
   ============================================================ */
.legal-content { max-width: 860px; }
.legal-content h2.section-h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #8a7d3a;
    font-style: italic;
    margin: 3rem 0 1rem;
}
.legal-content h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #2d2d2d;
    margin: 2.5rem 0 .8rem;
}
.legal-content h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d2d2d;
    margin: 2rem 0 .6rem;
}
.legal-content p, .legal-content li { font-size: 1.5rem; color: #444; }

/* ============================================================
   FORMULES MENUS (associations/entreprises)
   ============================================================ */
.formule-block {
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    background: #fff;
}
.formule-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
}
.formule-name { font-size: 2rem; font-weight: 700; color: #2d2d2d; margin: 0 0 .3rem; }
.formule-min  { font-size: 1.4rem; color: #888; margin: 0; }
.formule-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #b5973a;
    white-space: nowrap;
}
.formule-price small { display: block; font-size: 1.2rem; font-weight: 400; color: #888; }
.formule-block h4 {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #b5973a;
    margin: 1.5rem 0 .6rem;
}
.formule-block ul { margin: 0 0 0 1.5rem; }
.formule-block ul li { font-size: 1.5rem; color: #444; margin-bottom: .3rem; }

.info-block {
    background: #faf8f3;
    border-left: 3px solid #b5973a;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    font-size: 1.5rem;
    color: #444;
}
.info-block p { margin-bottom: .5em; }
.info-block p:last-child { margin-bottom: 0; }

.tarif-degressif {
    background: #faf8f3;
    border: 1px solid #e8dfc9;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
}
.tarif-degressif h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0 0 1rem;
}
.tarif-degressif ul { margin: 0 0 0 1.5rem; }
.tarif-degressif ul li { font-size: 1.5rem; color: #444; margin-bottom: .3rem; }

/* Price list tarifs salles */
.price-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}
.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.4rem 0;
    border-bottom: 1px dashed #ddd;
}
.price-list li:last-child { border-bottom: none; }
.pl-info .pl-title { font-size: 1.6rem; font-weight: 600; color: #2d2d2d; display: block; }
.pl-info .pl-desc  { font-size: 1.35rem; color: #888; display: block; margin-top: .2rem; }
.pl-price { font-size: 1.6rem; font-weight: 700; color: #b5973a; white-space: nowrap; flex-shrink: 0; }

/* Matériel cards */
.materiel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}
.materiel-card {
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
    background: #fff;
}
.materiel-card img {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    display: block;
}
.materiel-card-body { padding: 1.2rem; }
.materiel-card-title { font-size: 1.4rem; font-weight: 700; color: #2d2d2d; margin: 0 0 .3rem; }
.materiel-card-desc  { font-size: 1.3rem; color: #888; margin: 0 0 .6rem; }
.materiel-card-price { font-size: 1.5rem; font-weight: 700; color: #b5973a; }

/* Note contact (bas de page salles) */
.note-contact {
    background: #2d2d2d;
    color: #fff;
    padding: 2.5rem 3rem;
    margin-top: 4rem;
    font-size: 1.5rem;
    line-height: 1.8;
}
.note-contact p { color: rgba(255,255,255,.9); margin-bottom: .5em; }
.note-contact p:last-child { margin-bottom: 0; }
.note-contact a { color: #e8dfc9; }

/* ============================================================
   "Soyez les prochains !" (page Photos – cursive)
   ============================================================ */
.soyez-text {
    text-align: center;
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: #2d2d2d;
    margin: 4rem 0 5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .materiel-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero { height: 35rem; }
    .hero-title { font-size: 3.5rem; }
    .features-inner { grid-template-columns: 1fr; gap: 2rem; }
    .contact-reviews-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .e-gallery { grid-template-columns: repeat(2, 1fr); }
    .photos-gallery { column-count: 2; }
    .materiel-grid { grid-template-columns: repeat(2, 1fr); }
    .header-inner { flex-wrap: nowrap; justify-content: space-between; }
    nav.main-nav { display: none; width: 100%; }
    nav.main-nav.open { display: block; }
    nav.main-nav ul { flex-direction: column; }
    nav.main-nav ul li a { padding: .9rem 1rem; border-top: 1px solid #f0f0f0; }
    .nav-toggle { display: block; }
    .header-inner { flex-wrap: wrap; }
    .top-bar-left { gap: 1rem; font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .e-gallery { grid-template-columns: 1fr; }
    .photos-gallery { column-count: 1; }
    .materiel-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.8rem; }
}
