@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap');

:root {
  --bg: #060606;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(24, 23, 18, 0.88);
  --yellow: #ffd400;
  --yellow-soft: #fff0a3;
  --orange: #ff9800;
  --text: #f7f1d6;
  --muted: #d7ceb6;
  --border: rgba(255, 212, 0, 0.25);
  --glow: rgba(255, 212, 0, 0.46);
  --danger: #ff5364;
  --success: #00ff90;
  --info: #7dc7ff;
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 212, 0, 0.2), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(255, 152, 0, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 212, 0, 0.08), transparent 34%),
    linear-gradient(135deg, #040404 0%, #111007 52%, #100906 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 212, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 212, 0, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0.82) 100%);
  pointer-events: none;
  z-index: -1;
}

body.nav-open { overflow: hidden; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(5, 5, 4, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 18px 55px rgba(0,0,0,0.34);
}

.brand {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 900;
  text-decoration: none;
  color: var(--yellow);
  text-shadow: 0 0 22px var(--glow);
  letter-spacing: -0.04em;
}

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff6d1;
  opacity: 0.9;
  transition: 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  opacity: 1;
  text-shadow: 0 0 14px var(--glow);
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 212, 0, 0.1);
  color: var(--yellow);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: 82px;
  right: 5%;
  z-index: 60;
  display: none;
  width: min(340px, 90vw);
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(8, 8, 6, 0.96);
  box-shadow: 0 0 60px rgba(255, 212, 0, 0.18);
}
.mobile-nav.open { display: grid; gap: 8px; }
.mobile-nav a {
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}
.mobile-nav a:hover { background: rgba(255, 212, 0, 0.11); color: var(--yellow); }

.hero,
.page-hero,
.booking-top,
.admin-hero {
  position: relative;
  text-align: center;
}

.hero {
  min-height: calc(100vh - 82px);
  padding: clamp(80px, 10vw, 150px) 5% 80px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg-symbol {
  position: absolute;
  right: 8%;
  top: 25%;
  font-size: clamp(6rem, 14vw, 16rem);
  opacity: 0.055;
  filter: blur(1px);
  pointer-events: none;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--yellow);
  text-shadow: 0 0 16px var(--glow);
}

h1, h2, h3, p { margin-top: 0; }
.hero h1,
.page-hero h1,
.booking-top h1,
.admin-hero h1 {
  max-width: 11ch;
  margin: 0 auto 26px;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  font-weight: 900;
  background: linear-gradient(90deg, #fff4bb 0%, var(--yellow) 45%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(255, 212, 0, 0.25));
}

.hero-text,
.page-hero p,
.booking-top p,
.admin-hero p,
.section-heading p,
.muted {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.05rem;
}
.hero-text { max-width: 820px; margin: 0 auto; }

.hero-actions,
.cta-strip div,
.action-row,
.confirm-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  font-family: inherit;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #111;
  box-shadow: 0 0 32px rgba(255, 212, 0, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--yellow);
  border: 2px solid rgba(255, 212, 0, 0.75);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-danger {
  background: rgba(255, 83, 100, 0.14);
  color: #ffb8c0;
  border: 1px solid rgba(255, 83, 100, 0.35);
}
.btn:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 0 45px rgba(255, 212, 0, 0.4); }
.full-btn { width: 100%; }

.hero-status-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 16px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--border);
  color: var(--muted);
}
.hero-status-card strong {
  color: var(--success);
  text-shadow: 0 0 15px rgba(0,255,144,0.7);
}

.section-pad, .page-shell { padding: 72px 5%; }
.page-shell { max-width: 1500px; margin: 0 auto; }
.compact-hero { padding: 30px 0 36px; }
.compact-hero h1,
.booking-top h1,
.admin-hero h1 { font-size: clamp(3rem, 7vw, 7rem); }
.compact-hero h1 { max-width: 13ch; }
.compact-hero p { max-width: 900px; margin-inline: auto; }

.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.08);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--yellow);
  font-weight: 900;
  box-shadow: 0 0 24px rgba(255, 212, 0, 0.1);
}

