/* ============================================================
   WOODS Bar & Restaurant — CSS Public
   ============================================================ */
:root {
    --gold:    #c9a227;
    --gold2:   #e8c84a;
    --dark:    #1a0e0a;
    --brown:   #3d2314;
    --cream:   #f4f0e8;
    --light:   #faf8f3;
    --green:   #4a7c59;
    --text:    #2c1810;
    --muted:   #7a6050;
    --r:       8px;
    --shadow:  0 4px 24px rgba(0,0,0,.10);
    --shadowL: 0 8px 40px rgba(0,0,0,.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding: 0; font-family: 'Open Sans', Arial, sans-serif;
       background: var(--light); color: var(--text); line-height: 1.6; }

/* ── HEADER ── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 66px;
    background: rgba(26,14,10,.96); backdrop-filter: blur(8px);
    box-shadow: 0 2px 16px rgba(0,0,0,.35);
    transition: box-shadow .3s;
}
.logo-link { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-text  { color: var(--gold); font-family: 'Playfair Display', Georgia, serif;
               font-size: 22px; letter-spacing: 4px; font-weight: 700; }
.nav-main   { display: flex; gap: 10px; }

/* ── BOUTONS ── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px;
       border-radius: var(--r); font-size: 14px; font-weight: 600; text-decoration: none;
       border: none; cursor: pointer; transition: all .2s; letter-spacing: .4px; }
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(201,162,39,.4); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-hero { padding: 16px 38px; font-size: 17px; border-radius: 50px; font-family: 'Playfair Display', serif; }
.btn-hero-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); border-radius: 50px;
                    padding: 16px 38px; font-size: 17px; font-family: 'Playfair Display', serif; font-weight: 600; }
.btn-hero-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ── HERO ── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    transition: background-image .5s;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(26,14,10,.6) 0%, rgba(26,14,10,.2) 50%, rgba(26,14,10,.85) 100%);
}
.hero-content {
    position: relative; z-index: 2; text-align: center;
    padding: 100px 20px 60px; max-width: 720px;
}
.hero-title {
    margin: 0; color: #fff; font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(52px, 10vw, 96px); letter-spacing: 8px; line-height: 1;
    text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hero-sub { color: rgba(255,255,255,.75); font-size: clamp(13px,2.5vw,17px);
             letter-spacing: 5px; text-transform: uppercase; margin: 12px 0 48px; }
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ── SECTIONS ── */
.section { padding: 80px 5%; }
.section-alt { background: var(--cream); }
.section-title {
    text-align: center; font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px,4vw,42px); color: var(--text); margin: 0 0 8px;
}
.section-sub { text-align: center; color: var(--muted); font-size: 16px; margin: 0 0 50px; }

