/* =====================================================
   THEME VARIABLES
   Global design tokens (colors, spacing, layout)
   ===================================================== */
:root {
  --color-accent: #c0392b;
  --color-bg: #fffaf0;
  --color-text: #2b2b2b;
  --color-muted: #6b6b6b;

  --dark-bg: #000;
  --dark-fg: #eef2f5;

  --card-bg: rgba(255, 255, 255, 0.03);

  --max-width: 1100px;
  --header-height: 56px;
}

/* =====================================================
   BASE RESET & TYPOGRAPHY
   ===================================================== */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}

/* =====================================================
   CONTAINER SYSTEM
   Centers content while allowing full-bleed sections
   ===================================================== */
.container {
  margin-inline: auto;
  padding: 2rem;
  background: #1f1f1f;
  color: var(--dark-fg);
}

/* Utility text style */
.muted-text {
  color: var(--color-muted);
}

.text-center {
  text-align: center;
}

/* =====================================================
   GLOBAL LINK STYLES
===================================================== */
a {
  text-decoration: none;      /* remove underline */
  color: inherit;             /* inherit parent color */
  transition: color 0.2s ease;
}

a:visited {
  color: inherit;             /* prevent purple links */
}

a:hover,
a:focus {
  color: var(--color-accent); /* optional hover color */
  text-decoration: none;
}

/* ============================================
   Preview Banner 
   ============================================ */

.amd-preview-toolbar { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(40,31,169,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.15); padding: 14px 24px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; z-index: 999999; box-shadow: 0 -10px 30px rgba(0,0,0,0.15); }
.amd-toolbar-inner { max-width: 1600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 14px; }
.amd-toolbar-meta { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.amd-pulse-indicator { width: 8px; height: 8px; background: #00ffaa; border-radius: 50%; box-shadow: 0 0 10px #00ffaa; animation: amdPulse 2s infinite; }
.amd-toolbar-text, .amd-toolbar-credit { color: rgba(255,255,255,0.8); font-size: 0.8rem; margin: 0; letter-spacing: 0.02em; }
.amd-toolbar-text strong, .amd-toolbar-credit strong { color: #ffffff; font-weight: 600; }
.amd-toolbar-divider { display: none; color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.amd-toolbar-btn { display: inline-flex; align-items: center; gap: 8px; background: #ffffff; color: rgb(40,31,169); text-decoration: none; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 8px 20px; border-radius: 2px; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 2px 8px rgba(0,0,0,0.1); white-space: nowrap; }
.amd-toolbar-btn:hover { background: rgba(255,255,255,0.1); color: #ffffff; border-color: #ffffff; box-shadow: none; transform: translateY(-1px); }
@keyframes amdPulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0,255,170,0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0,255,170,0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0,255,170,0); } }
@media (min-width: 768px) { .amd-toolbar-inner { flex-direction: row; gap: 24px; } .amd-toolbar-meta { flex-direction: row; text-align: left; gap: 12px; } .amd-toolbar-divider { display: inline; } }

/* =====================================================
   HEADER / BRAND BAR + HERO VIDEO + MOBILE MENU
===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 70px;
  z-index: 300;               /* above video, below menu overlay */
  background: transparent;    /* fully transparent initially */
  color: #fff;
  transition: background 0.4s ease, color 0.4s ease;
  display: flex;
  align-items: center;
}

/* Background change on scroll */
.site-header.scrolled {
  background: #000000;
}

/* ---------------- Header Layout ---------------- */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
  white-space: nowrap;
  background: transparent; /* prevent white */
}

/* ---------------- Brand ---------------- */
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
}

.brand-name {
  font-weight: 800;
  color: inherit;
}

/* Brand + Social container */
.brand-social {
  display: flex;
  align-items: center;
  gap: 1rem; /* space between brand and social icons */
}

/* ---------------- Header Actions (RIGHT) ---------------- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: transparent;
}

/* ---------------- Social Icons ---------------- */
.social-links {
  display: flex;
  gap: 0.75rem;         /* slightly tighter spacing between icons */
  align-items: center;
  margin-left: 1rem;    /* moves the icons closer to the brand/logo */
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;           /* smaller icons */
  height: 18px;
  color: #fff;
  opacity: 0.85;
  background: transparent;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Optional: if using SVG icons */
.social-links svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ---------------- Mobile Menu Button ---------------- */
.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* =====================================================
   MOBILE MENU OVERLAY
===================================================== */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 40vw;
  max-width: 300px;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 310; /* above header */
}