.glass-panel,
.feature-card,
.menu-card,
.slot-card,
.booking-list-card,
.faq-item,
.rubric-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0,0,0,0.38), inset 0 0 0 1px rgba(255,255,255,0.035);
  backdrop-filter: blur(16px);
}

.epic-menu-cta { padding-top: 40px; }
.epic-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 70px);
  border-radius: 45px;
  border: 1px solid rgba(255, 212, 0, 0.38);
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 212, 0, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: 0 0 90px rgba(255, 212, 0, 0.16);
}
.epic-copy h2 {
  max-width: 850px;
  font-size: clamp(2.5rem, 6vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  color: var(--yellow);
  text-shadow: 0 0 30px rgba(255, 212, 0, 0.26);
}
.epic-copy p { color: var(--muted); line-height: 1.8; max-width: 650px; }
.epic-orbit {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border: 2px dashed rgba(255, 212, 0, 0.22);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.food-wheel {
  position: relative;
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  margin: auto;
  border-radius: 50%;
  border: 2px solid rgba(255, 212, 0, 0.32);
  box-shadow: 0 0 100px rgba(255, 212, 0, 0.18), inset 0 0 70px rgba(255, 212, 0, 0.08);
  animation: floaty 4s ease-in-out infinite;
}
.food-wheel::before {
  content: "🍽️";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(5rem, 11vw, 8rem);
  filter: drop-shadow(0 0 30px rgba(255, 212, 0, 0.45));
}
.food-wheel span {
  position: absolute;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255, 212, 0, 0.12);
  border: 1px solid rgba(255, 212, 0, 0.24);
  font-size: 2.6rem;
  box-shadow: 0 0 34px rgba(255, 212, 0, 0.14);
}
.food-wheel span:nth-child(1){ left: 50%; top: -30px; transform: translateX(-50%); }
.food-wheel span:nth-child(2){ right: -25px; top: 35%; }
.food-wheel span:nth-child(3){ right: 50px; bottom: -30px; }
.food-wheel span:nth-child(4){ left: 50px; bottom: -30px; }
.food-wheel span:nth-child(5){ left: -25px; top: 35%; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.section-heading { max-width: 900px; margin: 0 auto 42px; text-align: center; }
.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  color: var(--yellow);
  text-shadow: 0 0 24px rgba(255, 212, 0, 0.26);
}
.feature-grid, .rubric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card, .rubric-card { padding: 30px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.feature-card:hover, .rubric-card:hover { transform: translateY(-10px); box-shadow: 0 0 55px rgba(255, 212, 0, 0.26); }
.feature-icon { font-size: 2.2rem; }
.feature-card h3, .rubric-card h3 { color: var(--yellow); font-size: 1.35rem; }
.feature-card p, .rubric-card p { color: var(--muted); line-height: 1.75; }

.cta-strip {
  margin: 50px 5% 80px;
  padding: 50px 5%;
  text-align: center;
  border-radius: 40px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at 50% 20%, rgba(255,212,0,0.2), transparent 45%), rgba(255,255,255,0.055);
  box-shadow: 0 0 80px rgba(255, 212, 0, 0.18);
}
.cta-strip p { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 0; color: var(--yellow-soft); }
.site-footer { text-align: center; padding: 30px 5%; color: #bdb49a; }

.toolbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: end;
  padding: 22px;
  margin-bottom: 30px;
}
.toolbar .wide { grid-column: span 2; }
label { display: grid; gap: 8px; font-weight: 800; color: var(--yellow-soft); }
.input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 212, 0, 0.22);
  border-radius: 17px;
  background: rgba(0,0,0,0.24);
  color: var(--text);
  font: inherit;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.input:focus { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,212,0,0.09), 0 0 28px rgba(255,212,0,0.16); background: rgba(0,0,0,0.36); }
select.input option { color: #111; }
textarea.input { resize: vertical; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.menu-card { position: relative; overflow: hidden; min-height: 260px; padding: 28px; }
.menu-card::before {
  content: "";
  position: absolute;
  inset: -50% auto auto -50%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.12);
  filter: blur(10px);
}
.menu-emoji { font-size: 3rem; filter: drop-shadow(0 0 18px rgba(255,212,0,0.4)); }
.menu-card h3 { color: var(--yellow); font-size: 1.5rem; margin: 20px 0 10px; }
.menu-card p { color: var(--muted); line-height: 1.7; }
.menu-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 20px; font-weight: 900; }
.menu-price { color: white; font-size: 1.35rem; }
.category-chip, .status-chip {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 7px 12px; border-radius: 999px;
  background: rgba(255,212,0,0.1); border: 1px solid var(--border); color: var(--yellow);
  font-size: 0.8rem; font-weight: 900;
}

