/* ------------------------------------
   PALETTE CLAIRE – STYLE PREMIUM
------------------------------------- */
:root {
  --bg: #f5efe8;
  --paper: #ffffff;
  --text: #3e2a1f;
  --muted: #6b5247;

  --accent: #c44b36;
  --accent-light: #e57e6c;

  --border: #e6dcd4;
  --radius: 18px;

  --shadow: 0 8px 25px rgba(0,0,0,0.08);
  --shadow-hover: 0 10px 35px rgba(0,0,0,0.12);

  --transition: 0.25s ease;
}

/* ------------------------------------
   GLOBAL
------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 92%;
  margin: auto;
  max-width: 1100px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

/* ------------------------------------
   HEADER PREMIUM
------------------------------------- */
header {
  position: relative;
  height: 165px;
  background-image: url("images/header-bg.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.15),
      rgba(0,0,0,0.55)
  );
  z-index: 1;
}

.header-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.logo-big {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* ------------------------------------
   ICONES HAUT DROITE
------------------------------------- */
.shortcut-icons {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  display: flex !important;
  gap: 10px !important;
  z-index: 9999 !important;
}

.shortcut-icons img {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

/* ------------------------------------
   BOUTON BURGER (EN HAUT À GAUCHE)
------------------------------------- */
.burger-img {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 9999;
}

.burger-img img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.burger-img:hover img {
  transform: scale(1.07);
}

/* ------------------------------------
   MENU BURGER LATÉRAL (SLIDE)
------------------------------------- */
.burger-nav-hidden {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: var(--paper);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid var(--border);
  transition: 0.3s ease;
  z-index: 9998;
  overflow-y: auto;

}

.burger-nav-hidden a {
  padding: 12px;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.burger-nav-hidden.active {
  left: 0;
}

/* ------------------------------------
   OVERLAY BURGER
------------------------------------- */
.burger-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  z-index: 9990;
  backdrop-filter: blur(1px);
}

.burger-overlay.active {
  display: block;
}

/* ------------------------------------
   BARRE HORIZONTALE PREMIUM ROUGE BRIQUE
------------------------------------- */

.categories-horizontal {
  display: flex;
  overflow-x: auto;                 
  gap: 10px;
  padding: 12px 16px;
  white-space: nowrap;              
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.categories-horizontal::-webkit-scrollbar {
  display: none;
}

.categories-horizontal a {
    background: linear-gradient(135deg, #c44b36, #a63729);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
    transition: 0.25s ease;
    position: relative;
    flex-shrink: 0;                 
    cursor: pointer;
}

.categories-horizontal a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.28) 0%,
      rgba(255,255,255,0.05) 60%,
      transparent 100%
  );
  pointer-events: none;
  opacity: 0.65;
}

.categories-horizontal a:hover {
  background: linear-gradient(135deg, #a63729, #8d2d23);
  box-shadow: 0 4px 14px rgba(0,0,0,0.28);
  transform: translateY(-2px);
}

/* ------------------------------------
   EVENEMENT BUTTON
------------------------------------- */
.event-button {
  background: #c19b2c;
  color: white;
  padding: 14px 22px;
  font-size: 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  animation: pulseEvent 1.6s infinite;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

@keyframes pulseEvent {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ------------------------------------
   POPUP ÉVÉNEMENT
------------------------------------- */
.popup {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 16px;
}

.popup-content {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  max-width: 92%;
}

.popup-image {
  width: 100%;
  border-radius: 12px;
}

.close {
  position: absolute;
  top: 6px;
  right: 14px;
  font-size: 34px;
  cursor: pointer;
  color: #333;
}

/* ------------------------------------
   MENU GRID
------------------------------------- */
#menu-grid {
  padding: 10px 14px 90px;
}

.items {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.menu-item {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.item-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-info {
  padding: 14px;
}

.item-name {
  font-size: 19px;
  margin-bottom: 4px;
}

.item-desc {
  font-size: 0.85rem;
  color: var(--muted);
}

.item-price {
  margin-top: 8px;
  font-size: 18px;
  font-weight: bold;
  color: var(--accent);
}

/* ------------------------------------
   LIGHTBOX
------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 22px;
  z-index: 99999;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 95%;
  max-height: 75vh;
  border-radius: var(--radius);
}

.lightbox .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 34px;
  color: #fff;
}

/* ------------------------------------
   LANG SWITCH
------------------------------------- */
.lang-switch {
  position: fixed;
  right: 14px;
  bottom: 85px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 100;
}

.lang-button {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 6px 8px;
  border-radius: 12px;
  font-size: 18px;
  box-shadow: var(--shadow);
}

.lang-button.active {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

/* ------------------------------------
   GOOGLE REVIEW
------------------------------------- */
.google-review-fab {
  position: fixed;
  bottom: 20px;
  left: 15px;
  background: #fff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
  z-index: 99999;
}

.google-review-fab img {
  width: 45px;
  height: 45px;
}

/* ------------------------------------
   FOOTER
------------------------------------- */
footer {
  padding: 25px 0;
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
}

footer a {
  color: var(--accent);
}
/* -----------------------------
   BOUTON REMONTER EN HAUT
------------------------------ */
.back-to-top {
    position: fixed;
    bottom: 20px;               /* en bas */
    left: 50%;                  /* centrer */
    transform: translateX(-50%);/* correction du centrage */
    
    width: 55px;
    height: 55px;

    background: linear-gradient(135deg, #c44b36, #a63729);
    color: #fff;

    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 9999;

    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateX(-50%) translateY(-4px);
}
/* Protected images */
.item-img-wrapper {
    /* Taille des images */
    background-size: contain;          /* avant : cover → provoquait le zoom */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;            /* Tu peux mettre #fff si tu préfères */

    /* Protection iOS & Android */
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;

   
}

/* ------------------------------------
   LIGHTBOX PROTÉGÉE (background-image)
------------------------------------- */

.secure-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.secure-lightbox.active {
    display: flex;
}

.secure-lightbox-content {
    width: 88%;
    max-width: 480px;
    height: 70vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    /* empêche le menu iOS (enregistrer l'image) */
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
.item-img-wrapper {
    width: 100%;
    height: 180px;                /* important pour garder un bon format */
    border-radius: 12px;

    background-size: cover;       /* 👈 rempli le cadre */
    background-position: center;
    background-repeat: no-repeat;

    background-color: #000;       /* change si tu veux */

    /* protections */
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
/* ====================================================
   THEME CAN 2025 – MAROC PREMIUM (OVERRIDE)
   À COLLER À LA FIN DE style.css
==================================================== */

/* Nouvelle palette Maroc CAN */
:root {
  --bg: #050d0b;          /* fond très sombre vert/noir */
  --paper: #101822;       /* cartes noir bleuté */
  --text: #fdf5e6;        /* texte principal clair */
  --muted: #cfd8dc;       /* texte secondaire */

  --accent: #e53935;      /* rouge Maroc */
  --accent-light: #f6b531;/* or trophée CAN */

  --border: #17302b;
  --radius: 18px;

  --shadow: 0 10px 30px rgba(0,0,0,0.7);
  --shadow-hover: 0 18px 45px rgba(0,0,0,0.9);

  --transition: 0.25s ease;
}

/* Fond général CAN */
body {
  background: radial-gradient(circle at top, #0b2e22 0%, #050d0b 50%, #020506 100%);
  color: var(--text);
}

/* HEADER – ambiance stade marocain */
header {
  position: relative;
  height: 165px;
  background:
    radial-gradient(circle at left, rgba(0,107,63,0.9), transparent 60%),
    radial-gradient(circle at right, rgba(229,57,53,0.9), transparent 55%),
    #050b10;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(246,181,49,0.4);
}

.header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.8)
  );
}

/* Logo mis en avant (trophée) */
.logo-big {
  width: 140px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.7));
}

/* Icônes en haut à droite */
.shortcut-icons img {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.7);
  border: 1px solid rgba(246,181,49,0.6);
}

/* TITRES DE SECTIONS – bande or/rouge */
.section-title {
  font-size: 1.1rem;
  margin: 24px 0 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent-light);
  border-left: 6px solid var(--accent);
  padding-left: 10px;
}

/* Cartes des plats */
.menu-item {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid rgba(246,181,49,0.28);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-light);
}

.item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.item-desc {
  font-size: 0.8rem;
  color: var(--muted);
}

.item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-light);
}