.menu-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}

.menu-links a {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.menu-links a:hover {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.03);
}

.menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 315;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 305; /* below menu overlay but above video */
}

.menu-open .menu-overlay {
  transform: translateX(0);
}

.menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
}

.desktop-nav {
  display: none; /* hidden by default for mobile */
}

/* =====================================================
   HERO VIDEO + MOBILE MENU OVERLAY
   ===================================================== */
.hero-video {
  position: relative;
  z-index: 1; /* behind header and menu */
  height: 60vh;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video controls */
.video-controls-bottom {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  z-index: 320; /* above header and menu overlay */
}

.video-play-toggle,
.video-mute-toggle {
  background: rgba(0,0,0,0.45);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.video-play-toggle:hover,
.video-mute-toggle:hover,
.video-play-toggle:focus,
.video-mute-toggle:focus {
  transform: scale(1.1);
  opacity: 1;
  outline: none;
}

/* ---------------------------------------------
   MOBILE MENU OVERLAY (Right Drawer)
--------------------------------------------- */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 30vw;
  max-width: 300px;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 310; /* above header */
}

/* Links stacked vertically inside menu */
.menu-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}

.menu-links a {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.menu-links a:hover {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.03);
}

/* Close button top-right */
.menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 315;
}

/* Menu backdrop (click to close) */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 305; /* below menu overlay but above video */
}

/* Open state classes */
.menu-open .menu-overlay {
  transform: translateX(0);
}

.menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
}

/* =====================================================
   HERO VIDEO
   ===================================================== */
.hero-video {
  position: relative;
  height: 40vh; 
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   Video Controls Buttons
   ===================================================== */
.video-play-toggle,
.video-mute-toggle {
  background: rgba(0,0,0,0.45);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.video-play-toggle:hover,
.video-mute-toggle:hover,
.video-play-toggle:focus,
.video-mute-toggle:focus {
  transform: scale(1.1);
  opacity: 1;
  outline: none;
}

.video-controls-bottom {
  position: absolute;       /* position over the video */
  bottom: 1rem;             /* distance from bottom */
  left: 20%;                /* center horizontally */
  transform: translateX(-50%);
  display: flex;            /* row layout for buttons */
  gap: 0.5rem;              /* space between buttons */
  background: rgba(0,0,0,0.45);  /* semi-transparent background */
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  z-index: 10;              /* make sure it’s above video */
}

/* =====================================================
   FULL-WIDTH IMAGE DIVIDER
   ===================================================== */
.image-divider {
  position: relative;               /* needed for overlay positioning */
  width: 100%;
  height: 50vh;                    /* fill % viewport*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;                     /* flex to center content */
  justify-content: center;           /* horizontal center */
  align-items: center;               /* vertical center */
  text-align: center;
  overflow: hidden;
}

/* Overlay content */
.image-overlay-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
}

/* Heading */
.image-overlay-content h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

/* Button */
.image-overlay-content .primary-btn {
  padding: 0.75rem 4rem;
  font-size: 1rem;
  background: var(--color-accent);
  color: #fff;
  border: 1px solid #fff;   /* <-- space after 'solid' */
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.image-overlay-content .primary-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* =====================================================
   Location Section
   ===================================================== */
.location-section {
  background: #1f1f1f;       /* dark background to match welcome section */
  padding: 1rem 2rem;        /* spacing like welcome section */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;                 /* space between icon and text */
}

/* Pindrop icon above address */
.location-section .location-icon {
  font-size: 1.5rem;
  color: var(--color-accent); /* accent color for icon */
}

/* Address text */
.location-section .location-text {
  color: #fff;               /* white text for readability */
  font-size: 1rem;        /* slightly larger */
  font-weight: 600;
  line-height: 1;
  max-width: 500px;          /* keeps text tidy */
}

/* =====================================================
   TEXT SECTION ENHANCEMENTS
   ===================================================== */

.section-intro {
  max-width: 600px;
  margin: 0.5rem auto 1.5rem;
}

.section-body {
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

/* Buttons */
.primary-btn,
.secondary-btn {
  margin-top: 1.75rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
}

.primary-btn {
  background: var(--color-accent);
  color: #fff;
  border: 1px solid #fff;   /* <-- space after 'solid' */
}

.secondary-btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.primary-btn:hover,
.secondary-btn:hover {
  opacity: 0.9;
}


/* =====================================================
   MAP SECTION
   Clickable map with cropped image
   ===================================================== */
.map-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
  background: #000;
}

.map-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.map-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
}

/* Hover overlay */
.map-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.map-link:hover .map-overlay {
  opacity: 1;
}

/* =====================================================
   INFO SECTION (Location / Hours / Find Us / Contact)
===================================================== */
.info-section {
  background: #000;         
  color: #fff;
  padding: 4rem 1rem;
}

/* ---------------- Info Grid Layout ---------------- */
.info-grid {
  display: grid;
  gap: 2rem;                 /* spacing between blocks */
  text-align: center;
  grid-template-columns: 1fr; /* single column on mobile */
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ---------------- Individual Info Blocks ---------------- */
.info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  width: 100%;               /* full width on mobile */
  box-sizing: border-box;
  word-wrap: break-word;     /* prevent overflow */
}

/* ---------------- Headings and Text ---------------- */
.info-block h3 {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.info-block p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ccc;
}

/* ---------------- Social Icons ---------------- */
.info-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;          /* slightly smaller gap for tight fit */
  margin-top: 0.25rem;
}