.booking-top { padding: 30px 0 28px; }
.reservation-filter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 12px 22px;
  border-radius: 999px;
  margin: 0 auto 28px;
  max-width: 1160px;
}
.reservation-filter label { padding: 10px 24px; border-right: 1px solid rgba(255,212,0,0.18); color: var(--muted); }
.reservation-filter label:last-child { border-right: 0; }
.reservation-filter .input { background: transparent; border: 0; min-height: 40px; padding: 0; border-radius: 0; color: var(--text); font-weight: 900; }
.booking-note { text-align: center; color: var(--yellow-soft); margin-bottom: 30px; }
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}
.slot-card {
  position: relative;
  min-height: 86px;
  padding: 16px;
  cursor: pointer;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,212,0,0.8), rgba(255,152,0,0.72));
  color: #111;
  border-color: rgba(255,212,0,0.6);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}
.slot-card:hover { transform: translateY(-5px); box-shadow: 0 0 40px rgba(255,212,0,0.35); }
.slot-card.selected { outline: 4px solid var(--success); filter: saturate(1.25); }
.slot-time { display: block; font-size: 1.3rem; font-weight: 900; }
.slot-type { display: block; font-size: 0.88rem; text-transform: uppercase; font-weight: 800; }
.slot-left { display: block; margin-top: 4px; font-size: 0.78rem; opacity: 0.8; font-weight: 800; }
.slot-card.disabled { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.38); cursor: not-allowed; }
.show-more { display: none; margin: 10px auto 40px; background: none; border: 0; color: var(--yellow); font-weight: 900; font: inherit; cursor: pointer; text-decoration: underline; }
.show-more.visible { display: block; }
.booking-layout { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 24px; align-items: start; }
.booking-form, .calculation-card { padding: 30px; }
.booking-form h2, .calculation-card h2, .confirmation-panel h2 { color: var(--yellow); font-size: 1.8rem; }
.selected-slot { padding: 14px 18px; border-radius: 18px; background: rgba(255,212,0,0.08); color: var(--yellow-soft); border: 1px solid var(--border); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.calc-lines { display: grid; gap: 12px; margin: 20px 0; }
.calc-line { display: flex; justify-content: space-between; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 10px; }
.calc-total { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px; border-radius: 22px; background: linear-gradient(135deg, rgba(255,212,0,0.16), rgba(255,152,0,0.1)); border: 1px solid var(--border); }
.calc-total strong { color: var(--yellow); font-size: 1.6rem; }
.confirmation-panel { padding: 30px; margin-top: 26px; }
.hidden { display: none !important; }

.booking-card-list { display: grid; gap: 20px; }
.booking-list-card { padding: 24px; }
.booking-list-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; flex-wrap: wrap; }
.booking-list-card h3 { color: var(--yellow); margin-bottom: 8px; }
.booking-details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; margin: 18px 0; }
.detail-pill { padding: 12px 14px; border-radius: 16px; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,212,0,0.12); color: var(--muted); }
.detail-pill strong { display: block; color: var(--text); }
.status-Pending { color: var(--yellow); }
.status-Confirmed { color: var(--success); }
.status-Cancelled { color: var(--danger); }
.status-Completed { color: var(--info); }

.auth-page { min-height: calc(100vh - 82px); display: grid; place-items: center; padding: 70px 5%; }
.auth-card { width: min(560px, 100%); padding: 38px; }
.auth-card h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: 0.9; letter-spacing: -0.07em; color: var(--yellow); }
.auth-form { display: grid; gap: 18px; margin-top: 24px; }
.demo-login, .form-message { color: var(--muted); }
.form-message.error { color: var(--danger); }
.form-message.success { color: var(--success); }

