/* Reset léger */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

/* Layout global */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #ffe6c7 0, #fff7ec 35%, #fff 70%);
    color: #111827;
    min-height: 100vh;
}

.page-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
}

/* Header */
.site-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.5rem 1.25rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Structure du haut du site en grille */
.site-top-row {
    width: 100%;
    max-width: 1100px; /* la largeur du hero */
    margin: 0 auto;
    padding: 1.5rem 1.25rem 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* colonne gauche / logo / colonne droite */
    align-items: center;
}

/* Bloc gauche */
.site-top-left {
    justify-self: start;
}

/* Logo centré dans sa colonne */
.logo-center {
    justify-self: center;
}

.logo-center img {
    display: block;
    height: auto;
    max-width: 200px; /* ajuste si tu veux */
}

/* Bloc menu à droite */
.site-top-right {
    justify-self: end;
}

/* Logo entre le menu et le contenu */
.logo-banner {
    display: flex;
    justify-content: center;
    padding-top: 1.8rem;
    padding-bottom: 0.8rem;
}

.logo-banner-img {
    width: 140px;      /* taille du logo “entre deux” */
    height: auto;
    object-fit: contain;
    display: block;
}


.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo {
    width: 140px;
    height: 140px;
    border-radius: 0;
    object-fit: contain;
    background: none;
    box-shadow: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.site-name {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.site-tagline {
    font-size: 0.8rem;
    color: #6b7280;
}

.site-nav {
    display: flex;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.site-nav a {
    text-decoration: none;
    color: #4b5563;
    position: relative;
}

.site-nav a:hover {
    color: #111827;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    background: #f97316;
    transition: width 0.18s ease-out;
}

.site-nav a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    background: #fff7f2;
    border-radius: 24px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 3rem 3rem;   /* le padding est ici */
}

.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.hero-logo {
    width: 140px;              /* taille du logo au centre */
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-content {
    width: 100%;
    max-width: none;             /* IMPORTANT : on enlève la limite */
}

.hero-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.25rem 2.5rem;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 1.1rem;
}

.hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.4rem;
}

.hero-note {
    margin: 0;
    font-size: 0.85rem;
    color: #9ca3af;
}

/* === Hero slider (diaporama) ===================================== */

.hero {
    max-width: 1100px;
    margin: 2.5rem auto 3rem;
    padding: 0 1.5rem;
}

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    background: radial-gradient(circle at top left, #fff9f0, #fbe0c5);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.16),
        0 6px 18px rgba(0, 0, 0, 0.18);
    perspective: 1400px; /* pour l'effet 3D */
}

/* --- SLIDER HERO "LIVRE" --- */

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: center;
}

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Chaque slide */

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform-origin: left center;
    transform: rotateY(25deg) scale(0.96) translateX(10%);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
    will-change: transform, opacity;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slide active = ouvert comme une page */
.hero-slide--active {
    opacity: 1;
    pointer-events: auto;
    transform: rotateY(0deg) scale(1) translateX(0);
    z-index: 2;
}

/* Slide qui sort = page qui se ferme */
.hero-slide--leaving {
    opacity: 0;
    transform: rotateY(-25deg) scale(0.96) translateX(-10%);
    z-index: 1;
}

/* Points de navigation */

.hero-slider-dots {
    position: absolute;
    inset-inline: 0;
    bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 3;
}

.hero-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    padding: 0;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease,
        width 0.25s ease;
}