/* Vignettes images (on garde ton layout actuel) */
.item-img-wrapper {
  background-color: #000;
}

/* BARRE DES CATÉGORIES – couleurs CAF/Maroc */
.categories-horizontal {
  background: linear-gradient(90deg, #006b3f, #e53935, #f6b531);
  padding: 10px 16px;
}

.categories-horizontal a {
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(246,181,49,0.55);
  box-shadow: 0 5px 16px rgba(0,0,0,0.6);
  font-size: 0.85rem;
}

.categories-horizontal a:hover {
  background: linear-gradient(135deg, #e53935, #f6b531);
  color: #111;
  box-shadow: 0 10px 24px rgba(0,0,0,0.85);
}

/* Bouton ÉVÉNEMENT – match du Maroc */
.event-button {
  background: linear-gradient(135deg, #e53935, #f6b531);
  color: #111;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 16px;
  border: none;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0,0,0,0.8);
}

.event-button:hover {
  transform: translateY(-2px);
}

/* BOUTONS LANGUE – pastilles CAN */
.lang-button {
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(246,181,49,0.6);
  color: var(--text);
  box-shadow: 0 6px 18px rgba(0,0,0,0.75);
}

.lang-button.active {
  background: linear-gradient(135deg, #e53935, #f6b531);
  color: #111;
  border-color: #f6b531;
}

/* MENU BURGER – panneau sombre */
.burger-nav-hidden {
  background: #050b12;
  border-right: 1px solid rgba(246,181,49,0.4);
}

.burger-nav-hidden a {
  color: var(--text);
}

/* GOOGLE REVIEW – badge sombre or */
.google-review-fab {
  background: #101822;
  border-radius: 16px;
  border: 1px solid rgba(246,181,49,0.5);
}

/* FOOTER */
footer {
  color: var(--muted);
}

/* Bouton remonter en haut – ballon or/rouge */
.back-to-top {
  background: linear-gradient(135deg, #e53935, #f6b531);
  color: #111;
  box-shadow: 0 10px 30px rgba(0,0,0,0.9);
}
/* ===== FOND TERRAIN ===== */

body {
    background: url("images/terrain.png") center center no-repeat fixed !important;
    background-size: cover !important;
}
/* ===== BALLON FIXE ===== */

.ballon-fixe {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 70px;
    height: 70px;

    background: url("images/ballon.png") center/contain no-repeat;
    z-index: 99999;
    pointer-events: none;
}
/* =========================================================
   HEADER CAN 2025 – MAROC PREMIUM (Optimisé Mobile)
   ========================================================= */

header {
    position: relative;
    width: 100%;
    height: 180px; /* mobile-friendly */
    background-image: url("images/equipe-national.jpg") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;

    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;

    border-bottom: 2px solid rgba(255,255,255,0.18);
    overflow: hidden;
}

/* Overlay dynamique red/green (Maroc) */
header::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.25) 0%,
            rgba(229,57,53,0.35) 40%,   /* rouge maroc léger */
            rgba(0,107,63,0.45) 75%,   /* vert maroc doux */
            rgba(0,0,0,0.65) 100%
        );

    backdrop-filter: brightness(0.8);
    z-index: 1;
}

/* Zone interne du header */
.header-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
}