.admin-shell { max-width: 1700px; }
.admin-hero { display: flex; align-items: center; justify-content: space-between; gap: 24px; text-align: left; padding: 30px 0 36px; }
.admin-hero h1 { margin-left: 0; margin-right: 0; max-width: 11ch; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 24px; }
.stat-card { padding: 24px; }
.stat-card span { color: var(--muted); font-weight: 800; }
.stat-card strong { display: block; margin-top: 6px; font-size: clamp(2rem, 4vw, 3rem); color: var(--yellow); }
.admin-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; margin-bottom: 24px; }
.graph-panel, .database-panel { padding: 24px; }
.graph-panel h2, .database-panel h2 { color: var(--yellow); }
#bookingChart { width: 100%; max-width: 100%; height: auto; background: rgba(0,0,0,0.22); border-radius: 20px; border: 1px solid rgba(255,212,0,0.12); }
.db-list { display: grid; gap: 12px; color: var(--muted); line-height: 1.6; padding-left: 22px; }
.table-wrap { overflow-x: auto; padding: 12px; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 900px; }
.admin-table th, .admin-table td { padding: 16px 14px; border-bottom: 1px solid rgba(255,212,0,0.12); text-align: left; }
.admin-table th { color: var(--yellow); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.admin-table td { color: var(--muted); }
.table-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.table-actions .btn { min-height: 38px; padding: 8px 12px; font-size: 0.82rem; }
.admin-status-select { min-height: 38px; border-radius: 12px; background: rgba(0,0,0,0.35); color: var(--text); border: 1px solid var(--border); padding: 8px; }

.faq-list { display: grid; gap: 18px; max-width: 1150px; margin: 0 auto; }
.faq-item { overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px; border: 0; background: transparent; color: var(--yellow); font: inherit; font-weight: 900; font-size: 1.08rem; cursor: pointer; text-align: left; }
.faq-question span:last-child { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,212,0,0.14); border: 1px solid var(--border); flex: 0 0 auto; }
.faq-answer { display: none; padding: 0 24px 24px; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

.calculation-explain { padding: 30px; margin-top: 24px; text-align: center; }
.calculation-explain h2 { color: var(--yellow); }

.empty-state { text-align: center; padding: 38px; color: var(--muted); border: 1px dashed var(--border); border-radius: var(--radius); }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .burger { display: inline-grid; place-items: center; }
  .booking-layout, .admin-grid, .epic-card { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .toolbar .wide { grid-column: auto; }
}

@media (max-width: 760px) {
  .site-header { height: 74px; padding: 0 4%; }
  .mobile-nav { top: 74px; right: 4%; }
  .section-pad, .page-shell { padding: 50px 4%; }
  .hero { min-height: calc(100vh - 74px); }
  .hero h1 { font-size: clamp(3.5rem, 19vw, 6rem); }
  .compact-hero h1, .booking-top h1, .admin-hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .reservation-filter { border-radius: 30px; grid-template-columns: 1fr; padding: 10px; }
  .reservation-filter label { border-right: 0; border-bottom: 1px solid rgba(255,212,0,0.12); }
  .reservation-filter label:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .admin-hero { flex-direction: column; align-items: flex-start; }
  .food-wheel { transform: scale(0.78); transform-origin: center; }
  .slot-grid { grid-template-columns: 1fr; }
}

@media print {
  .site-header, .mobile-nav, .toolbar, .btn, .back-button, .table-actions, .burger { display: none !important; }
  body { background: white !important; color: black !important; }
  body::before, body::after { display: none !important; }
  .glass-panel, .feature-card, .menu-card, .slot-card, .booking-list-card, .faq-item, .rubric-card {
    background: white !important; color: black !important; border: 1px solid #999 !important; box-shadow: none !important;
  }
  .page-shell { padding: 10px !important; max-width: none !important; }
  h1, h2, h3, .eyebrow, .brand { color: black !important; background: none !important; -webkit-text-fill-color: black !important; filter: none !important; text-shadow: none !important; }
  .admin-table th, .admin-table td { color: black !important; border-color: #ccc !important; }
}


/* Adjustments: bistro pricing, student discount and confirm booking modal */
.student-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(255, 212, 0, 0.08);
  border: 1px solid var(--border);
  color: var(--yellow-soft);
  font-weight: 800;
}

.student-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--yellow);
}