.info-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #fff;
  opacity: 0.85;
  background: transparent;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.info-social a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.info-social svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* =====================================================
   SECTION DIVIDER
   ===================================================== */
.section-divider {
  height: 12px;
  background: linear-gradient(
    to bottom,
    #000 0%,
    #fff 100%
  );
}

/* =====================================================
   FOOTER TAG
   ===================================================== */
.demo-footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.8rem;
}

/* =====================================================
   Catering Form Styles
   ===================================================== */
.catering-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.catering-form input,
.catering-form textarea {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  font-size: 1rem;
  resize: vertical;
}

.catering-form textarea {
  min-height: 100px;
}

.catering-form input::placeholder,
.catering-form textarea::placeholder {
  color: #aaa;
}

.catering-form .primary-btn {
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
}

.catering-form .primary-btn:hover {
  opacity: 0.9;
}

/* =====================================================
   Reservation Form Styles
   ===================================================== */
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.reservation-form input {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  font-size: 1rem;
}

.reservation-form input::placeholder {
  color: #aaa;
}

.reservation-form .primary-btn {
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
}

.reservation-form .primary-btn:hover {
  opacity: 0.9;
}

/* =====================================================
   MENU PAGE STYLES
   ===================================================== */
   /* Menu Page Cards */
.menu-page .menu-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.menu-card {
  background: #1f1f1f;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  text-align: left;
}

.menu-card h3 {
  margin-bottom: 0.5rem;
}