/* Logo optimisé pour photo de fond */
.logo-big {
    width: 120px;
    max-width: 38vw;
    z-index: 4;

    border-radius: 12px;
    border: 3px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.13);
    backdrop-filter: blur(5px);
    padding: 6px;

    box-shadow:
        0 0 12px rgba(0,0,0,0.8),
        0 0 25px rgba(246,181,49,0.55); /* lumière or premium */
}

/* Ajustements mobiles */
@media (max-width: 480px) {
    header {
        height: 150px;
        padding-bottom: 16px;
    }

    .logo-big {
        width: 100px;
        max-width: 40vw;
        padding: 4px;
    }
}
/* ================================
   LOGO PLUS PETIT – BAS GAUCHE
   ================================ */

header {
    position: relative;
}

/* Positionnement du logo */
.logo-big {
    position: absolute;
    bottom: 12px;      /* distance du bas */
    left: 12px;        /* distance du bord gauche */
    
    width: 75px !important;  /* taille réduite */
    max-width: none !important;

    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.13);
    backdrop-filter: blur(5px);
    padding: 4px;

    box-shadow:
        0 0 10px rgba(0,0,0,0.8),
        0 0 16px rgba(246,181,49,0.55);
    z-index: 5;
}

/* Ajustement mobile */
@media (max-width: 480px) {
    .logo-big {
        width: 60px !important;
        bottom: 10px;
        left: 10px;
        padding: 3px;
    }
}
/* =============================================================
   AMBIANCE FOOTBALL CAN 2025 – MAROC POUR LES CARTES DE PLATS
   ============================================================= */