.form-hint {
  margin-top: 14px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
}

.confirm-modal {
  width: min(760px, 100%);
  padding: 34px;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 0 90px rgba(255, 212, 0, 0.25), 0 28px 80px rgba(0, 0, 0, 0.6);
}

.confirm-modal h2 {
  color: var(--yellow);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--yellow);
  font-size: 1.7rem;
  cursor: pointer;
}

.compact-details {
  margin-top: 22px;
}

.slot-card .slot-time {
  letter-spacing: 0.03em;
}

.booking-note {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 20px;
  border-radius: 20px;
  background: rgba(255, 212, 0, 0.07);
  border: 1px solid var(--border);
}

.admin-grid {
  align-items: stretch;
}
.admin-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.graph-panel canvas {
  width: 100%;
  max-width: 100%;
}


/* ONLINE ORDER PAGE */
.mini-actions {
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.order-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.order-item-card {
  min-height: 230px;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,212,0,0.05));
  border: 1px solid var(--border);
  box-shadow: 0 22px 70px rgba(0,0,0,0.28), 0 0 30px rgba(255,212,0,0.08);
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.order-item-card::before {
  content: "";
  position: absolute;
  inset: -80% -40%;
  background: conic-gradient(from 180deg, transparent, rgba(255,212,0,0.22), transparent 30%);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: borderSpin 7s linear infinite;
}

.order-item-card:hover::before { opacity: 1; }

.order-item-card > * {
  position: relative;
  z-index: 1;
}

.order-item-card h3 {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 1.12rem;
}

.order-item-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 14px;
  font-size: 0.92rem;
}

.qty-control {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,212,0,0.18);
}

.qty-control strong {
  color: var(--yellow);
  font-size: 1.2rem;
}

.qty-btn,
.cart-remove {
  border: none;
  cursor: pointer;
  font-weight: 900;
}

.qty-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #080806;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 0 20px rgba(255,212,0,0.28);
}

.order-cart {
  position: sticky;
  top: 102px;
  padding: 26px;
  border-radius: var(--radius);
}

.order-cart h2 {
  margin-top: 0;
  color: var(--yellow);
}

.cart-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  max-height: 340px;
  overflow: auto;
  padding-right: 4px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,212,0,0.13);
}

.cart-item span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-top: 4px;
}

.cart-remove {
  display: block;
  margin-top: 6px;
  padding: 0;
  background: transparent;
  color: var(--danger);
  font-size: 0.78rem;
}

.order-form {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,212,0,0.16);
}

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

.small-empty {
  padding: 14px !important;
  font-size: 0.88rem;
}

.order-modal-items {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  max-height: 210px;
  overflow: auto;
}

.order-modal-items div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,0.24);
  border: 1px solid rgba(255,212,0,0.12);
}

.table-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.table-section-head h2 {
  margin: 0 0 6px;
  color: var(--yellow);
}

@media (max-width: 980px) {
  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-cart {
    position: static;
  }
}

@media (max-width: 640px) {
  .order-item-card {
    grid-template-columns: 1fr;
  }

  .mini-actions {
    justify-content: center;
  }
}

@keyframes borderSpin { to { transform: rotate(360deg); } }


/* ORDER PAGE PRICE ALIGNMENT FIX */
.order-menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

.order-item-card {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
}

.order-item-card .menu-emoji {
  font-size: 2.6rem;
}

.order-item-card > div:not(.menu-emoji):not(.qty-control) {
  min-width: 0;
}

.order-item-card .menu-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.order-item-card .category-chip {
  justify-self: start;
  max-width: 100%;
  white-space: nowrap;
}

.order-item-card .menu-price {
  justify-self: end;
  white-space: nowrap;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1;
}

@media (max-width: 720px) {
  .order-menu-grid {
    grid-template-columns: 1fr;
  }

  .order-item-card {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 22px;
  }

  .order-item-card .menu-meta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .order-item-card .menu-price {
    justify-self: start;
  }
}