.menu-card .menu-desc {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.menu-card .menu-price {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1rem;
}

/* Responsive layout */
@media (min-width: 768px) {
  .menu-page .menu-items {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .menu-card {
    width: 250px;
  }
}

/* ==========================
   FULL-WIDTH IMAGE CAROUSEL
=========================== */
.carousel {
  position: relative;
  width: 100%;
  height: 30vh;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dots on image */
.carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background: #fff;
}
.carousel-dots button {
  border: none;
  background: rgba(255,255,255,0.6);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}

/* Drag image styling*/
.carousel-dots button.active {
  background: #fff;
}

.carousel-track {
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-slide img {
  user-select: none;
  pointer-events: none;
}

/* ==========================
   CHATBOT CSS
========================== */

/* Floating button */
#chatbot-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #2b50ab;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 9999;
}

/* Chat window */
#chatbot {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  max-height: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

#chatbot.open {
  display: flex;
}

/* Header */
.chatbot-header {
  background: #111;
  color: #fff;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* Messages */
.chatbot-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  font-size: 14px;
}

.user-message {
  background: #2b50ab;
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  margin-bottom: 8px;
  max-width: 80%;
  align-self: flex-end;
}

.bot-message {
  background: #f1f1f1;
  padding: 8px 10px;
  border-radius: 10px;
  margin-bottom: 8px;
  max-width: 80%;
}

/* Input area */
.chatbot-input {
  display: flex;
  border-top: 1px solid #ddd;
}

.chatbot-input textarea {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 14px;
  resize: none;
  outline: none;
  font-family: inherit;
}

.chatbot-input button {
  border: none;
  padding: 0 16px;
  background: #111;
  color: #fff;
  cursor: pointer;
}


/* ===============================
   RESPONSIVE / MEDIA QUERIES
   Organized: Mobile → Tablet → Desktop → Large → Short
================================ */

/* ===============================
   MOBILE / SMALL SCREENS
   max-width: 767px
================================ */
@media (max-width: 767px) {
  /* Info section: single column */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 100%;
  }
  .info-block {
    width: 100%;
  }

  /* Menu overlay adjustments */
  .menu-overlay {
    width: 60vw; /* full width for small devices */
    max-width: none;
  }
  .menu-links a {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }

  /* Hero / video adjustments */
  .hero-video {
    height: 40vh;
  }
}

/* ===============================
   TABLET / MID-SIZE SCREENS
   768px → 1023px
================================ */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Info section: 2 columns */
  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    justify-items: center;
    align-items: start;
  }
  .info-block {
    width: auto;
  }

  /* Menu page cards layout */
  .menu-page .menu-items {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .menu-card {
    width: 250px;
  }

  /* Hero/video adjustments */
  .hero-video {
    height: 50vh;
  }

  /* Video controls */
  .video-controls-bottom {
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    gap: 0.8rem;
    padding: 0.5rem 0.75rem;
  }

  /* Image divider height */
  .image-divider {
    height: 60vh;
  }
}

/* ===============================
   DESKTOP / LARGE TABLETS / iPad Pro Landscape
   1024px → 1439px
================================ */
@media (min-width: 1024px) {
  /* Desktop nav */
  .desktop-nav {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: transparent;
  }
  .desktop-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity 0.2s ease;
  }
  .desktop-nav a:hover {
    opacity: 1;
  }

  /* Hide mobile menu toggle & overlay */
  .menu-toggle {
    display: none;
  }
  .menu-overlay,
  .menu-backdrop {
    display: none !important;
  }

  /* Header layout */
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
  }

  /* Info section: 4 columns */
  .info-grid {
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    justify-items: center;
    align-items: start;
    gap: 1.5rem;
    max-width: 1200px;
    text-align: left;
  }
  .info-block {
    width: auto;
  }
  .info-social {
    justify-content: flex-start;
  }

  /* Hero / video */
  .hero-video {
    height: 90vh;
  }
  .video-controls-bottom {
    bottom: 2rem;
    left: 10%;
    gap: 1rem;
    padding: 0.5rem 0.75rem;
  }

  /* Image divider height */
  .image-divider {
    height: 100vh;
  }

  /* Menu page cards */
  .menu-page .menu-items {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .menu-card {
    width: 250px;
  }
  .carousel {
  position: relative;
  height: 60vh;
}
}

/* ===============================
   LARGE / ULTRAWIDE SCREENS
   1440px +
================================ */
@media (min-width: 1440px) {
  /* Increase spacing for desktop nav */
  .desktop-nav {
    gap: 2.5rem;
  }

  /* Info section max width */
  .info-grid {
    max-width: 1400px;
    gap: 2rem;
  }

  /* Menu cards wider for large screens */
  .menu-card {
    width: 300px;
  }

  /* Hero/video height */
  .hero-video {
    height: 100vh;
  }

  /* Image divider height */
  .image-divider {
    height: 100vh;
  }
}

/* ===============================
   SHORT HEIGHT / FOLDABLES
   max-height: 700px
================================ */
@media (max-height: 700px) {
  .hero-video {
    height: 50vh;
  }
  .image-divider {
    height: 50vh;
  }
  .video-controls-bottom {
    bottom: 0.8rem;
    gap: 0.6rem;
    padding: 0.4rem 0.6rem;
  }
}