/* =========================================================
   LE SAVOIR BAR – MASTER STYLESHEET
   This file controls the entire look & feel of the site
   ========================================================= */



/* =========================================================
   1. RESET & BASE SETTINGS
   (Stops browser inconsistencies)
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #2b1f23; /* deep wine background */
  color: #f5efe9; /* warm cream text */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}


/* =========================================================
   2. BRAND VARIABLES
   (Colours, fonts, spacing used everywhere)
   ========================================================= */
:root {
  --wine-dark: #2b1f23;
  --wine-soft: #4a3038;
  --rose-muted: #7a4a55;
  --cream: #f5efe9;
  --gold-soft: #c8a86b;
  --charcoal: #1c1c1c;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --radius: 6px;
  --transition: 0.3s ease;
}


/* =========================================================
   3. TYPOGRAPHY
   (Headings & paragraph text)
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.75px; /* elegant editorial spacing */
  color: var(--cream);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
  font-size: 2rem;
}

p {
  font-size: 1rem;
  color: #e6dcd3;
  max-width: 520px;
}


/* =========================================================
   4. LINKS (TEXT LINKS ONLY)
   ========================================================= */
a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  opacity: 0.85;
}


/* =========================================================
   5. BUTTONS (ALL BUTTON STYLES + GLOWS)
   ========================================================= */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

/* Solid gold button */
.btn-primary {
  background-color: var(--gold-soft);
  color: var(--charcoal);
  border: none;
}

/* Gold glow on hover */
.btn-primary:hover {
  background-color: #b8985f;
  box-shadow: 0 0 14px rgba(200,168,107,0.6);
}

/* Outline button */
.btn-outline {
  border: 1px solid var(--gold-soft);
  color: var(--gold-soft);
  background: transparent;
}

/* Outline button glow */
.btn-outline:hover {
  background-color: var(--gold-soft);
  color: var(--charcoal);
  box-shadow: 0 0 12px rgba(200,168,107,0.4);
}


/* =========================================================
   6. LAYOUT HELPERS
   ========================================================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 4rem 0;
}


/* =========================================================
   7. GOLD DIVIDER LINE
   ========================================================= */
.divider {
  width: 60px;
  height: 1px;
  background-color: var(--gold-soft);
  margin: 1.5rem 0;
}


/* =========================================================
   8. HERO SECTION
   (Homepage background image + overlay)
   ========================================================= */
.hero {
  position: relative;
  height: 85vh;            
  overflow: hidden;        
  display: flex;
  align-items: center;
  padding-top: 6rem;

  background-image: url('../images/HERO.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(43,31,35,0.78),
    rgba(43,31,35,0.92)
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(0,0,0,0.45);
  pointer-events: none;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}



/* =========================================================
   9. HEADER & NAVIGATION (TOP MENU)
   ========================================================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 9999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--cream);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

/* Nav links */
.main-nav a {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Nav hover glow */
.main-nav a:hover {
  color: var(--gold-soft);
  text-shadow: 0 0 8px rgba(200,168,107,0.6);
}

/* Active page glow */
.main-nav a.active {
  color: var(--gold-soft);
  text-shadow: 0 0 10px rgba(200,168,107,0.8);
}


/* =========================================================
   10. EVENTS CARDS (HOMEPAGE & EVENTS PAGE)
   ========================================================= */
.event-card {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius);
  max-width: 720px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Event card hover glow */
.event-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    0 0 14px rgba(200,168,107,0.25);
}

.event-date {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.event-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


/* =========================================================
   11. PAGE HEADERS (Events, Menu, Contact, Reservations)
   ========================================================= */
.page-header {
  padding-top: 8rem;
  padding-bottom: 4rem;
}


/* =========================================================
   12. RESERVATIONS FORM
   ========================================================= */
.reservation-form {
  background-color: var(--wine-soft);
}

form {
  max-width: 520px;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-soft);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius);
  border: none;
  background-color: rgba(0,0,0,0.25);
  color: var(--cream);
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--gold-soft);
}

.event-notice {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(0,0,0,0.3);
  border-left: 3px solid var(--gold-soft);
}