.menu-item {
    position: relative;
    background: rgba(0, 10, 6, 0.85); /* noir verdâtre foot */
    border: 1px solid rgba(246, 181, 49, 0.45); /* contour or */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.7);
    backdrop-filter: blur(3px);
}

/* texture de terrain sous les vignettes */
.menu-item::before {
    content: "";
    position: absolute;
    inset: 0;
    
    background: url("images/terrain.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.12;   /* subtil */
    z-index: 0;
}

/* lumière projecteur */
.menu-item::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -20%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(246,181,49,0.25),
        transparent 70%
    );
    opacity: 0.12;
    z-index: 0;
}

/* contenu au-dessus */
.item-img-wrapper,
.item-info {
    position: relative;
    z-index: 3;
}

/* TITRE + PRIX dorés */
.item-name {
    color: #f6b531 !important; /* or */
    font-weight: 700;
    letter-spacing: 0.5px;
}

.item-price {
    color: #e53935 !important; /* rouge Maroc */
    font-weight: 800;
    font-size: 1rem;
}

/* Hover football premium */
.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.85),
                0 0 12px rgba(246,181,49,0.45);
    border-color: #f6b531;
}
/* ===============================================
   FIX FINAL : LOGO TRÈS PETIT EN BAS GAUCHE
================================================ */

.logo-big {
    position: absolute !important;
    bottom: 4px !important;    /* 🟥 collé au bas */
    left: 4px !important;      /* 🟥 collé à gauche */
    
    width: 48px !important;    /* 🟥 plus petit */
    height: 48px !important;
    padding: 3px !important;

    border-radius: 8px !important;
    border: 2px solid rgba(255,255,255,0.8) !important;
    background: rgba(0,0,0,0.25) !important;
    backdrop-filter: blur(6px) !important;

    box-shadow:
        0 0 6px rgba(0,0,0,0.85),
        0 0 14px rgba(246,181,49,0.55) !important;
    z-index: 999 !important;
}

/* mobile */
@media (max-width: 480px) {
    .logo-big {
        width: 42px !important;
        height: 42px !important;
        bottom: 4px !important;
        left: 4px !important;
        padding: 2px !important;
    }
}
/* ===============================================
   FIX FINAL : AMBIANCE FOOTBALL SUR TOUTES LES CARTES
================================================ */

.menu-item {
    background: rgba(0, 10, 6, 0.88) !important;  /* noir foot */
    border: 1px solid rgba(246, 181, 49, 0.45) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
    backdrop-filter: blur(3px) !important;
    box-shadow: 0 6px 28px rgba(0,0,0,0.75) !important;
}