/* ROLE-BASED AUTH NAVIGATION */
.nav-user {
  color: var(--yellow);
  font-weight: 900;
  padding: 8px 10px;
  border: 1px solid rgba(255, 212, 0, 0.24);
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.08);
}

.nav-logout {
  border: 1px solid rgba(255, 212, 0, 0.32);
  background: rgba(255, 212, 0, 0.08);
  color: var(--text);
  font-family: inherit;
  font-weight: 900;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.nav-logout:hover {
  color: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 212, 0, 0.22);
}

.auth-links a {
  color: var(--yellow);
  font-weight: 900;
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

.optional-text {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.mobile-nav .nav-user,
.mobile-nav .nav-logout {
  width: 100%;
  text-align: left;
}


/* WELCOME GUEST / ACCOUNT LANDING PAGE */
.welcome-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 5%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 212, 0, 0.2), transparent 28%),
    radial-gradient(circle at 88% 26%, rgba(255, 132, 0, 0.16), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(255, 212, 0, 0.10), transparent 36%);
}

.welcome-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 212, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 212, 0, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.welcome-card {
  width: min(1040px, 100%);
  text-align: center;
  padding: clamp(34px, 6vw, 76px);
  border-radius: 42px;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 75px rgba(255, 212, 0, 0.18),
    0 32px 110px rgba(0, 0, 0, 0.45);
}

.welcome-card h1 {
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 7.8rem);
  line-height: 0.92;
  background: linear-gradient(90deg, #fff7d6, #ffd400, #ff8a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(255, 212, 0, 0.28));
}

.welcome-subtitle {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.welcome-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.welcome-choice {
  min-height: 230px;
  border-radius: 30px;
  padding: 32px;
  text-decoration: none;
  color: var(--text);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 0, 0.25);
  background: rgba(255, 255, 255, 0.065);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.welcome-choice::before {
  content: '';
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 180deg, transparent, rgba(255, 212, 0, 0.32), transparent 35%);
  opacity: 0;
  transition: opacity 0.28s ease;
  animation: borderSpin 7s linear infinite;
}

.welcome-choice:hover {
  transform: translateY(-10px) scale(1.025);
  border-color: #ffd400;
  box-shadow: 0 0 55px rgba(255, 212, 0, 0.38);
}

.welcome-choice:hover::before {
  opacity: 1;
}

.welcome-choice > * {
  position: relative;
  z-index: 1;
}

.primary-choice {
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.24), rgba(255, 132, 0, 0.16)),
    rgba(255, 255, 255, 0.06);
}

.account-choice {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 212, 0, 0.09)),
    rgba(255, 255, 255, 0.045);
}

.choice-icon {
  font-size: 3.1rem;
  filter: drop-shadow(0 0 20px rgba(255, 212, 0, 0.42));
}

.welcome-choice strong {
  color: #ffd400;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.welcome-choice small {
  color: #efe6c5;
  line-height: 1.65;
  max-width: 360px;
}

.welcome-secondary-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.welcome-note {
  margin: 30px auto 0;
  max-width: 760px;
  color: #cfc3a0;
  font-size: 0.94rem;
  line-height: 1.7;
}

.welcome-bg-icon {
  position: fixed;
  z-index: 1;
  font-size: clamp(4rem, 9vw, 9rem);
  opacity: 0.16;
  filter: blur(0.2px) drop-shadow(0 0 20px rgba(255, 212, 0, 0.35));
  animation: welcomeFloat 6s ease-in-out infinite;
  pointer-events: none;
}

.welcome-bg-icon-1 { left: 6%; top: 12%; animation-delay: 0s; }
.welcome-bg-icon-2 { right: 8%; top: 18%; animation-delay: 1.2s; }
.welcome-bg-icon-3 { left: 10%; bottom: 10%; animation-delay: 2.4s; }

@keyframes welcomeFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-22px) rotate(5deg); }
}

@media (max-width: 760px) {
  .welcome-card {
    padding: 34px 22px;
    border-radius: 30px;
  }

  .welcome-choice-grid {
    grid-template-columns: 1fr;
  }

  .welcome-choice {
    min-height: 205px;
    padding: 28px 22px;
  }
}