.hero-slider-dot--active {
    background: #ff8a3d;
    transform: scale(1.1);
    width: 22px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-media {
        order: -1; /* le slider passe au-dessus du texte */
    }

    .hero-slider {
        max-width: 100%;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    .hero-slider {
        border-radius: 24px;
    }
}

/* BOUTONS */

.btn {
    border-radius: 999px;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s;
}

.btn-primary {
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: #fff;
    box-shadow: 0 12px 25px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(249, 115, 22, 0.5);
}

.btn-ghost {
    background: #fff;
    color: #111827;
    box-shadow: 0 8px 18px rgba(148, 163, 184, 0.4);
}

.btn-ghost:hover {
    transform: translateY(-1px);
}

.hero-note {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Hero image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-skeleton {
    width: 100%;
    height: 190px;
    border-radius: 1.25rem;
    background: linear-gradient(90deg, #f3f4f6, #e5e7eb, #f3f4f6);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    object-fit: cover;
    display: none;
}

.hero-image.loaded {
    display: block;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.card {
    background: #fff;
    border-radius: 1.1rem;
    padding: 1.1rem 1rem;
    box-shadow: 0 16px 30px rgba(148, 163, 184, 0.4);
}

.card-title {
    margin: 0 0 0.4rem;
    color: #f97316;
    font-size: 1rem;
}

.card-body {
    margin: 0;
    font-size: 0.92rem;
    color: #4b5563;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.75rem;
}

/* ========== INFOS PRATIQUES : AFFICHE ÉPICERIE + SOIRÉES ========== */

.infos-section {
    padding-top: 3rem;
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: flex-start;
}

.info-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.infos-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #222222;
}

.infos-card-subtitle {
    font-size: 0.9rem;
    color: #555555;
    margin-bottom: 0.9rem;
}

.infos-poster-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #faf5f0;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infos-poster {
    display: none; /* sera activé par JS si une URL existe */
    max-width: 100%;
    height: auto;
}

.infos-placeholder {
    font-size: 0.85rem;
    color: #999999;
    text-align: center;
    padding: 1rem;
}

.info-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.02rem;
    color: #f97316;
}

.info-card p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Sections */
.section {
    margin-top: 2.25rem;
}

.section-title {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}

.section-body {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #4b5563;
}

.rich-text p {
    margin: 0 0 0.4rem;
}

/* ========= Page Snacking ========= */

.page-snacking .hero-snacking {
    max-width: 960px;
    margin: 40px auto 32px;
    padding: 32px 32px 28px;
    background: #fffdfb;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.hero-snacking .hero-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: #ffe3c7;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b45a14;
    margin-bottom: 12px;
}

.hero-snacking h1 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.hero-snacking-text {
    max-width: 600px;
    margin-bottom: 18px;
}

.hero-snacking .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-snacking .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 9px 20px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.hero-snacking .btn-primary {
    background: linear-gradient(135deg, #ff8e2a, #ff7020);
    color: #fff;
    box-shadow: 0 8px 18px rgba(255, 112, 32, 0.32);
}

.hero-snacking .btn-primary:hover {
    transform: translateY(-1px);
}

.hero-snacking .btn-secondary {
    background: #fff;
    color: #ff7020;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-snacking .hero-note {
    font-size: 12px;
    color: #777;
}

/* Filtres */

.snacking-filters {
    margin: 2rem auto 1rem;
    max-width: 1100px;
    padding: 0 1.5rem;
}

.snacking-filters-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.snacking-filter.is-active {
    background: #ff8e2a;
    color: #fff;
    border-color: #ff8e2a;
}

.snack-filter-button {
    border: 1px solid #d4a373;
    background: transparent;
    color: #1f2933;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.snack-filter-button.active {
    background: #d4a373;
    color: #111827;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.snacking-content {
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

/* Section titres */
.snack-section-title {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.snack-section-subtitle {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #6b7280;
    font-size: 0.95rem;
}


/* Section “Tout” avec 3 cartes visuelles */
.snack-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.snack-hero-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}

.snack-hero-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.snack-hero-text {
    padding: 0.9rem 1rem 1.1rem;
}

.snack-hero-text h2 {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
}

.snack-hero-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

/* Cartes pinsa / gourmandises */
.snack-items-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.snack-item-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.snack-item-card h3 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
}

.snack-item-card p {
    margin: 0.15rem 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.snack-price {
    margin-top: 0.4rem;
    font-weight: 600;
    color: #b45309;
}

/* ---------------------------------------
   Snacking - filtres & cartes
----------------------------------------*/

.snacking-filters {
    max-width: 1100px;
    margin: 2.5rem auto 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.snacking-filter {
    border: 1px solid #ff8a2a;
    background: #fff7f1;
    color: #c45b06;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.snacking-filter.is-active {
    background: linear-gradient(135deg, #ff8a2a, #ffb347);
    color: #fff;
    box-shadow: 0 8px 18px rgba(255, 138, 42, 0.35);
}

.snacking-teasers {
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.snacking-teaser-card {
    background: #ffe8d5;
    border-radius: 1.4rem;
    padding: 1rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.snacking-teaser-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 1rem;
}

.snacking-teaser-card h2 {
    font-size: 1.1rem;
    margin: 0;
}

.snacking-section {
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    padding: 1.75rem 2rem;
    background: #fff7f1;
    border-radius: 1.6rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}

.snacking-section-title {
    font-size: 1.5rem;
    margin: 0 0 0.4rem;
}

.snacking-section-subtitle {
    margin: 0 0 1.25rem;
    color: #666;
}

.snacking-note,
.snacking-legal {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #777;
}

/* Pinsas */

.snacking-pinsas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.snacking-pinsas-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

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

.snacking-list li {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 2.3fr) auto;
    align-items: baseline;
    gap: 0.5rem 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #f1c39d;
}

.snacking-item-name {
    font-weight: 600;
}

.snacking-item-desc {
    font-size: 0.9rem;
    color: #666;
}

.snacking-item-price {
    font-weight: 600;
    white-space: nowrap;
}

/* Carte des boissons */

.drinks-root {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drinks-category {
    padding: 1rem 1.25rem;
    border-radius: 1.2rem;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.04);
}

.drinks-category-title {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
}

.drinks-category-desc {
    margin: 0 0 0.8rem;
    font-size: 0.9rem;
    color: #666;
}

.drinks-items {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.drinks-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 0.5rem 1rem;
    padding: 0.35rem 0;
    border-bottom: 1px dashed #f3d0aa;
}

.drinks-item:last-child {
    border-bottom: none;
}

.drinks-item-main {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.drinks-item-name {
    font-weight: 600;
}

.drinks-item-details {
    font-size: 0.85rem;
    color: #777;
}

.drinks-item-price {
    font-weight: 600;
    white-space: nowrap;
}

.drinks-loading,
.drinks-error,
.drinks-placeholder {
    font-size: 0.95rem;
    color: #666;
}

/* ===========================
   BOISSONS – Bloc principal
   =========================== */

.drinks-block {
    margin-top: 1.5rem;
}

/* Base commune pour toutes les variantes */
.drinks-category {
    margin-bottom: 1.75rem;
    padding: 1.1rem 1.2rem;
    border-radius: 1rem;
}

.drinks-category-header h3 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
}

.drinks-category-description {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.drinks-items {
    margin-top: 0.75rem;
}

.drink-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.6);
}

.drink-item:last-child {
    border-bottom: none;
}

.drink-name {
    margin: 0;
    font-size: 0.95rem;
}

.drink-details {
    margin: 0.1rem 0 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.drink-price {
    font-weight: 600;
    font-size: 0.95rem;
    color: #b45309;
    white-space: nowrap;
}

.drinks-note {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #6b7280;
}

/* ===== Carte des boissons ===== */

.drinks-section {
    max-width: 1100px;
    margin: 2.5rem auto 3rem;
    padding: 0 1.5rem;
}

.drinks-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.drinks-intro {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.drinks-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.drink-filter-button {
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    background: #ffffff;
    cursor: pointer;
    color: #374151;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.drink-filter-button:hover {
    border-color: #0f766e;
    color: #0f766e;
}

.drink-filter-button-active {
    background: #0f766e;
    color: #ecfeff;
    border-color: #0f766e;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.drink-category-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.25rem 1.2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.drink-category-header {
    margin-bottom: 0.5rem;
}

.drink-category-title {
    margin: 0;
    font-size: 1.1rem;
    color: #0f172a;
}

.drink-category-description {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.drink-items-list {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
}

.drink-item {
    padding: 0.45rem 0;
    border-top: 1px dashed #e5e7eb;
}

.drink-item:first-child {
    border-top: none;
}

.drink-item-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
}

.drink-item-name {
    font-size: 0.95rem;
    color: #111827;
}

.drink-item-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f766e;
    white-space: nowrap;
}

.drink-item-details {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.15rem;
}


/* ===========================
   STYLES VARIANTS (3 profils)
   =========================== */

/* Style 1 – CLASSIC (clair, discret) */
.drinks-style-classic .drinks-category {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

/* Style 2 – PREMIUM (fond sombre, look “bar du soir”) */
.drinks-style-premium {
    background: radial-gradient(circle at top, #1f2937, #020617);
    padding: 1.5rem;
    border-radius: 1.5rem;
    color: #e5e7eb;
}

.drinks-style-premium .drinks-category {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.drinks-style-premium .drinks-category-header h3 {
    color: #fbbf24;
}

.drinks-style-premium .drinks-category-description {
    color: #9ca3af;
}

.drinks-style-premium .drink-name {
    color: #e5e7eb;
}

.drinks-style-premium .drink-details {
    color: #9ca3af;
}

.drinks-style-premium .drink-price {
    color: #fbbf24;
}

.drinks-style-premium .drinks-note {
    color: #9ca3af;
}

/* Style 3 – “Cards” (chaque catégorie en carte détachée) */
.drinks-style-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.drinks-style-cards .drinks-category {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}


/* Sections snacking */

.snacking-section {
    max-width: 960px;
    margin: 0 auto 24px;
}

.snacking-section-title {
    font-size: 20px;
    margin-bottom: 4px;
}

.snacking-section-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.snacking-list {
    background: #fffdfb;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    padding: 14px 18px;
}

.snacking-item + .snacking-item {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    margin-top: 8px;
    padding-top: 8px;
}

.snacking-item-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
}

.snacking-item-price {
    white-space: nowrap;
    color: #ff7020;
}

.snacking-item-desc {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.snacking-note {
    max-width: 960px;
    margin: 0 auto 40px;
    font-size: 12px;
    color: #777;
}

/* Utilitaire */
.is-hidden {
    display: none !important;
}

/* ===== Galerie snacking (mode "Tout") ===== */

.snacking-gallery {
    max-width: 960px;
    margin: 0 auto 24px;
}

.snacking-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.snacking-photo {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #f4d3b4;
}

.snacking-photo img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.snacking-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

.snacking-photo:hover img {
    transform: scale(1.04);
    filter: brightness(1.05);
}

.snacking-gallery-note {
    font-size: 13px;
    color: #777;
    margin-top: 10px;
}

/* Wrapper des sections cartes */

.snacking-sections-wrapper {
    max-width: 960px;
    margin: 0 auto 40px;
}

/* ===========================
   SNACKING – LAYOUT GÉNÉRAL
   =========================== */

.page-snacking .hero-snacking {
    padding: 3.5rem 1.5rem 2.5rem;
}

.page-snacking .hero-snacking .hero-inner {
    max-width: 960px;
    margin: 0 auto;
}

.snacking-filters-wrapper {
    max-width: 960px;
    margin: 0 auto 1.5rem;
    padding: 0 1.5rem;
}

.snacking-filters {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    padding: 0.35rem 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.snack-filter-btn {
    border: none;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    cursor: pointer;
    background: transparent;
    color: #555;
    transition: background 0.2s ease, color 0.2s ease;
}

.snack-filter-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.snack-filter-btn.is-active {
    background: linear-gradient(135deg, #ff9c4a, #ff7a2d);
    color: #fff;
}

/* Sections snacking */

.snack-section {
    max-width: 1100px;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
}

.card-snack {
    background: #fff;
    border-radius: 26px;
    padding: 1.75rem 2rem 2rem;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.06);
}

.card-snack + .card-snack {
    margin-top: 1.5rem;
}

.card-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #ff7a2d;
    background: rgba(255, 162, 94, 0.15);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.card-title {
    margin: 0 0 0.4rem;
    font-size: 1.6rem;
}

.card-text {
    margin: 0 0 1.4rem;
    color: #555;
}

/* ===========================
   PINSAS – DOUBLE COLONNE
   =========================== */

.pinsas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.pinsas-column-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Style "premium" pour les listes snacking */

.snack-category-body {
    background: #fff7f1;
    border-radius: 18px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 175, 120, 0.35);
}

.snack-item-row {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 0.75rem;
    row-gap: 0.1rem;
    padding: 0.45rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.snack-item-row:last-child {
    border-bottom: none;
}

.snack-item-name {
    font-weight: 500;
}

.snack-item-details {
    grid-column: 1 / -1;
    font-size: 0.8rem;
    color: #777;
}

.snack-item-price {
    font-weight: 600;
}

/* Variante "liste" (gourmandises) */

.snack-style-list .snack-item-row {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding-inline: 0.75rem;
    margin-bottom: 0.4rem;
}

/* ===========================
   BOISSONS – MULTI-STYLES
   =========================== */

.drinks-menu {
    margin-top: 1.4rem;
}

/* Style A : "default", simple liste */

.drinks-style-default .drinks-category {
    margin-bottom: 1.2rem;
}

.drinks-style-default .drinks-category-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.drinks-style-default .drinks-category-desc {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.4rem;
}

.drinks-style-default .drinks-item-row {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 0.75rem;
    row-gap: 0.1rem;
    padding: 0.35rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.04);
    font-size: 0.95rem;
}

/* Style B : "premium" (cartes par catégorie) */

.drinks-style-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
}

.drinks-style-premium .drinks-category {
    background: #fff;
    border-radius: 18px;
    padding: 0.9rem 1rem 1rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #ff9c4a;
}

.drinks-style-premium .drinks-category-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.drinks-style-premium .drinks-category-desc {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.drinks-style-premium .drinks-item-row {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 0.6rem;
    padding: 0.25rem 0;
    font-size: 0.9rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.04);
}

.drinks-style-premium .drinks-item-row:last-child {
    border-bottom: none;
}

.drinks-item-name {
    font-weight: 500;
}

.drinks-item-details {
    grid-column: 1 / -1;
    font-size: 0.8rem;
    color: #777;
}

.drinks-item-price {
    font-weight: 600;
}

/* Style C : "compact" pour affichage en colonnes */

.drinks-style-compact {
    columns: 2 260px;
    column-gap: 2rem;
}

.drinks-style-compact .drinks-category {
    break-inside: avoid;
    margin-bottom: 1rem;
}

.drinks-style-compact .drinks-category-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

/* Notes */

.drinks-notes {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #777;
}

/* Responsive Snacking */
@media (max-width: 960px) {
    .snacking-teasers {
        grid-template-columns: 1fr;
    }

    .snacking-section {
        padding: 1.4rem 1.2rem;
    }

    .snacking-pinsas-grid {
        grid-template-columns: 1fr;
    }

    .snacking-list li {
        grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
        grid-template-areas:
            "name price"
            "desc desc";
    }

    .snacking-item-name {
        grid-area: name;
    }

    .snacking-item-desc {
        grid-area: desc;
    }

    .snacking-item-price {
        grid-area: price;
        text-align: right;
    }
}

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

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

    .snack-items-grid {
        grid-template-columns: 1fr;
    }

    .drinks-style-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .snacking-gallery-grid {
        grid-template-columns: 1fr;
    }

    .snacking-photo img {
        height: 190px;
    }

    .snacking-section,
    .snacking-note {
        margin-left: 16px;
        margin-right: 16px;
    }
}

@media (max-width: 768px) {
    .page-snacking .hero-snacking {
        margin: 24px 16px 16px;
        padding: 20px 18px;
    }

    .snacking-section,
    .snacking-note,
    .snacking-filters {
        margin-left: 16px;
        margin-right: 16px;
    }

    .snacking-item-header {
        flex-direction: row;
        align-items: baseline;
    }
}

@media (max-width: 480px) {
    .hero-snacking h1 {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .drinks-section {
        padding: 0 1rem;
    }
    .drinks-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== CONTACT ========== */

.contact-section {
    display: flex;
    gap: 40px;
    align-items: stretch; /* Force les deux colonnes à avoir la même hauteur */

}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.contact-info .section-title {
    margin-bottom: 0.75rem;
}

.contact-intro {
    font-size: 0.95rem;
    color: #444444;
    margin-bottom: 1rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #333333;
}

.contact-list li + li {
    margin-top: 0.35rem;
}

.contact-list a {
    color: #f97316;
    text-decoration: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);

}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
}

.form-field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #444444;
}

.form-field input,
.form-field textarea {
    border-radius: 999px;
    border: 1px solid #e5e5e5;
    padding: 0.55rem 0.9rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
}

.form-field textarea {
    border-radius: 16px;
    resize: vertical;
    min-height: 120px;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.2);
}

.contact-submit {
    margin-top: 0.5rem;
}

.contact-hint {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #888888;
}

/* Bloc message qui s’étire pour remplir toute la hauteur disponible */
.contact-form textarea {
    flex-grow: 1;
    min-height: 220px; /* Ajustable si tu veux une hauteur max */
    resize: vertical;  /* Permet le redimensionnement manuel sans casser la mise en page */
}

/* Pour éviter que les champs du haut prennent trop de place */
.contact-form .input-row {
    margin-bottom: 15px;
}

/* --- Contact : colonnes même hauteur --- */

.contact-columns {
    align-items: stretch;          /* Les 2 colonnes prennent la même hauteur */
}

.contact-card,
.contact-form-card {
    height: 100%;
}

.contact-form-card {
    display: flex;
    flex-direction: column;
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* La rangée "Message" occupe tout l'espace vertical restant */
.form-row-message {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-row-message textarea {
    flex: 1;
    min-height: 220px;             /* Tu peux monter/descendre cette valeur si tu veux */
    resize: vertical;              /* Redimensionnement possible vers le bas/haut sur desktop */
}


/* Horaires – page contact */

.opening-hours {
    margin-top: 0.5rem;
}

.opening-hours-wrapper {
    margin-top: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: #fff7ef;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
}

.opening-hours-season {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #8a5b2f;
}

.opening-hours-season span {
    font-size: 0.8rem;
    color: #b58a5c;
}

.opening-hours-status {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.opening-hours-status.status-open {
    background: #e4f7eb;
    color: #21754e;
}

.opening-hours-status.status-closed {
    background: #ffe5e5;
    color: #b02b2b;
}

.opening-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.opening-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.opening-hours-item:first-child {
    border-top: none;
}

.opening-hours-item.is-today .day {
    font-weight: 700;
}

.opening-hours-item .day {
    margin-right: 1rem;
}

.opening-hours-item .hours .closed {
    color: #c0392b;
    font-weight: 600;
}

.hours-season-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #b66b2c; /* même gamme que les titres / badge */
}

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

.hours-list li {
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-hours-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #b66b2c;
}
.hour-line {
    margin: 4px 0;
}

.hour-closed {
    color: #e11d48; /* rouge premium */
    font-weight: 600;
}

.open-status {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    margin-top: 3rem;
    padding: 1.25rem 0 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.8rem;
    color: #777777;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.footer-name {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: #999999;
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-end;
}

.footer-small {
    margin: 0.1rem 0;
}

.footer-link {
    color: #f97316;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* API error */
.api-error {
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 0.9rem;
}

/* Responsive */
/* Tablette / petits laptops */
@media (max-width: 1024px) {
    .contact-section {
        padding: 0 1.5rem;
        margin-bottom: 3rem;
    }

    .contact-columns {
        gap: 2rem;
    }

    .contact-card,
    .contact-form-card {
        padding: 1.75rem;
    }

    .contact-form-card h2,
    .contact-card h2 {
        font-size: 1.3rem;
    }
}

/* Mobile paysage / moyenne largeur */
@media (max-width: 900px) {

    /* Header */
    .site-top-row {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .site-top-left {
        justify-content: center;
    }

    .site-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    /* Hero (page d’accueil) */
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-image-wrapper {
        order: -1;
        margin-bottom: 1.25rem;
    }

    .hero-card {
        padding: 1.5rem 1.25rem;
    }

    /* Cartes Bar / FDJ / Proxi */
    .cards {
        grid-template-columns: minmax(0, 1fr);
    }

    /* Bloc “Infos pratiques” (affiches nouveautés / soirées) */
    .infos-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Contact : colonnes l’une sous l’autre */
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .contact-form {
        margin-top: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .contact-columns {
        flex-direction: column;    /* Les colonnes passent l'une sous l'autre */
    }

    .contact-card,
    .contact-form-card {
        max-width: 640px;
        margin: 0 auto;
    }

    .contact-form-card form {
        gap: 0.75rem;
    }

    .form-row,
    .form-row-inline {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-row-inline .form-field {
        width: 100%;
    }

    .form-field input,
    .form-field textarea {
        font-size: 0.95rem;
        padding: 0.65rem 0.85rem;
    }

    .contact-submit {
        text-align: center;
    }

    .contact-submit button {
        width: 100%;
        max-width: 260px;
    }

    .map-section {
        padding: 0 1.5rem 3rem;
    }

    .map-embed iframe {
        height: 320px;
    }
}
/* Mobile étroit (type iPhone SE, petits Android) */
@media (max-width: 600px) {
    .page-main {
        padding: 1.5rem;
    }

    .hero-logo-strip {
        padding-top: 1.2rem;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-card {
        border-radius: 1.1rem;
 
   }

    .hero-card h1 {
        font-size: 1.4rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .contact-section {
        padding: 0 1rem;
    }

    .contact-card,
    .contact-form-card {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .contact-details p,
    .opening-hours-card p,
    .opening-hours-card li {
        font-size: 0.9rem;
    }

    .form-field textarea {
        min-height: 160px; /* un peu moins haut sur les petits écrans */
    }

    .hours-status-badge {
        font-size: 0.78rem;
        padding: 0.25rem 0.6rem;
    }

    .map-section {
        padding: 0 1rem 2.5rem;
    }

    .map-embed iframe {
        height: 280px;
        border-radius: 18px;
    }
}

/* Très petit écran */
@media (max-width: 420px) {
    .contact-card h2,
    .contact-form-card h2 {
        font-size: 1.15rem;
    }

    .form-field label {
        font-size: 0.85rem;
    }

    .form-field input,
    .form-field textarea {
        font-size: 0.9rem;
    }
}