/* terrain sous vignette */
.menu-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/terrain.jpg") center/cover no-repeat;
    opacity: 0.18 !important;
    z-index: 0;
}

/* projecteur */
.menu-item::after {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(246,181,49,0.25), transparent 70%);
    opacity: 0.15 !important;
    z-index: 0;
}

/* images et texte au-dessus */
.item-img-wrapper,
.item-info {
    position: relative !important;
    z-index: 5 !important;
}

/* nom et prix */
.item-name {
    color: #f6b531 !important; /* OR */
    font-weight: 700 !important;
}

.item-price {
    color: #e53935 !important; /* ROUGE MAROC */
    font-weight: 800 !important;
    font-size: 1.05rem !important;
}

/* hover */
.menu-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 
        0 12px 36px rgba(0,0,0,0.9),
        0 0 14px rgba(246,181,49,0.5) !important;
    border-color: #f6b531 !important;
}
/* -----------------------------------------------------
   IMAGE DES VIGNETTES — VERSION PROPRE & FIXÉE
----------------------------------------------------- */

/* Carte */
.menu-item {
    background: #111;
    border-radius: 14px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Zone image */
.item-img-wrapper {
    width: 100%;
    height: 155px;         /* Hauteur parfaite mobile */
    position: relative;
    overflow: hidden;
    background: #000;      /* fond noir */
}

/* IMAGE DU PLAT → toujours bien cadrée */
.item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* Remplit sans déformer */
    display: block;
    border-radius: 0;
}

/* -----------------------------------------------------
   WATERMARK BALLON (VERSION PRO)
----------------------------------------------------- */

.menu-item::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 50%;
    width: 65px;                    /* ballon parfait */
    height: 65px;
    transform: translate(-50%, -50%);
    background: url("images/ballon.png") center/contain no-repeat;
    opacity: 0.08;                  /* discret premium */
    z-index: 1;
    pointer-events: none;
}

/* Le contenu vient par-dessus */
.menu-item > * {
    position: relative;
    z-index: 2;
}
/* ================================
   FIX – VIGNETTES TRANSPARENTES
   ================================ */

.menu-item {
    background: rgba(0,0,0,0) !important;  /* plus de fond noir */
    backdrop-filter: blur(4px);            /* optionnel : effet verre */
    border: 1px solid rgba(255,255,255,0.15);
}

.item-info {
    background: rgba(0,0,0,0.20) !important;  /* semi-transparent pour lisibilité */
    backdrop-filter: blur(3px);
}
/* ===============================
   FIX ZOOM – CROP INTELLIGENT
=============================== */

.item-img-wrapper {
    width: 100%;
    height: 170px;               /* ajuste si tu veux plus grand */
    background-size: cover;      /* crop intelligent sans zoom excessif */
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 14px 14px 0 0;
}

/* sécurité pour désactiver l’ancienne image */
.item-img-wrapper img {
    display: none !important;
}
/* ==========================================
   LOGO PLUS GRAND – EXTRÊME BAS À GAUCHE
========================================== */

header {
    position: relative;
}

/* Style du logo */
header .logo-big,
header .logo {
    position: absolute !important;
    bottom: 0px !important;       /* collé en BAS total */
    left: 0px !important;         /* collé à GAUCHE total */
    
    width: 110px !important;      /* plus grand */
    height: auto !important;

    z-index: 20;

    margin: 0 !important;
    padding: 4px;

    background: rgba(0,0,0,0.25);
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.85);

    backdrop-filter: blur(4px);
    box-shadow:
        0 0 10px rgba(0,0,0,0.8),
        0 0 14px rgba(246,181,49,0.55);
}

/* Version mobile */
@media (max-width: 480px) {
    header .logo-big,
    header .logo {
        width: 60px !important;     /* taille confortable mobile */
        padding: 3px;
    }
}