/* MY BOOKINGS PRIVACY NOTE */
.privacy-note {
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 212, 0, 0.18);
  border-radius: 18px;
  background: rgba(255, 212, 0, 0.055);
}


/* DATABASE-BASED SLOT AVAILABILITY */
.slot-card.disabled,
.slot-card:disabled {
  background: linear-gradient(135deg, rgba(40, 40, 40, 0.72), rgba(15, 15, 15, 0.9)) !important;
  color: rgba(255, 255, 255, 0.42) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  filter: grayscale(1) saturate(0.45);
  opacity: 0.72;
}

.slot-card.disabled:hover,
.slot-card:disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

.slot-card.disabled .slot-left,
.slot-card:disabled .slot-left {
  color: #ff9a9a;
  opacity: 1;
}


/* NAVBAR SCROLL PROGRESS BAR */
.site-header,
header,
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 212, 0, 0.10);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ffd400, #ff9d00);
  box-shadow: 0 0 16px rgba(255, 212, 0, 0.85);
  transition: width 0.08s linear;
}


/* REAL-TIME RESTAURANT STATUS */
.live-status-card {
  margin-top: 24px;
  width: fit-content;
  max-width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(255, 212, 0, 0.25);
  border-radius: 22px;
  background: rgba(255, 212, 0, 0.075);
  box-shadow: 0 0 26px rgba(255, 212, 0, 0.12);
  display: grid;
  gap: 4px;
}

.live-status-card span,
.opening-label,
[data-opening-label] {
  color: #cfc3a0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.live-status-card strong,
.restaurant-status,
[data-restaurant-status] {
  color: #ffd400;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
}

[data-restaurant-status].is-open,
.restaurant-status.is-open {
  color: #58ff9a;
  text-shadow: 0 0 18px rgba(88, 255, 154, 0.28);
}

[data-restaurant-status].is-closed,
.restaurant-status.is-closed {
  color: #ff8a8a;
  text-shadow: 0 0 18px rgba(255, 138, 138, 0.22);
}

.live-status-card small,
.restaurant-time,
[data-restaurant-time] {
  color: #efe6c5;
  line-height: 1.5;
}


/* HOME HERO EXISTING STATUS PILL - REAL TIME */
.hero-status-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-status-card small {
  flex-basis: 100%;
  color: #efe6c5;
  font-size: 0.82rem;
  line-height: 1.4;
  opacity: 0.9;
}

.hero-status-card [data-restaurant-status].is-open {
  color: #58ff9a;
  text-shadow: 0 0 15px rgba(88, 255, 154, 0.7);
}

.hero-status-card [data-restaurant-status].is-closed {
  color: #ff8a8a;
  text-shadow: 0 0 15px rgba(255, 138, 138, 0.55);
}


/* REGISTERED STUDENT AUTO-DISCOUNT NOTE */
.student-auto-note {
  border: 1px solid rgba(88, 255, 154, 0.28);
  background: rgba(88, 255, 154, 0.08);
  border-radius: 18px;
  padding: 16px 18px;
  display: grid;
  gap: 6px;
  color: #efe6c5;
  box-shadow: 0 0 24px rgba(88, 255, 154, 0.10);
}

.student-auto-note strong {
  color: #58ff9a;
  font-weight: 900;
}

.student-auto-note span {
  line-height: 1.55;
  color: #e9dfbf;
}


/* FORM FIELD HINT */
.field-hint {
  display: block;
  margin-top: 8px;
  color: #cfc3a0;
  font-size: 0.86rem;
  line-height: 1.45;
}


/* BOOKING CUSTOMER DETAILS EMAIL FIELD FIX */
.booking-form input[type="email"],
#customerEmail {
  min-height: 64px;
  height: 64px;
  resize: none;
}

.booking-form label:has(#customerEmail),
.booking-form label:has(input[type="email"]) {
  align-self: start;
}

.booking-form .student-auto-note {
  grid-column: 1 / -1;
}


/* ADMIN MENU MANAGER */
.admin-menu-manager {
  margin-bottom: 32px;
}

.admin-menu-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.admin-menu-form .full {
  grid-column: 1 / -1;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #efe6c5;
  font-weight: 800;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  accent-color: #ffd400;
}

.form-message {
  margin: 0;
  min-height: 24px;
  font-weight: 800;
}

.form-message.success {
  color: #58ff9a;
}

.form-message.warning {
  color: #ffd400;
}

.menu-card.is-unavailable {
  opacity: 0.72;
  filter: grayscale(0.6);
}

.availability-chip {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 138, 0.35);
  background: rgba(255, 138, 138, 0.12);
  color: #ffb6b6;
  font-weight: 900;
  font-size: 0.82rem;
}