.time-select {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.time-select select {
  padding: 0.6rem;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

/* =========================================================
   14A. MENU NAV (DRINKS / WINE / NIBBLES)
   ========================================================= */

.menu-nav {
  position: sticky;
  top: 72px;
  z-index: 10;
  background: linear-gradient(
    to bottom,
    rgba(26,20,18,0.95),
    rgba(26,20,18,0.85)
  );
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* CENTER everything inside the menu header */
.menu-nav-inner {
  display: flex;
  justify-content: center;   /* 👈 centres items */
  align-items: center;
  gap: 1rem;                 /* cleaner spacing */
  padding: 0.75rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}

/* Hide scrollbar cleanly */
.menu-nav-inner::-webkit-scrollbar {
  display: none;
}

/* Menu buttons / links */
.menu-nav button,
.menu-nav .menu-nav-link {
  flex-shrink: 0;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(200,168,107,0.35);
  background: transparent;
  color: var(--gold);
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Active / hover state */
.menu-nav button.active,
.menu-nav button:hover,
.menu-nav .menu-nav-link:hover {
  background: rgba(200,168,107,0.15);
  box-shadow: 0 0 10px rgba(200,168,107,0.35);
}

/* =========================================================
   MENU HEADER – EXPLORE OUR MENU (CLEAN & TIGHT)
   ========================================================= */

.menu-header {
  padding: 0rem 0 0.01rem; /* 🔽 THIS controls big vertical gap */
  text-align: center;
}

.menu-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Title */
.menu-header-title {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  color: var(--gold);
}

/* Search */
.menu-header-search {
  width: 100%;
  max-width: 265px;
  margin-bottom: 0.2rem; 
}

.menu-header-search input {
  width: 100%;
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  color: var(--gold);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.35);
}

.menu-header-search input::placeholder {
  color: rgba(200,168,107,0.6);
}

.menu-header-tabs {
  display: flex;
  justify-content: center;
  gap: 2.1rem;        
  margin-top: 0;     
  margin-bottom: 0;  
}



/* =========================================================
   MENU HEADER – GOLD TEXT COLOUR FIX
   ========================================================= */

/* Title */
.menu-header-title {
  color: var(--gold);
}

/* Drinks / Wine / Nibbles links */
.menu-header-tabs .menu-nav-link {
  color: var(--gold);
}

/* Hover / active feel */
.menu-header-tabs .menu-nav-link:hover {
  color: var(--gold);
  text-shadow: 0 0 6px rgba(200,168,107,0.35);
}

/* Search placeholder + input text */
.menu-header-search input {
  color: var(--gold);
}

.menu-header-search input::placeholder {
  color: rgba(200,168,107,0.6);
}


/* =========================================================
   MENU TABS – DRINKS / WINE / NIBBLES
   ========================================================= */

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.4rem 0 1rem;
}

/* Base tab style */
.menu-tabs .tab {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,168,107,0.35);
  color: var(--gold);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

/* Hover */
.menu-tabs .tab:hover {
  background: rgba(200,168,107,0.12);
  box-shadow: 0 0 10px rgba(200,168,107,0.25);
}

/* Active state */
.menu-tabs .tab.active {
  background: rgba(200,168,107,0.18);
  border-color: rgba(200,168,107,0.8);
  box-shadow: 0 0 14px rgba(200,168,107,0.35);
}

/* =========================================================
   MENU SECTION HEADINGS (TIGHTENED)
   ========================================================= */

.menu-block {
  margin-top: 0;          /* 🔥 remove unwanted gap above section */
  margin-bottom: 1.25rem; /* slightly tighter overall spacing */
}

.menu-block h2 {
  margin-top: 0.4rem;     /* controlled, elegant spacing from above */
  margin-bottom: 0.4rem;  /* tighter gap to tabs */
}


/* =========================================================
   LIVE MENU – LUXURY COLLAPSED CARDS (REFINED)
   ========================================================= */

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

/* =========================
   CARD
   ========================= */

.menu-item {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(20,15,14,0.96),
    rgba(12,9,8,0.96)
  );
  border: 1px solid rgba(200,168,107,0.22);
  border-radius: 18px;
  padding: 1.4rem 1.25rem 1.6rem;
  text-align: center;
  transition: 
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* Hover – subtle lift */
.menu-item:hover {
  border-color: rgba(200,168,107,0.55);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
  transform: translateY(-2px);
}

/* =========================
   NAME
   ========================= */

.menu-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0;
  line-height: 1.4;
}

/* =========================
   PRICE
   ========================= */

.menu-item-price {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(200,168,107,0.9);
}

/* =========================
   DESCRIPTION (COLLAPSED)
   ========================= */

.menu-item p {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.45s ease,
    opacity 0.25s ease;
}

/* =========================
   EXPAND CONTROL
   ========================= */

.menu-item::after {
  content: "+ Details";
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200,168,107,0.7);
  cursor: pointer;
  transition: color 0.25s ease;
}