/* ── CARTE PUBLIQUE ── */
.carte-wrap { max-width: 920px; margin: 0 auto; }
.famille-block { margin-bottom: 52px; }
.famille-header {
    background: var(--dark); color: var(--gold); padding: 14px 24px;
    font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700;
    letter-spacing: 2px; border-radius: var(--r) var(--r) 0 0;
}
.categorie-card { background: #fff; box-shadow: var(--shadow); margin-bottom: 10px; border-radius: var(--r); overflow: hidden; }
.cat-toggle {
    padding: 14px 20px; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    background: var(--cream); font-weight: 700; color: var(--brown); font-size: 15px;
    user-select: none; transition: background .2s;
}
.cat-toggle:hover { background: #ece8de; }
.cat-icon { font-size: 20px; color: var(--gold); transition: transform .25s; }
.cat-open .cat-icon { transform: rotate(45deg); }
.cat-body { display: none; padding: 6px 20px 14px; }
.cat-open .cat-body { display: block; }
.groupe-label { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 1px;
                 text-transform: uppercase; margin: 14px 0 6px; }
.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}
.articles-grid::after {
    content: '';
    position: absolute;
    top: 8px; bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    border-left: 2px dashed rgba(45,90,39,.35);
    pointer-events: none;
}
.article-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 10px 14px; border-bottom: 1px solid #f0ece4; gap: 10px;
}
.article-row:last-child { border: none; }
.articles-grid .article-row:nth-child(odd)  { padding-right: 22px; }
.articles-grid .article-row:nth-child(even) { padding-left: 22px; }
/* Supprimer bordure bas sur les paires de la meme ligne */
.articles-grid .article-row:nth-last-child(1):nth-child(odd),
.articles-grid .article-row:nth-last-child(2) { border-bottom: none; }
.art-name { font-weight: 600; font-size: 14px; color: var(--text); }
.art-desc { font-size: 12px; color: var(--muted); margin-top: 2px; font-style: italic; }
.art-alg  { font-size: 11px; color: #c0392b; margin-top: 3px; }
.art-price {
    white-space: nowrap; font-weight: 700; font-size: 14px;
    color: var(--gold); background: var(--dark); padding: 3px 10px;
    border-radius: 20px; min-width: 60px; text-align: center; flex-shrink: 0;
}
@media(max-width: 600px) {
    .articles-grid { grid-template-columns: 1fr; }
    .articles-grid::after { display: none; }
    .articles-grid .article-row:nth-child(odd)  { padding-right: 14px; }
    .articles-grid .article-row:nth-child(even) { padding-left: 14px; }
    .articles-grid .article-row:nth-last-child(2) { border-bottom: 1px solid #f0ece4; }
}

/* ── RÉSERVATION ── */
.resa-section { background: var(--cream); padding: 80px 5%; }
.resa-wrap { max-width: 700px; margin: 0 auto; }
.resa-card { background: #fff; border-radius: 12px; padding: 44px; box-shadow: var(--shadowL); }

/* Agenda calendrier */
.agenda-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.agenda-nav button {
    background: none; border: 1.5px solid var(--gold); border-radius: 6px;
    color: var(--gold); padding: 6px 16px; cursor: pointer; font-size: 18px; line-height: 1;
    transition: all .15s;
}
.agenda-nav button:hover { background: var(--gold); color: var(--dark); }
.agenda-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--text); font-weight: 600; }

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    background: var(--cream);
    border-radius: 10px;
    padding: 10px 8px 8px;
    margin-bottom: 20px;
}
.agenda-day-head {
    text-align: center; font-size: 11px; font-weight: 700;
    color: var(--muted); padding: 4px 0 8px; text-transform: uppercase; letter-spacing: .5px;
}
.agenda-day {
    text-align: center;
    padding: 10px 2px;
    border-radius: 7px;
    font-size: 14px;
    cursor: pointer;
    transition: all .15s;
    border: 1.5px solid transparent;
    color: var(--text);
    background: #fff;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.agenda-day.empty { background: transparent; cursor: default; border: none; }
.agenda-day:hover:not(.disabled):not(.empty) { background: #fff8e8; border-color: var(--gold); }
.agenda-day.selected { background: var(--gold) !important; color: var(--dark) !important; font-weight: 700; border-color: var(--gold); }
.agenda-day.today { border-color: var(--gold); font-weight: 700; color: var(--dark); }
.agenda-day.disabled { background: transparent; color: #ccc; cursor: not-allowed; border: none; }

/* Créneaux horaires */
.slots-wrap { background: var(--cream); border-radius: 10px; padding: 18px 20px; margin-bottom: 20px; }
.slots-label { font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 10px; letter-spacing: .8px; text-transform: uppercase; }
.slots-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.slots-grid:last-child { margin-bottom: 0; }
.slot-btn {
    padding: 9px 18px; border: 1.5px solid #ddd; border-radius: 22px; background: #fff;
    font-size: 14px; font-weight: 600; color: var(--text); cursor: pointer; transition: all .15s;
    font-family: inherit;
}
.slot-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); background: #fff8e8; }
.slot-btn.selected { background: var(--gold) !important; color: var(--dark) !important; border-color: var(--gold) !important; font-weight: 700; }
.slot-btn:disabled { opacity: .3; cursor: not-allowed; }

.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:560px){ .form-row2 { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control {
    width: 100%; padding: 10px 14px; border: 1.5px solid #ddd; border-radius: var(--r);
    font-size: 14px; font-family: inherit; color: var(--text); background: #fff; transition: border-color .2s;
}
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.15); }
.req { color: #e74c3c; }

/* ── ALERTES ── */
.alert { padding: 14px 20px; border-radius: var(--r); font-size: 14px; margin-bottom: 16px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger  { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffc107; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ── FOOTER ── */
.site-footer {
    background: var(--dark); color: rgba(255,255,255,.65);
    padding: 48px 5%; text-align: center;
}
.footer-logo { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 24px; letter-spacing: 5px; margin-bottom: 12px; }
.footer-info { font-size: 14px; line-height: 1.8; }
.footer-copy { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,.3); }

/* ── RESPONSIVE ── */
@media(max-width:768px) {
    .section { padding: 60px 5%; }
    .hero-btns { gap: 12px; flex-direction: column; align-items: center; }
    .btn-hero, .btn-hero-outline { padding: 14px 28px; font-size: 15px; }
    .resa-card { padding: 28px 20px; }
    .site-header { padding: 0 4%; }
}

/* ── MENUS ── */
.menu-block {
    background-color: #f5ede0;
    background-image:
        repeating-linear-gradient(
            91deg,
            rgba(180,120,60,.07) 0px, rgba(180,120,60,.07) 1px,
            transparent 1px, transparent 42px
        ),
        repeating-linear-gradient(
            177deg,
            rgba(160,100,40,.06) 0px, rgba(160,100,40,.06) 1px,
            transparent 1px, transparent 7px
        ),
        repeating-linear-gradient(
            174deg,
            rgba(200,150,80,.09) 0px, rgba(200,150,80,.09) 2px,
            transparent 2px, transparent 18px
        ),
        repeating-linear-gradient(
            183deg,
            rgba(140,90,30,.05) 0px, rgba(140,90,30,.05) 1px,
            transparent 1px, transparent 28px
        ),
        linear-gradient(160deg, #fdf6ec 0%, #f5e8d0 40%, #f0e0c0 70%, #f7edd8 100%);
    border-radius: 18px;
    margin: 0 auto 52px;
    overflow: visible;
    border: 1px solid rgba(45,90,39,.18);
    position: relative;
    clip-path: none;
    box-shadow:
        0 0 0 1px rgba(45,90,39,.12),
        0 0 18px 4px rgba(45,90,39,.18),
        0 0 48px 12px rgba(45,90,39,.10),
        0 12px 40px rgba(80,40,0,.10),
        inset 0 1px 0 rgba(255,255,255,.7);
}
.menu-block::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, #2d5a27, transparent);
    border-radius: 18px 18px 0 0;
    z-index: 1;
}
.menu-block::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.25) 0%, transparent 30%);
    pointer-events: none;
    border-radius: 18px;
    z-index: 0;
}
.menu-header {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center;
    padding: 40px 40px 20px; gap: 16px;
    position: relative; z-index: 1;
}
.menu-titre {
    font-family: 'Playfair Display', Georgia, serif;
    color: #1e4620;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.15;
    text-shadow: 0 1px 0 rgba(255,255,255,.6);
}
.menu-prix {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    background: #2d5a27;
    padding: 8px 28px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 3px 12px rgba(45,90,39,.25);
}
.menu-commentaire {
    text-align: center;
    padding: 0 40px 28px;
    color: #4a6b48;
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    border-bottom: 1px solid rgba(45,90,39,.15);
    position: relative; z-index: 1;
}
.menu-articles {
    padding: 16px 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative; z-index: 1;
}
.menu-article-row {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 2px;
    padding: 7px 20px;
    border-bottom: 1px solid rgba(45,90,39,.08);
    width: 100%;
    transition: background .15s;
}
.menu-article-row:hover { background: rgba(45,90,39,.05); border-radius: 8px; }
.menu-article-row:last-child { border: none; }
.menu-art-bullet {
    color: #2d5a27; font-size: 10px; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 4px; display: block;
    opacity: .6;
}
.menu-art-name {
    color: #1a3d1c; font-size: 16px; font-weight: 600;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: .5px;
}
.menu-art-desc {
    font-size: 13px; color: #5a7a58;
    font-style: italic; margin-top: 3px; line-height: 1.5;
    max-width: 400px;
}
.menu-art-alg {
    font-size: 11px; color: #8a6a3a;
    margin-top: 4px; letter-spacing: .3px;
}

/* ── CARROUSEL MENUS ── */
.menus-carrousel {
    position: relative;
    max-width: 640px;
    margin: 0 auto 52px;
    padding: 0 54px;
}
.menu-slide {
    animation: fadeIn .3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.menus-nav {
    position: absolute;
    top: 0; bottom: 28px;
    left: 0; right: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}
.menus-btn {
    pointer-events: auto;
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 2px solid #2d5a27;
    background: #fff;
    color: #2d5a27;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
    padding: 0 0 2px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
    flex-shrink: 0;
}
.menus-btn:hover { background: #2d5a27; color: #fff; }
.menus-dots-wrap {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}
.menus-dots { display: flex; gap: 10px; align-items: center; }
.menus-dot {
    width: 9px; height: 9px; border-radius: 50%;
    border: 2px solid #2d5a27; background: transparent;
    cursor: pointer; padding: 0; transition: all .25s;
}
.menus-dot.active { background: #2d5a27; transform: scale(1.35); }