@media (max-width: 760px) {
  .admin-menu-form {
    grid-template-columns: 1fr;
  }
}


/* DEMO PAYMENT PAGE */
.payment-shell {
  min-height: 100vh;
}

.payment-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.payment-summary-card,
.payment-loading-card,
.payment-error-card {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 34px;
}

.demo-payment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.demo-payment-form .full {
  grid-column: 1 / -1;
}

.payment-demo-warning,
.payment-success-box {
  border: 1px solid rgba(255, 212, 0, 0.22);
  background: rgba(255, 212, 0, 0.075);
  border-radius: 18px;
  padding: 16px 18px;
  color: #efe6c5;
  line-height: 1.6;
}

.payment-success-box,
.payment-success-card {
  border-color: rgba(88, 255, 154, 0.26);
  box-shadow: 0 0 36px rgba(88, 255, 154, 0.10);
}

.payment-success-box strong {
  color: #58ff9a;
}

@media (max-width: 760px) {
  .demo-payment-form {
    grid-template-columns: 1fr;
  }
}


/* SHOP PHOTO BACKGROUND - STRONG VISIBLE VERSION */
body {
  background-color: #050505 !important;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.48) 48%,
      rgba(0, 0, 0, 0.92) 100%
    ),
    url('../assets/ramlah.jpg') center top / cover no-repeat !important;
  filter: brightness(0.68) contrast(1.12) saturate(0.95);
  opacity: 0.82;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 212, 0, 0.12), transparent 34%),
    linear-gradient(to bottom,
      rgba(5, 5, 5, 0.08) 0%,
      rgba(5, 5, 5, 0.42) 60%,
      rgba(5, 5, 5, 0.98) 100%
    );
  pointer-events: none;
}

/* Home hero gets its own restaurant photo layer so it is visible behind the title */
.hero {
  isolation: isolate;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.58) 56%,
      rgba(0, 0, 0, 0.96) 100%
    ),
    url('../assets/ramlah.jpg') center 18% / cover no-repeat !important;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.22) 0%,
      rgba(0, 0, 0, 0.52) 58%,
      rgba(0, 0, 0, 0.98) 100%
    );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 212, 0, 0.10), transparent 36%),
    linear-gradient(rgba(255, 212, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 212, 0, 0.03) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  pointer-events: none;
}

/* Other pages also show the shop photo, softly darkened */
.page-hero,
.compact-hero,
.welcome-page {
  isolation: isolate;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.32) 0%,
      rgba(0, 0, 0, 0.62) 58%,
      rgba(0, 0, 0, 0.98) 100%
    ),
    url('../assets/ramlah.jpg') center top / cover no-repeat !important;
}

/* If old grid backgrounds appear above the photo, keep them transparent */
.hero-grid,
.bg-grid,
.background-grid {
  opacity: 0.28;
}

/* Keep text readable while showing photo */
.hero-content,
.page-hero > *,
.welcome-card,
.glass-panel {
  position: relative;
  z-index: 1;
}

.glass-panel,
.menu-card,
.order-item-card,
.booking-card,
.faq-item,
.auth-card,
.stat-card {
  background: rgba(14, 14, 10, 0.78) !important;
  backdrop-filter: blur(14px);
}


/* FORGOT PASSWORD PROTOTYPE */
.forgot-password-row {
  margin-top: 14px;
  text-align: center;
}

.link-button {
  border: 0;
  background: transparent;
  color: #ffd400;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.link-button:hover {
  color: #fff2a6;
}

.forgot-password-box {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 212, 0, 0.22);
  border-radius: 24px;
  background: rgba(255, 212, 0, 0.055);
}

.forgot-password-box h2 {
  margin: 0 0 8px;
  color: #ffd400;
}