.menu-item:hover::after {
  color: rgba(200,168,107,1);
}

/* =========================
   EXPANDED STATE
   ========================= */

.menu-item:focus-within p,
.menu-item:active p {
  max-height: 300px; /* allows long cocktail descriptions */
  opacity: 1;
}

.menu-item:focus-within::after,
.menu-item:active::after {
  content: "− Close";
  color: rgba(200,168,107,1);
}



/* =========================================================
   MOBILE TAB CAROUSEL – COMPACT & CLEAN
   ========================================================= */

@media (max-width: 768px) {

  /* Horizontal scroll container */
  .menu-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin: 0.5rem 0 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem 0;
    scroll-snap-type: x proximity;
  }

  /* Hide scrollbar */
  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  /* Base tab */
  .menu-tabs .tab {
    flex: 0 0 auto;          /* prevent stretching */
    min-width: unset;       /* 🔴 CRITICAL FIX */
    width: auto;            /* 🔴 CRITICAL FIX */
    padding: 0.4rem 0.85rem;
    font-size: 0.7rem;
    line-height: 1;
    border-radius: 999px;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  /* Primary tabs (Cocktails / Beer etc) */
  .primary-tabs .tab {
    font-size: 0.75rem;
    padding: 0.45rem 1rem;
  }

  /* Secondary filters (Gin / Vodka etc) */
  .secondary-tabs .tab {
    font-size: 0.65rem;
    padding: 0.35rem 0.85rem;
    opacity: 0.9;
  }
}





/* =========================================================
   14D. MENU GROUP (SECTION HEADERS)
   ========================================================= */

.menu-group {
  margin-bottom: 3rem;
}

.menu-group h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.menu-group .divider {
  margin-bottom: 1.25rem;
}


/* =========================================================
   14E. MENU LIST (REFINED MOBILE)
   ========================================================= */

.menu-list {
  width: 100%;
}

.menu-list li {
  gap: 1rem;
}

.menu-list li span:first-child {
  display: flex;
  flex-direction: column;
}

.menu-list li small {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.15rem;
}


/* =========================================================
   14F. COLLAPSIBLE SECTIONS (OPTIONAL – MOBILE)
   ========================================================= */

.menu-collapsible {
  cursor: pointer;
}

.menu-collapsible::after {
  content: "＋";
  float: right;
  font-size: 1.2rem;
  opacity: 0.6;
}

.menu-collapsible.open::after {
  content: "−";
}

.menu-collapsible + .menu-list {
  display: none;
}

.menu-collapsible.open + .menu-list {
  display: block;
}

/* =========================================================
   MENU PREVIEW (HOMEPAGE) – CENTERED LIKE IMAGE 2
   ========================================================= */

.menu-preview {
  background-color: var(--wine-dark);
  text-align: center; /* centers title + button */
}

.menu-preview h2 {
  text-align: center;
}

.menu-preview .divider {
  margin: 0.75rem auto 2.5rem; /* center divider */
}

/* Grid layout */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin: 0 auto 3rem;
  max-width: 900px; /* keeps it tight like image 2 */
}

/* Individual items */
.menu-item {
  text-align: center; /* THIS is the key difference */
  padding: 0;
}

.menu-item h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.menu-item p {
  max-width: 260px;
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Button */
.menu-preview .btn {
  margin-top: 2rem;
}

/* =========================================================
   14G. DESKTOP ENHANCEMENTS
   ========================================================= */

@media (min-width: 900px) {
  .menu-nav-inner {
    justify-content: center;
  }

  .menu-tabs {
    justify-content: center;
  }

  .menu-search {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-list {
    max-width: 680px;
  }
}



/* =========================================================
   15. CONTACT PAGE
   ========================================================= */
.contact-section {
  background-color: var(--wine-soft);
}

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


/* =========================================================
   16. FOOTER
   ========================================================= */
.site-footer {
  background-color: var(--charcoal);
  padding: 4rem 0 2rem;
  color: #cfc6be;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--cream);
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  margin-top: 4rem;              /* more space from footer content */
  padding-top: 2rem;             /* breathing room above text */
  padding-bottom: 1rem;          /* breathing room below text */
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: #a89f98;
}

.footer-bottom p {
  letter-spacing: 0.5px;
}


/* =========================================================
   MOBILE FIRST – READABLE, TOUCH-FRIENDLY (KEEP)
   ========================================================= */
@media (max-width: 768px) {

  /* ---------- BASE RESET ---------- */
  html {
    font-size: 16px;
  }

  body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  /* ---------- GLOBAL SPACING ---------- */
  main,
  section {
    padding: 1.5rem 1.25rem;
    max-width: 100%;
  }

  section {
    margin-bottom: 3.5rem;
  }

  /* ---------- TYPOGRAPHY ---------- */
  h1 {
    font-size: 2.3rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  p {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  /* ---------- HERO ---------- */
  .hero {
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3.5rem;
    padding-top: 64px; /* fixed header offset */
  }

  .hero-content {
    max-width: 100%;
  }

  .hero p {
    font-size: 1.05rem;
    opacity: 0.95;
  }

  /* ---------- BUTTONS ---------- */
  .btn,
  button {
    width: 100%;
    padding: 1.1rem 1.25rem;
    font-size: 1.05rem;
    border-radius: 16px;
    text-align: center;
  }

}

/* =========================================================
   MOBILE HEADER – STACKED LOGO + MENU (ELEGANT)
   ========================================================= */
@media (max-width: 768px) {

  header.site-header {
    height: auto;                 /* allow stacking */
    padding: 0.75rem 1rem 0.5rem;
    flex-direction: column;
    align-items: center;
  }

  header.site-header .header-inner {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 0.5rem;
  }

  /* Logo – single line */
  .logo a,
  .site-logo a {
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  /* Navigation row */
  .main-nav {
    position: static;
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: none;
  }

  .main-nav ul {
    display: flex;
    gap: 1.1rem;
    padding: 0;
    margin: 0;
  }

  .main-nav li {
    margin: 0;
  }

  .main-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0;
    background: none;
  }

}


/* =========================
   SITE ANNOUNCEMENT BANNER
   ========================= */

.site-banner {
  display: none;
  background-color: var(--gold-soft);
  color: var(--charcoal);
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}


.event-hire {
  padding: 80px 0;
  background: #000;
  text-align: center;
}

.event-hire h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #fff;
}

.event-hire-text {
  max-width: 700px;
  margin: 30px auto;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
}

.home-menu {
  padding: 6rem 0;
  text-align: center;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}

.section-divider {
  display: block;
  width: 60px;
  height: 1px;
  background: #c9a45c;
  margin: 1rem auto 3rem;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.menu-col {
  padding: 2.5rem 2rem;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.02),
    rgba(0,0,0,0.15)
  );
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.menu-col h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.menu-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.menu-col.featured {
  border: 1px solid rgba(201,164,92,0.35);
}

.menu-cta {
  margin-top: 2rem;
}


/* =========================
   MOBILE MENU GRID (2 COL)
   ========================= */

@media (max-width: 768px) {

  /* Menu containers */
  #drinksMenu,
  #wineMenu,
  #nibblesMenu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Menu item cards */
  .menu-item {
    width: 100%;
    padding: 14px 12px;
  }

  .menu-item-name {
    font-size: 0.95rem;
    line-height: 1.2;
    text-align: center;
  }

  .menu-item-price {
    font-size: 0.85rem;
    margin-top: 6px;
    text-align: center;
  }

  .menu-item-desc {
    display: none; /* keeps mobile clean */
  }
}
