/* =========================================================
   King's Soul Food - Rebuilt Consistent Stylesheet
   Replace your current CSS with this file.
   Goals: clean structure, consistent heroes, consistent buttons,
   consistent padding, fewer overrides, easier editing.
========================================================= */

/* =====================
   1. DESIGN TOKENS
===================== */
:root {
  --brown-900: #2a1a12;
  --brown-800: #3b261c;
  --brown-700: #5b2419;
  --red-700: #7a2415;
  --red-600: #982818;
  --red-500: #b0371f;
  --gold-500: #c89b3c;
  --gold-300: #f8c66d;
  --gold-200: #ffd77b;
  --cream-100: #fffdf8;
  --cream-200: #fff8eb;
  --cream-300: #fff4df;
  --tan-300: #E3CFA8;
  --text: #2a1a12;
  --muted: #5f4a3d;
  --white: #ffffff;

  --font-main: Georgia, "Times New Roman", serif;

  --container: 1150px;
  --container-wide: 1300px;
  --section-padding: 80px 30px;
  --section-padding-mobile: 55px 18px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;

  --shadow-sm: 0 8px 20px rgba(0, 0, 0, .12);
  --shadow-md: 0 14px 35px rgba(0, 0, 0, .14);
  --shadow-lg: 0 18px 45px rgba(0, 0, 0, .18);

  --border-gold: 2px solid var(--gold-500);
  --border-soft: 2px solid rgba(200, 155, 60, .45);
}

/* =====================
   2. RESET / BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background:
    radial-gradient(circle at top, rgba(255, 244, 223, .55), transparent 35%),
    var(--tan-300);
  color: var(--text);
  line-height: 1.6;
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button:disabled,
.btn:disabled,
.btn.disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none !important;
}

.btn.loading {
  pointer-events: none;
}

/* =====================
   3. SHARED LAYOUT
===================== */
.section,
.menu-section,
.reviews-section,
.live-section,
.featured-section,
.host-section,
.staff-section,
.activity-section,
.upcoming-section,
.archive-section,
.catering-section,
.catering-cta,
.about-story,
.about-legacy,
.gallery-preview {
  max-width: var(--container);
  margin: 80px auto;
  padding: 0 30px;
  text-align: center;
}

.section {
  padding-top: 0;
  padding-bottom: 0;
}

.section h2,
.menu-section h2,
.reviews-section h2,
.live-section h2,
.featured-section h2,
.host-section h2,
.staff-section h2,
.activity-section h2,
.upcoming-section h2,
.archive-section h2,
.catering-card h2,
.catering-cta h2,
.about-story-card h2,
.about-legacy h2,
.gallery-preview h2 {
  color: var(--red-700);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: .5px;
}

.section p,
.live-section > p,
.featured-section > p,
.host-section > p,
.upcoming-section > p,
.archive-section > p,
.catering-cta p,
.gallery-preview p,
.about-hero p,
.menu-subtitle {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.eyebrow,
.eyebrow.dark {
  display: block;
  color: var(--gold-300);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.kings-home-hero .eyebrow{
    margin-bottom:26px;
}

.eyebrow.dark {
  color: var(--red-700);
}

/* =====================
   4. HEADER / NAV
===================== */
.site-banner {
  background: var(--red-500);
  color: var(--white);
  padding: 8px 16px;
  text-align: center;
  position: relative;
  z-index: 999;
  box-shadow: var(--shadow-sm);
}

.banner-content {
  max-width: var(--container-wide);
  min-height: 42px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.banner-badge,
.home-status-badge,
.status-badge,
.meal-tag {
  display: inline-block;
  background: var(--gold-300);
  color: var(--brown-900);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}

header {
  background: linear-gradient(to bottom, var(--brown-700), var(--brown-900));
  border-bottom: 4px solid var(--gold-500);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .35);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1600px;
  min-height: 92px;
  margin: 0 auto;
  padding: 18px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.logo {
  color: var(--gold-300);
  font-size: clamp(1.45rem, 2.1vw, 2.35rem);
  line-height: 1.08;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: .25s ease;
}

.logo:hover {
  color: var(--white);
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links li:not(:last-child)::after {
  content: "•";
  color: var(--gold-500);
  position: absolute;
  right: calc(clamp(12px, 2vw, 32px) / -1.55);
  top: 50%;
  transform: translateY(-50%);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f7deb0;
  font-size: clamp(.78rem, .95vw, 1.02rem);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .9px;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 12px;
  border: 1px solid transparent;
  transition: .25s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .active {
  color: var(--white);
  background: rgba(248, 198, 109, .13);
  border-color: rgba(248, 198, 109, .55);
  box-shadow: inset 0 -2px 0 var(--gold-300);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold-300);
  font-size: 2rem;
  cursor: pointer;
}

/* =====================
   5. BUTTON SYSTEM
   Primary = red / white / gold border
   Secondary = gold / dark text / gold border
   Third/Danger = red / white / gold border
===================== */
.btn,
button.btn,
a.btn,
.banner-btn,
.header-call-btn,
.menu-tab,
.video-fallback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 26px;
  margin: 0;
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  background: linear-gradient(#9d2c1b, var(--red-700));
  color: var(--white) !important;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .3px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), var(--shadow-sm);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn:hover,
.banner-btn:hover,
.header-call-btn:hover,
.menu-tab:hover,
.video-fallback-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(var(--red-600), var(--red-700));
  color: var(--white) !important;
}

.btn.secondary,
.banner-btn,
.header-call-btn,
.menu-tab.active {
  background: linear-gradient(var(--gold-200), var(--gold-300));
  color: var(--brown-900) !important;
  border: var(--border-gold);
}

.btn.secondary:hover,
.banner-btn:hover,
.header-call-btn:hover,
.menu-tab.active:hover {
  background: linear-gradient(#ffe09a, var(--gold-300));
  color: var(--brown-900) !important;
}

.btn.third,
.btn.danger,
#logoutBtn,
button.delete,
.delete-btn {
  background: linear-gradient(#9d2c1b, var(--red-700)) !important;
  color: var(--white) !important;
  border: var(--border-gold) !important;
}

.btn.third:hover,
.btn.danger:hover,
#logoutBtn:hover,
button.delete:hover,
.delete-btn:hover {
  background: linear-gradient(var(--red-600), var(--red-700)) !important;
  color: var(--white) !important;
}

.hero-buttons,
.review-buttons,
.upcoming-actions,
.menu-print,
.contact-overlap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.kings-home-hero .hero-buttons{
    justify-content:flex-start;
    margin-top:40px;
}

.card .btn,
.show-card .btn,
.upcoming-card .btn,
.staff-card .btn,
.contact-card .btn,
.contact-form .btn,
.host-panel .btn,
.host-login .btn,
.staff-form .btn,
.catering-cta .btn,
.about-legacy .btn {
  margin-top: 18px;
}

/* =====================
   6. HEROES
===================== */
.hero-content {
  max-width: 700px;
  color: var(--white);
}

.kings-home-hero {
  min-height: 82vh;
  background:
    linear-gradient(90deg, rgba(42, 26, 18, .92) 0%, rgba(42, 26, 18, .72) 45%, rgba(42, 26, 18, .35) 100%),
    url("photos/front.jpg");
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  padding: 90px 32px;
}

.kings-home-hero .hero-content,
.premium-hero .hero-content {
  max-width: 700px;
  margin-left: max(24px, calc((100vw - 1200px) / 2));
  padding: 45px;
  background: rgba(35, 20, 15, .76);
  border: 3px double var(--gold-300);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(4px);
}

.kings-home-hero h1,
.hero h1 {
  color: var(--gold-300);
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.kings-home-hero p,
.hero p {
  color: #f7e5c5;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 0;
}

.home-status-badge {
  margin-bottom: 16px;
}

.page-hero,
.menu-hero,
.about-hero {
  min-height: 320px;
  padding: 80px 24px;
  background:
    linear-gradient(rgba(58, 32, 22, .92), rgba(58, 32, 22, .92)),
    radial-gradient(circle, var(--gold-500) 0%, transparent 70%);
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-hero.events-hero {
  background:
    linear-gradient(rgba(58, 32, 22, .92), rgba(58, 32, 22, .92)),
    radial-gradient(circle, var(--gold-500) 0%, transparent 70%) !important;
}

.page-hero h1,
.menu-hero h1,
.about-hero h1 {
  color: var(--gold-300) !important;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.1;
  margin: 10px 0 14px;
}

.page-hero p,
.menu-hero p,
.about-hero p,
.menu-subtitle {
  color: #f7e5c5;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.premium-hero {
  min-height: 82vh;
  background:
    linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .75)),
    url("photos/Front.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 90px 32px;
}

/* =====================
   7. CARDS / GRIDS
===================== */
.cards,
.show-grid,
.upcoming-grid,
.staff-grid,
.notification-grid,
.about-values,
.catering-events,
.features,
.feature-row,
.menu-grid,
.reviews-grid,
.gallery-grid,
.photo-strip,
.kings-photo-strip,
.social-links,
.footer-socials {
  display: grid;
  gap: 24px;
}

.cards {
  max-width: var(--container-wide);
  margin: 40px auto 80px;
  padding: 0 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card,
.review-card,
.menu-item,
.contact-card,
.contact-form,
.featured-card,
.show-card,
.upcoming-card,
.staff-card,
.activity-card,
.notification-card,
.catering-card,
.about-story-card,
.about-value,
.day-card,
.contact-info-item,
.mini-info {
  background: var(--cream-200);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.card {
  overflow: hidden;
  text-align: left;
}

.card img,
.menu-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 4px solid var(--red-500);
}

.card h3,
.card p {
  padding-left: 22px;
  padding-right: 22px;
}

.card h3 {
  color: var(--red-700);
  font-size: 1.45rem;
  padding-top: 22px;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  padding-bottom: 24px;
}

.card-body {
  padding: 24px;
}

.card-body h3,
.card-body p {
  padding: 0;
}

.card-body a,
.show-card a,
.contact-info-item a,
.contact-card a {
  color: var(--red-700);
  font-weight: bold;
  text-decoration: none;
}

.card-body a:hover,
.show-card a:hover,
.contact-info-item a:hover,
.contact-card a:hover {
  color: var(--red-500);
}

.premium-cards .card {
  transition: transform .25s ease;
}

.premium-cards .card:hover {
  transform: translateY(-8px);
}

/* =====================
   8. HOME / EXPERIENCE / REVIEWS
===================== */
.photo-strip,
.kings-photo-strip {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 5px solid var(--brown-900);
  border-bottom: 5px solid var(--brown-900);
}

.photo-strip img,
.kings-photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
}

.intro-section {
  max-width: 850px;
}

.experience-section {
  max-width: var(--container-wide);
  margin: 80px auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 35px;
  align-items: center;
}

.experience-content,
.experience-card {
  padding: 45px;
  border-radius: var(--radius-lg);
}

.experience-content {
  background: var(--cream-300);
}

.experience-card,
.about-value,
.event-card {
  background: var(--brown-900);
  color: var(--white);
  border: 3px double var(--gold-300);
}

.experience-card h3,
.about-value h3,
.event-card h3 {
  color: var(--gold-300);
  margin-bottom: 14px;
}

.experience-card ul {
  list-style: none;
}

.experience-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 35px;
}

.review-card {
  padding: 30px;
}

.stars {
  color: var(--red-500);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.review-card p {
  font-style: italic;
  margin-bottom: 15px;
}

.review-card span {
  color: var(--red-700);
  font-weight: bold;
}

.cta-section {
  background:
    linear-gradient(rgba(42, 26, 18, .88), rgba(42, 26, 18, .88)),
    url("photos/counter.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 90px 24px;
}

.cta-section h2 {
  color: var(--gold-300);
}

/* =====================
   9. MENU PAGE
===================== */
.menu-status {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 35px;
  background: var(--cream-200);
  color: var(--brown-800);
  padding: 18px 28px;
  border-radius: 10px;
  border: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2dbd59;
  box-shadow: 0 0 10px #2dbd59;
}

.menu-controls {
  max-width: 1200px;
  margin: 55px auto;
  padding: 0 20px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 35px;
}

.menu-tab {
  min-width: 220px;
  background: linear-gradient(var(--brown-700), var(--brown-900));
}

.menu-search {
  max-width: 650px;
  margin: 0 auto 60px;
}

.menu-search input,
.contact-form input,
.contact-form textarea,
.host-login input,
.host-panel input,
.host-panel textarea,
.host-panel select,
.staff-form input,
.staff-form select,
.activity-section input,
.archive-section input {
  width: 100%;
  margin-bottom: 14px;
  padding: 15px 18px;
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  background: var(--cream-100);
  color: var(--text);
  font-size: 1rem;
}

textarea,
.host-panel textarea,
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.menu-search input:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.host-login input:focus,
.host-panel input:focus,
.host-panel textarea:focus,
.host-panel select:focus,
.staff-form input:focus,
.staff-form select:focus,
.activity-section input:focus,
.archive-section input:focus {
  outline: none;
  border-color: var(--red-700);
}

.restaurant-menu {
  max-width: var(--container);
  margin: 70px auto;
  padding: 0 30px;
}

.menu-category {
  margin-bottom: 70px;
}

.menu-category h2 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--red-700);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.menu-divider {
  width: 180px;
  height: 3px;
  background: var(--gold-500);
  margin: 0 auto 40px;
  border-radius: 10px;
}

.menu-row {
  padding: 24px 0;
  border-bottom: 1px solid rgba(122, 36, 21, .12);
}

.menu-header {
  display: flex;
  align-items: center;
  width: 100%;
}

.menu-name {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  color: #682114;
  font-size: 1.55rem;
  white-space: nowrap;
}

.menu-name::after {
  content: "";
  flex: 1 1 auto;
  min-width: 24px;
  margin: 0 12px;
  border-bottom: 2px dotted rgba(122, 36, 21, .45);
}

.menu-price {
  color: var(--red-700);
  font-size: 1.7rem;
  font-weight: bold;
  white-space: nowrap;
}

.menu-description {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.8;
}

.menu-note {
  text-align: center;
  margin-top: 25px;
  color: #777;
  font-style: italic;
}

.menu-grid {
  grid-template-columns: repeat(2, 1fr);
}

.menu-item {
  padding: 22px;
  text-align: left;
  border-left: 6px solid var(--red-500);
}

.menu-item img {
  height: 220px;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
  border-bottom: none;
}

.menu-item h3 {
  color: var(--red-700);
  margin-bottom: 8px;
}

/* =====================
   10. CONTACT / HOURS / SOCIAL
===================== */
.contact-section {
  max-width: var(--container);
  margin: 80px auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.contact-card,
.contact-form {
  padding: 34px;
  text-align: left;
}

.contact-card > .btn {
  display: flex;
  width: 100%;
}

.contact-info-list,
.contact-info-grid,
.hours-cards {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-info-item,
.mini-info,
.day-card {
  padding: 18px;
  border-left: 5px solid var(--red-500);
}

.contact-info-item h3,
.mini-info h3,
.day-card h4 {
  color: var(--red-700);
  margin-bottom: 8px;
}

.hours-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.hours-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(122, 36, 21, .15);
}

.hours-list li span:first-child {
  color: var(--brown-900);
  font-weight: bold;
}

.holiday-note {
  margin-top: 16px;
  text-align: center;
  background: rgba(176, 55, 31, .08);
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
}

.holiday-note strong {
  color: var(--red-700);
}

.social-links {
  grid-template-columns: repeat(3, 1fr);
  margin: 25px 0;
  gap: 12px;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  background: var(--brown-900);
  color: var(--gold-300) !important;
  text-decoration: none;
  font-weight: bold;
  border: var(--border-gold);
  border-radius: 10px;
  transition: .25s ease;
}

.social-links a:hover {
  background: var(--red-700);
  color: var(--white) !important;
  transform: translateY(-3px);
}

/* =====================
   11. ABOUT / CATERING / GALLERY
===================== */
.about-story-card,
.catering-card {
  padding: 55px;
  text-align: left;
}

.about-story-card p,
.about-legacy p,
.catering-card p,
.catering-cta p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.about-values,
.catering-events {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.about-value,
.event-card {
  padding: 34px 28px;
  text-align: center;
}

.catering-events {
  max-width: 1200px;
}

.gallery-preview {
  max-width: var(--container-wide);
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 45px;
}

.gallery-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.04) rotate(.3deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .28);
}

/* =====================
   12. EVENTS PAGE
===================== */
.video-box{
    position:relative;

    width:100%;
    aspect-ratio:16/9;

    overflow:hidden;

    border:2px solid #c89b3c;
    border-radius:22px;

    background:#3b2215;

    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.video-box iframe{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    border:none;
}

.external-live-box {
  width: 100%;
  min-height: 320px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.external-live-box p{
    margin:18px 0 34px;
    line-height:1.7;
    color:#f7e5c5;
}

.external-live-box h3 {
  color: var(--gold-300);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.viewer-count{
    display:flex;
    align-items:center;
    justify-content:center;

    width:fit-content;
    margin:24px auto;

    padding:14px 28px;

    background:#3b2215;

    border:2px solid #c89b3c;
    border-radius:999px;

    color:#ffd36f !important;

    font-size:1.2rem;
    font-weight:700;

    box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.viewer-count *{
    color:#ffd36f !important;
}

.show-grid,
.upcoming-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 35px;
}

.featured-card,
.show-card,
.upcoming-card,
.staff-card,
.activity-card,
.notification-card {
  padding: 32px;
  text-align: left;
}

.show-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.archive-section .show-card {
  min-height: auto;
}

.show-card h3,
.upcoming-card h3,
.featured-card h3,
.staff-card h3,
.activity-card strong {
  color: var(--red-700);
}

.show-card h3 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.show-card p,
.upcoming-card p,
.featured-card p,
.staff-card p,
.activity-card p {
  color: var(--brown-800);
  margin: 12px 0;
  line-height: 1.7;
}

.show-card .upcoming-actions,
.staff-card .upcoming-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.show-card .btn,
.upcoming-card .btn,
.staff-card .btn {
  width: 100%;
}

.host-section,
.staff-section,
.activity-section {
  width: calc(100% - 60px);
  padding: 70px 55px;
  background: var(--cream-200);
  border: 2px solid rgba(200, 155, 60, .35);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.host-login,
.host-panel,
.staff-form {
  max-width: 760px;
  margin: 35px auto 0;
  padding: 34px;
  background: var(--cream-100);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.host-panel {
  display: none;
}

.host-panel hr {
  border: none;
  height: 1px;
  background: rgba(122, 36, 21, .18);
  margin: 30px 0;
}

/* =====================
   13. FEATURES
===================== */
.features,
.feature-row {
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0;
}

.features div,
.feature-item {
  background: var(--cream-200);
  border: var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px;
  font-weight: bold;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.feature-item {
  border-left: none;
  border-top: 4px solid var(--red-500);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.feature-item h3 {
  color: var(--red-700);
  margin-bottom: 5px;
}

.feature-item p {
  color: var(--muted);
  font-size: .9rem;
}

/* =====================
   14. FOOTER
===================== */
footer {
  background: var(--brown-900);
  color: var(--white);
  text-align: center;
  padding: 80px 25px 35px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.footer-socials a {
  color: var(--gold-300);
  text-decoration: none;
  font-weight: bold;
  transition: .25s ease;
}

.footer-socials a:hover {
  color: var(--white);
}

/* =====================
   15. RESPONSIVE
===================== */
@media (max-width: 1200px) {
  .navbar {
    padding: 16px 28px;
    gap: 22px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links li:not(:last-child)::after {
    display: none;
  }

  .nav-links a {
    font-size: .82rem;
    padding: 8px 7px;
    letter-spacing: .6px;
  }
}

@media (max-width: 900px) {
  .navbar {
    position: relative;
    min-height: 78px;
    padding: 16px 20px;
  }

.logo{
    max-width:none;
    white-space:nowrap;
    font-size:clamp(.95rem,3vw,1.2rem);
    letter-spacing:.5px;
}

  .menu-toggle {
    display: block;
    z-index: 1002;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to bottom, var(--brown-700), var(--brown-900));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    border-top: 3px solid var(--gold-500);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li::after {
    display: none !important;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 17px 20px;
    font-size: .95rem;
    border: none;
    border-bottom: 1px solid rgba(248, 198, 109, .12);
  }

  .nav-links a:hover,
  .nav-links a.active {
    border: none;
    box-shadow: none;
  }

  .kings-home-hero,
  .premium-hero {
    min-height: 78vh;
    padding: 70px 20px;
    background-position: center;
  }

  .kings-home-hero .hero-content,
  .premium-hero .hero-content {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .section,
  .menu-section,
  .reviews-section,
  .live-section,
  .featured-section,
  .host-section,
  .staff-section,
  .activity-section,
  .upcoming-section,
  .archive-section,
  .catering-section,
  .catering-cta,
  .about-story,
  .about-legacy,
  .gallery-preview {
    margin: 55px auto;
    padding: 0 18px;
  }

/* Mobile - Experience Section */
.experience-content h2{
    font-size: clamp(2rem, 6vw, 2.35rem);
    line-height: 1.2;
    margin-bottom: 18px;
}

  .page-hero,
  .menu-hero,
  .about-hero {
    min-height: 260px;
    padding: 65px 18px;
  }

  .kings-home-hero {
    min-height: auto;
    padding: 90px 14px 45px;
    background:
      linear-gradient(rgba(28, 16, 12, .76), rgba(28, 16, 12, .76)),
      url("photos/Front.jpg");
    background-size: cover;
    background-position: center;
  }

  .kings-home-hero .hero-content,
  .premium-hero .hero-content {
    padding: 32px 22px;
  }

  .hero-buttons,
  .review-buttons,
  .upcoming-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn,
  .review-buttons .btn,
  .upcoming-actions .btn,
  .btn,
  .banner-btn,
  .header-call-btn {
    width: 100%;
  }

  .cards,
  .split,
  .menu-grid,
  .features,
  .feature-row,
  .contact-section,
  .experience-section,
  .about-values,
  .catering-events,
  .notification-grid {
    grid-template-columns: 1fr;
  }

  .contact-section,
  .experience-section {
    padding: 0 18px;
  }

  .photo-strip,
  .kings-photo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .photo-strip img,
  .kings-photo-strip img {
    height: 160px;
  }

  .reviews-grid {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding: 10px 18px 25px;
    scroll-snap-type: x mandatory;
  }

  .review-card {
    min-width: 260px;
    max-width: 280px;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .menu-tabs {
    flex-direction: column;
  }

  .menu-tab {
    width: 100%;
    min-width: 0;
  }

  .restaurant-menu {
    padding: 0 18px;
  }

  .menu-category h2 {
    font-size: 2rem;
  }

  .menu-name,
  .menu-price {
    font-size: 1.05rem;
  }

  .menu-name::after {
    min-width: 16px;
    margin: 0 8px;
    border-bottom-width: 1px;
  }

  .contact-card,
  .contact-form,
  .about-story-card,
  .catering-card,
  .experience-content,
  .experience-card {
    padding: 28px 22px;
  }

  .host-section,
  .staff-section,
  .activity-section {
    width: calc(100% - 28px);
    padding: 42px 18px;
    margin: 45px auto;
  }

  .host-panel,
  .host-login,
  .staff-form {
    padding: 24px 18px;
  }

  .show-card .upcoming-actions,
  .staff-card .upcoming-actions {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 260px;
  }

  .hours-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 600px) {
  .kings-home-hero {
    padding-top: 50px;
  }

  .kings-home-hero h1 {
    font-size: 2.25rem;
  }

  .menu-status {
    width: 100%;
    max-width: 360px;
    padding: 16px 18px;
    text-align: left;
  }
}

/* =====================
   16. PRINT MENU
===================== */
@media print {
  header,
  .site-banner,
  .menu-hero,
  .menu-controls,
  .section,
  footer {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .restaurant-menu {
    display: block !important;
    margin: 0;
    padding: 0;
    max-width: none;
  }

  #breakfastMenu,
  #dinnerMenu {
    display: block !important;
  }

  .menu-category {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* HOME INTRO + EXPERIENCE FIX */
.intro-section {
  margin: 65px auto 35px;
}

.intro-section h2 {
  max-width: 900px;
  margin: 0 auto;
}

.experience-section {
  margin: 45px auto 80px;
  align-items: stretch;
}

.experience-content,
.experience-card {
  height: 100%;
}

.experience-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-content .btn {
  margin-top: 22px;
}

/* ===== HOME EXPERIENCE SECTION TYPOGRAPHY ===== */

.experience-content .eyebrow{
    color: var(--red-700);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.experience-content h2{
    color: var(--red-700);
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.experience-content p{
    color: var(--brown-800);
    font-size: 1.2rem;
    line-height: 1.8;
}

.experience-card h3{
    font-size: clamp(2rem, 2vw, 2.45rem);
    white-space: nowrap;
}

.experience-card li{
    color: #f7e5c5;
    font-size: 1.15rem;
}

@media (max-width:768px){

    .experience-content h2{
        font-size:1.85rem;
        line-height:1.2;
    }

}

/* ABOUT PAGE CARD POLISH */
.about-values {
  max-width: 1050px;
  gap: 22px;
  margin: 55px auto 70px;
}

.about-value {
  padding: 26px 24px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-value h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.about-value p {
  font-size: 1rem;
  line-height: 1.65;
  max-width: 320px;
  margin: 0 auto;
}

@media (max-width:768px){

    .about-values{
        gap:18px;
        margin:40px auto 55px;
        padding:0 18px;
    }

    .about-value{
        padding:26px 22px;
        min-height:auto;
    }

}

/* MOBILE LIVE BANNER */
@media (max-width:768px){

    .site-banner{
        padding:10px 12px;
    }

    .banner-content{
        display:flex;
        justify-content:center;
        align-items:center;
        flex-wrap:nowrap;
        gap:10px;
        overflow-x:auto;
        white-space:nowrap;
        min-height:50px;
    }

    .banner-badge{
        flex-shrink:0;
        margin:0;
    }

    #bannerTitle{
        flex-shrink:0;
        font-size:.95rem;
        font-weight:700;
    }

    #bannerCountdown{
        flex-shrink:0;
        font-size:.9rem;
    }

    .banner-btn{
        width:auto;
        min-height:42px;
        padding:10px 18px;
        margin:0;
        flex-shrink:0;
    }

}

/* CATERING EVENT GRID */
.catering-events {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 50px auto 80px;
  padding: 0 24px;
}

.catering-events .event-card {
  width: 100%;
  min-height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .catering-events {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 420px;
    margin: 40px auto 60px;
    padding: 0 18px;
  }

  .catering-events .event-card {
    min-height: 115px;
    padding: 24px 18px;
  }
}

/* EVENTS PAGE POLISH */
.live-section,
.upcoming-section,
.archive-section {
  max-width: 1050px;
  margin: 65px auto;
}

.external-live-box {
  min-height: 360px;
}

.upcoming-card,
.show-card {
  min-height: auto;
  padding: 28px 32px;
}

.upcoming-card h3,
.show-card h3 {
  font-size: 1.65rem;
  margin-bottom: 14px;
}

.upcoming-card p,
.show-card p {
  margin: 8px 0;
  line-height: 1.55;
}

.upcoming-card .btn,
.show-card .btn {
  margin-top: 18px;
}

/* Mobile events */
@media (max-width: 768px) {
  .live-section,
  .upcoming-section,
  .archive-section {
    margin: 45px auto;
    padding: 0 16px;
  }

  .external-live-box {
    min-height: 260px;
    padding: 28px 18px;
  }

  .upcoming-card,
  .show-card {
    padding: 24px 20px;
  }

  .upcoming-card h3,
  .show-card h3 {
    font-size: 1.45rem;
  }
}

/* ==========================================
   ADMIN ACTION BUTTONS
========================================== */

.upcoming-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

/* Events action buttons */
.upcoming-actions .btn{
    flex: 0 1 auto;
    min-width: 170px;
    max-width: 200px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    font-size: 1rem;
    font-weight: 700;
}

.upcoming-card,
.show-card{
    width: 100%;
}

/* ==========================================
   EVENTS BUTTONS - MOBILE
========================================== */

@media (max-width:768px){

    .upcoming-actions{
        display:flex;
        flex-direction:column;
        gap:14px;
        width:100%;
        margin-top:22px;
    }

    .upcoming-actions .btn{
        width:100%;
        max-width:none;
        min-width:0;

        height:48px;

        display:flex;
        align-items:center;
        justify-content:center;

        padding:0 20px;
        font-size:1rem;
    }

}

/* ==========================================
   FEATURED SHOW CARD
========================================== */

.featured-section{
    max-width: 900px;
    margin: 70px auto;
    padding: 0 20px;
}

#featuredShowBox{
    max-width: 650px;
    margin: 0 auto;
}

.featured-card{
    max-width: 650px;
    margin: 0 auto;
    padding: 28px 32px;
}

.featured-card h3{
    font-size: 2rem;
    margin-bottom: 14px;
}

.featured-card p{
    margin: 8px 0;
    line-height: 1.6;
}

.featured-actions{
    justify-content: center;
    margin-top: 24px;
}

.featured-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 18px;
    border-radius:12px;

    background:linear-gradient(180deg,#f8d67a,#eeb94f);
    border:2px solid #c9972c;

    color:#3b2418;
    font-weight:700;
    font-size:.95rem;

    cursor:default;
    user-select:none;
}

/* ==========================================
   LIVE DASHBOARD
========================================== */

.staff-viewer-count{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;

    width:280px;
    margin:2rem auto;

    padding:22px 26px;

    border-radius:28px;

    background:#3b2215;
    border:2px solid #c89b3c;

    color:#ffd36f;

    box-shadow:0 10px 28px rgba(0,0,0,.22);
}

.dashboard-title{
    font-size:1.35rem;
    font-weight:800;
    color:#ffd36f;
    border-bottom:1px solid rgba(255,211,111,.25);
    padding-bottom:8px;
    width:100%;
    text-align:center;
}

.dashboard-stat{
    width:100%;
    text-align:center;
    font-size:1.05rem;
    font-weight:600;
    color:#f8e8b2;
}

.dashboard-stat strong{
    color:#ffd36f;
    font-size:1.15rem;
}

.video-box iframe{
    transform:scale(1.015);
    transform-origin:center;
}

.live-loading{
    opacity:0;
    transform:translateY(8px);
}

.live-section{
    transition:opacity .25s ease, transform .25s ease;
}

/* CONTACT PAGE CLEANUP */

/* Better spacing for call button */
.contact-hero .btn,
.contact-hero a.btn{
    margin-top:24px;
}

/* Hours cards: make breakfast and lunch/dinner easier to tell apart */
.meal-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:140px;
    margin:4px 10px 4px 0;
    padding:10px 18px;

    border-radius:999px;
    background:#ffd36f;
    color:#1d120c;

    font-size:.85rem;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.meal-tag.dinner{
    background:#8f2417;
    color:#fff6df;
    border:2px solid #c89b3c;
}

/* Fix text notification section */
.notification-section{
    max-width:1100px;
    margin:70px auto;
    padding:0 22px;
}

.notification-section h2,
.notification-section p,
.notification-section .eyebrow{
    text-align:center;
}

.notification-form{
    display:grid;
    grid-template-columns:1fr 1fr auto;
    gap:14px;
    max-width:900px;
    margin:28px auto 42px;
    align-items:center;
}

.notification-form input{
    width:100%;
    min-height:54px;
    padding:14px 18px;
    border-radius:14px;
    border:2px solid #d7b86a;
    background:#fff8e8;
    font-size:1rem;
}

.notification-form .btn{
    min-height:54px;
    margin:0;
    white-space:nowrap;
}

.notification-card{
    max-width:760px;
    margin:0 auto 26px;
    padding:32px;
    border-radius:24px;
    background:#fff8e8;
    border:2px solid #e4c875;
    box-shadow:0 16px 35px rgba(0,0,0,.12);
}

.notification-card .upcoming-actions{
    justify-content:center;
    margin-top:28px;
}

@media(max-width:768px){
    .notification-form{
        grid-template-columns:1fr;
    }

    .notification-form .btn{
        width:100%;
    }

    .notification-card{
        padding:24px;
    }

    .meal-tag{
        min-width:130px;
        margin-bottom:8px;
    }
}

.page-hero .header-call-btn{
    margin-top:30px;
}

/* MENU STATUS + TABS CLEANUP */

.status-dot.open{
    background:#22c55e !important;
    box-shadow:0 0 14px rgba(34,197,94,.45);
}

.status-dot.closed{
    background:#b32018 !important;
    box-shadow:0 0 14px rgba(179,32,24,.45);
}

#statusTitle{
    color:#2b1b12 !important;
    font-weight:800;
}

#statusText{
    color:#8f2417 !important;
    font-weight:800;
    opacity:1 !important;
}

.menu-tab{
    background:linear-gradient(180deg,#a92d1b,#7f1f14) !important;
    color:#fff6df !important;
    border:2px solid #c89b3c !important;
}

.menu-tab.active{
    background:linear-gradient(180deg,#ffd97d,#f7c65e) !important;
    color:#2b1b12 !important;
}

/* MOBILE NOTIFICATION CARD FIX */

@media(max-width:768px){
    .notification-section{
        margin:50px auto;
        padding:0 18px;
    }

    .notification-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:22px;
        max-width:430px;
        margin:0 auto;
    }

    .notification-card{
        width:100%;
        max-width:430px;
        padding:28px 24px;
        text-align:center;
    }

    .notification-card h3{
        justify-content:center;
        text-align:center;
    }

    .notification-card .upcoming-actions{
        display:grid;
        grid-template-columns:1fr;
        gap:14px;
        margin-top:26px;
    }

    .notification-card .btn{
        width:100%;
        min-width:0;
        margin:0;
    }
}

#videoBox {
  color: #f7e7c6;
}

#videoBox p,
#videoBox h3,
#videoBox strong {
  color: #f7e7c6;
}

#videoBox:has(.empty-show-message) {
  min-height: 220px;
  height: auto;
  aspect-ratio: auto;
}

.empty-show-message {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}

.empty-show-message p {
  margin: 0;
  color: #f7e7c6;
  font-size: 1.1rem;
}

.staff-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.staff-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.staff-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  padding: 28px;
  border-radius: 18px;
  background: #fff8eb;
  color: #2b1a12;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.staff-modal-card h2 {
  margin-top: 0;
}

.staff-modal-note {
  margin-bottom: 22px;
}

.staff-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

.staff-created-details {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.staff-created-details div {
  display: grid;
  gap: 4px;
}

.staff-created-details span {
  font-size: 0.85rem;
  opacity: 0.7;
}

.temporary-password-row {
  display: flex;
  gap: 10px;
  margin: 8px 0 12px;
}

.temporary-password-row input {
  flex: 1;
  min-width: 0;
  font-family: monospace;
  font-size: 1rem;
}

.copy-status {
  min-height: 24px;
  margin: 0 0 14px;
  font-weight: 600;
}

@media (max-width: 600px) {
  .temporary-password-row {
    flex-direction: column;
  }

  .staff-modal-card {
    padding: 24px 18px;
  }
}

.first-login-setup {
  padding: 72px 20px;
  background:
    radial-gradient(
      circle at top,
      rgba(255, 248, 232, 0.95),
      rgba(237, 215, 169, 0.9)
    );
}

.first-login-card {
  width: min(100%, 620px);
  margin: 0 auto;
  padding: 42px;
  border: 2px solid #c79a3b;
  border-radius: 22px;
  background: #fff8eb;
  box-shadow: 0 22px 55px rgba(79, 39, 20, 0.2);
  text-align: center;
}

.first-login-card h2 {
  margin: 8px 0 14px;
  color: #8d2d1f;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.first-login-description {
  max-width: 520px;
  margin: 0 auto 26px;
  color: #4b3328;
  line-height: 1.7;
}

.first-login-fields {
  display: grid;
  gap: 14px;
  margin-bottom: 12px;
}

.first-login-fields input {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 16px;
  border: 1px solid #c7a56a;
  border-radius: 10px;
  background: #fffdf8;
  color: #2b1a12;
  font-size: 1rem;
}

.first-login-fields input:focus {
  outline: 3px solid rgba(199, 154, 59, 0.25);
  border-color: #a66d17;
}

.password-requirement {
  margin: 6px 0 22px;
  color: #6d5548;
  font-size: 0.92rem;
}

.first-login-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.first-login-actions .btn {
  min-width: 160px;
}

@media (max-width: 600px) {
  .first-login-setup {
    padding: 36px 14px;
  }

  .first-login-card {
    padding: 28px 18px;
    border-radius: 16px;
  }

  .first-login-actions {
    flex-direction: column;
  }

  .first-login-actions .btn {
    width: 100%;
  }
}

.activity-log-box {
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;

  padding: 18px;
  margin-top: 20px;

  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;

  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

.activity-log-box::-webkit-scrollbar {
  width: 10px;
}

.activity-log-box::-webkit-scrollbar-track {
  background: #f3f3f3;
  border-radius: 20px;
}

.activity-log-box::-webkit-scrollbar-thumb {
  background: #b68a4a;
  border-radius: 20px;
}

.activity-log-box::-webkit-scrollbar-thumb:hover {
  background: #996f33;
}

/* ==========================================
   STAFF HORIZONTAL SCROLLER
========================================== */

.staff-search {
  display: block;
  width: min(100%, 680px);
  margin: 28px auto 8px;
  padding: 15px 18px;

  border: var(--border-gold);
  border-radius: var(--radius-sm);
  background: var(--cream-100);
  color: var(--text);

  font-size: 1rem;
}

.staff-search:focus {
  outline: none;
  border-color: var(--red-700);
  box-shadow: 0 0 0 3px rgba(122, 36, 21, 0.12);
}

.staff-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 20px;

  width: 100%;
  margin-top: 30px;
  padding: 8px 4px 22px;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;

  scrollbar-width: thin;
  scrollbar-color: var(--gold-500) #eadfcf;
}

.staff-card {
  flex: 0 0 320px;
  width: 320px;
  min-width: 320px;

  display: flex;
  flex-direction: column;

  scroll-snap-align: start;
}

.staff-card .upcoming-actions {
  margin-top: auto;
}

.staff-grid::-webkit-scrollbar {
  height: 12px;
}

.staff-grid::-webkit-scrollbar-track {
  background: #eadfcf;
  border-radius: 999px;
}

.staff-grid::-webkit-scrollbar-thumb {
  background: var(--gold-500);
  border-radius: 999px;
}

.staff-grid::-webkit-scrollbar-thumb:hover {
  background: #996f33;
}

@media (max-width: 600px) {
  .staff-search {
    width: 100%;
    margin-top: 22px;
  }

  .staff-grid {
    gap: 14px;
    padding-bottom: 18px;
  }

  .staff-card {
    flex-basis: 86vw;
    width: 86vw;
    min-width: 86vw;
  }
}

.role-badge {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    margin: 16px 0;

    padding: 10px 18px;

    background: linear-gradient(var(--gold-200), var(--gold-300));
    border-radius: 999px;

    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

/* ==========================================
   SCHEDULED + PAST SHOW HORIZONTAL SCROLLERS
========================================== */

.upcoming-grid,
.show-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 20px;

  width: 100%;
  max-width: none;
  margin: 35px auto 0;
  padding: 8px 4px 22px;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;

  scrollbar-width: thin;
  scrollbar-color: var(--gold-500) #eadfcf;
}

.upcoming-card,
.show-card {
  flex: 0 0 340px;
  width: 340px;
  min-width: 340px;

  display: flex;
  flex-direction: column;

  scroll-snap-align: start;
}

.upcoming-card .upcoming-actions,
.show-card .upcoming-actions {
  margin-top: auto;
}

.upcoming-grid::-webkit-scrollbar,
.show-grid::-webkit-scrollbar {
  height: 12px;
}

.upcoming-grid::-webkit-scrollbar-track,
.show-grid::-webkit-scrollbar-track {
  background: #eadfcf;
  border-radius: 999px;
}

.upcoming-grid::-webkit-scrollbar-thumb,
.show-grid::-webkit-scrollbar-thumb {
  background: var(--gold-500);
  border-radius: 999px;
}

.upcoming-grid::-webkit-scrollbar-thumb:hover,
.show-grid::-webkit-scrollbar-thumb:hover {
  background: #996f33;
}

@media (max-width: 600px) {
  .upcoming-grid,
  .show-grid {
    gap: 14px;
    padding-bottom: 18px;
  }

  .upcoming-card,
  .show-card {
    flex-basis: 86vw;
    width: 86vw;
    min-width: 86vw;
  }
}

.empty-grid-message {
    width: 100%;
    min-height: 140px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    font-size: 1.05rem;
    font-weight: 600;

    color: var(--text);
    opacity: .85;
}

/* ==========================================
   NOTIFICATION EMAIL HORIZONTAL SCROLLER
========================================== */

.notification-email-search {
  display: block;
  width: min(100%, 680px);
  margin: 28px auto 10px;
  padding: 15px 18px;

  border: var(--border-gold);
  border-radius: var(--radius-sm);
  background: var(--cream-100);
  color: var(--text);

  font-size: 1rem;
}

.notification-email-search:focus {
  outline: none;
  border-color: var(--red-700);
  box-shadow: 0 0 0 3px rgba(122, 36, 21, 0.12);
}

.notification-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 20px;

  width: 100%;
  max-width: none;
  margin: 30px auto 0;
  padding: 8px 4px 22px;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;

  scrollbar-width: thin;
  scrollbar-color: var(--gold-500) #eadfcf;
}

.notification-card {
  flex: 0 0 340px;
  width: 340px;
  min-width: 340px;

  display: flex;
  flex-direction: column;

  scroll-snap-align: start;
}

.notification-card .upcoming-actions {
  margin-top: auto;
}

.notification-grid::-webkit-scrollbar {
  height: 12px;
}

.notification-grid::-webkit-scrollbar-track {
  background: #eadfcf;
  border-radius: 999px;
}

.notification-grid::-webkit-scrollbar-thumb {
  background: var(--gold-500);
  border-radius: 999px;
}

.notification-grid::-webkit-scrollbar-thumb:hover {
  background: #996f33;
}

@media (max-width: 600px) {
  .notification-email-search {
    width: 100%;
  }

  .notification-grid {
    gap: 14px;
    padding-bottom: 18px;
  }

  .notification-card {
    flex-basis: 86vw;
    width: 86vw;
    min-width: 86vw;
  }
}

.menu-no-results {
  width: 100%;
  padding: 50px 20px;
  text-align: center;
}

.menu-no-results h2 {
  margin-bottom: 10px;
  color: var(--red-700);
}

.menu-no-results p {
  margin: 0;
}

.special-pricing-notice {
  margin-top: 26px;
  padding: 18px 20px;

  text-align: center;

  background: rgba(199, 154, 59, 0.14);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-sm);
}

.special-pricing-notice strong {
  display: block;
  margin-bottom: 7px;

  color: var(--red-700);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.special-pricing-notice p {
  margin: 0;
  line-height: 1.6;
}

.dinner-intro {
  margin-bottom: 30px;
  text-align: center;
}

.dinner-subgroup {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(199, 154, 59, 0.5);
}

.dinner-subgroup:first-of-type {
  margin-top: 18px;
}

.menu-subheading {
  margin: 0 0 10px;

  color: var(--red-700);
  text-align: center;
  font-size: 1.6rem;
}

.dinner-options {
  max-width: 760px;
  margin: 0 auto 18px;

  text-align: center;
  line-height: 1.7;
  font-weight: 600;
}

.dinner-includes-notice {
  max-width: 800px;
  margin: 24px auto 34px;
  padding: 20px 24px;

  text-align: center;

  background: rgba(199, 154, 59, 0.14);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-sm);
}

.dinner-includes-notice strong {
  display: block;
  margin-bottom: 8px;

  color: var(--red-700);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dinner-includes-notice p {
  margin: 0;
  line-height: 1.6;
  font-weight: 600;
}


.entree-choice-row {
    padding: 0;
    border: 0;
    background: transparent;
}

.entree-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.entree-image-choice {
    padding: 0;
    overflow: hidden;
    cursor: pointer;

    background: var(--cream-100);
    border: var(--border-gold);
    border-radius: 14px;

    color: inherit;
    font: inherit;

    transition: transform .2s ease, box-shadow .2s ease;
}

.entree-image-choice:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(64,30,18,.14);
}

.entree-image-choice img {
    display: block;
    width: 100%;
    height: 115px;
    object-fit: cover;
}

.entree-image-choice img.hidden-image {
    display: none;
}

.entree-image-choice span {
    display: block;
    min-height: 48px;
    padding: 12px 10px;

    border: 0;
    border-radius: 0;
    background: transparent;

    color: var(--brown-800);
    font-weight: 700;
    text-align: center;
}

@media (max-width:600px){

    .entree-choice-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

.dinner-item-note {
  margin: 0 auto 16px;
  text-align: center;
  color: var(--brown-800);
  font-weight: 600;
  font-style: italic;
}

.sunday-only-notice {
  max-width: 620px;
  margin: 0 auto 18px;
  padding: 12px 16px;

  text-align: center;
  font-weight: 800;

  color: var(--red-700);
  background: rgba(199, 154, 59, 0.15);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-sm);
}

.menu-price-disclaimer {
  max-width: 760px;
  margin: 44px auto 0;
  padding: 14px 18px;

  text-align: center;
  font-weight: 800;
  font-style: italic;

  color: var(--brown-800);
  border-top: 1px solid rgba(199, 154, 59, 0.65);
}

.drink-size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 9px;
}

.drink-size-list span {
  color: var(--brown-800);
  font-size: 0.95rem;
}

.drink-size-list strong {
  color: var(--red-700);
}

@media (max-width: 600px) {
  .drink-size-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.side-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.side-image-choice {
  padding: 0;
  overflow: hidden;
  cursor: pointer;

  background: var(--cream-100);
  border: var(--border-gold);
  border-radius: 14px;

  color: inherit;
  font: inherit;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.side-image-choice:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(64, 30, 18, 0.14);
}

.side-image-choice img {
  display: block;
  width: 100%;
  height: 115px;

  object-fit: cover;
}

.side-image-choice span {
  display: block;
  min-height: 48px;
  padding: 12px 10px;

  color: var(--brown-800);
  font-weight: 700;
  text-align: center;
}

@media (max-width: 600px) {
  .side-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .side-image-choice img {
    height: 95px;
  }
}

.side-image-choice:focus-visible{
    outline:3px solid var(--gold);
    outline-offset:4px;
}

/* =========================================================
   CATERING MENU PAGE
========================================================= */

.catering-hero .btn {
  margin-top: 20px;
}

.catering-menu-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 75px 0;
}

.catering-menu-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.catering-menu-heading h2 {
  margin: 8px 0 14px;
  color: var(--brown-800);
  font-size: clamp(2rem, 4vw, 3rem);
}

.catering-menu-heading p {
  line-height: 1.7;
}

.catering-menu-category {
  margin-bottom: 34px;
  padding: 30px;
  background: var(--cream-100);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.catering-category-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(179, 123, 29, 0.35);
}

.catering-category-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.catering-category-heading h3 {
  margin: 0;
  color: var(--red-700);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.catering-category-heading p {
  max-width: 480px;
  margin: 0;
  line-height: 1.6;
  text-align: right;
}

.catering-category-icon {
  font-size: 1.8rem;
}

.catering-special-notice {
  margin-bottom: 22px;
  padding: 16px 18px;
  background: #fff4d6;
  border: 1px solid rgba(179, 123, 29, 0.6);
  border-radius: 12px;
  color: var(--brown-800);
  text-align: center;
}

.catering-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 14px;
}

.catering-price-table {
  width: 100%;
  min-width: 710px;
  border-collapse: collapse;
  background: white;
}

.catering-price-table th,
.catering-price-table td {
  padding: 16px 14px;
  border: 1px solid rgba(179, 123, 29, 0.28);
  text-align: center;
}

.catering-price-table thead th {
  background: var(--brown-800);
  color: white;
  font-weight: 700;
}

.catering-price-table tbody th {
  color: var(--brown-800);
  text-align: left;
}

.catering-price-table tbody tr:nth-child(even) {
  background: rgba(246, 236, 217, 0.6);
}

.catering-price-table td {
  color: var(--red-700);
  font-weight: 800;
}

.catering-item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.catering-price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 120px;
  padding: 20px;
  background: white;
  border: 1px solid rgba(179, 123, 29, 0.45);
  border-radius: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.catering-price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(64, 30, 18, 0.12);
}

.catering-price-card h4 {
  margin: 0 0 7px;
  color: var(--brown-800);
  font-size: 1.15rem;
}

.catering-price-card p {
  margin: 0;
  color: var(--brown-700);
  font-size: 0.94rem;
  line-height: 1.5;
}

.catering-price-card > strong {
  flex: 0 0 auto;
  color: var(--red-700);
  font-size: 1.15rem;
  text-align: right;
}

.catering-order-information {
  margin-top: 45px;
  padding: 32px;
  background: var(--brown-800);
  border-radius: var(--radius-lg);
  color: white;
}

.catering-order-information h3 {
  margin: 0 0 25px;
  color: var(--gold-300);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.catering-information-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.catering-information-grid > div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
}

.catering-information-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-300);
}

.catering-information-grid p {
  margin: 0;
  line-height: 1.6;
}

.catering-price-disclaimer {
  margin: 24px 0 0;
  color: var(--brown-700);
  font-size: 0.93rem;
  font-style: italic;
  text-align: center;
}

.catering-events-section {
  padding: 70px 20px;
  background: rgba(246, 236, 217, 0.7);
}

.catering-events-section .catering-events {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.catering-events-section .event-card span {
  display: block;
  margin-bottom: 12px;
  font-size: 2rem;
}

@media (max-width: 800px) {
  .catering-menu-category {
    padding: 22px 16px;
  }

  .catering-category-heading {
    display: block;
  }

  .catering-category-heading > div {
    margin-bottom: 12px;
  }

  .catering-category-heading p {
    max-width: none;
    text-align: left;
  }

  .catering-item-grid,
  .catering-information-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .catering-menu-section {
    width: min(100% - 20px, 1180px);
    padding: 55px 0;
  }

  .catering-price-card {
    display: block;
    min-height: 0;
  }

  .catering-price-card > strong {
    display: block;
    margin-top: 14px;
    text-align: left;
  }

  .catering-order-information {
    padding: 24px 16px;
  }
}

/* =========================================================
   CATERING SEARCH, PRINT, AND HERO CONTROLS
========================================================= */

.catering-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.catering-menu-controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px;
  background: var(--cream-100);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.catering-search-box {
  flex: 1;
}

.catering-search-box label {
  display: block;
  margin-bottom: 8px;
  color: var(--brown-800);
  font-weight: 800;
}

.catering-search-box input {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid rgba(179, 123, 29, 0.65);
  border-radius: 10px;
  background: white;
  color: var(--brown-800);
  font: inherit;
}

.catering-search-box input:focus {
  border-color: var(--red-700);
  outline: 3px solid rgba(151, 45, 31, 0.12);
}

.catering-print-button {
  min-height: 48px;
  white-space: nowrap;
}

.catering-search-status {
  min-height: 24px;
  margin: 0 0 18px;
  color: var(--brown-700);
  font-weight: 700;
  text-align: center;
}

.catering-no-results {
  margin: 0 0 28px;
  padding: 30px 22px;
  background: var(--cream-100);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  text-align: center;
}

.catering-no-results h3 {
  margin: 0 0 10px;
  color: var(--red-700);
}

.catering-no-results p {
  max-width: 650px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .catering-menu-controls {
    display: block;
  }

  .catering-print-button {
    width: 100%;
    margin-top: 14px;
  }

  .catering-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 320px);
    margin-right: auto;
    margin-left: auto;
  }
}

/* =========================================================
   CATERING PRINT VIEW
========================================================= */

@media print {
  header,
  .site-banner,
  .catering-hero-actions,
  .catering-menu-controls,
  .catering-search-status,
  .catering-no-results,
  .catering-cta,
  footer {
    display: none !important;
  }

  body {
    background: white;
  }

  .about-hero {
    min-height: 0;
    padding: 20px 0;
    background: white !important;
    color: black !important;
  }

  .about-hero h1,
  .about-hero p,
  .about-hero .eyebrow {
    color: black !important;
  }

  .catering-menu-section {
    width: 100%;
    padding: 0;
  }

  .catering-menu-heading {
    margin-bottom: 20px;
  }

  .catering-menu-category,
  .catering-order-information,
  .catering-special-notice {
    break-inside: avoid;
    box-shadow: none;
  }

  .catering-menu-category {
    padding: 16px;
    border: 1px solid #999;
  }

  .catering-price-card {
    min-height: 0;
    padding: 10px;
    box-shadow: none;
  }

  .catering-order-information {
    background: white !important;
    border: 1px solid #999;
    color: black !important;
  }

  .catering-order-information h3,
  .catering-information-grid strong,
  .catering-order-information p {
    color: black !important;
  }

  .catering-information-grid > div {
    border: 1px solid #999;
  }

  .catering-price-table thead th {
    background: #eeeeee !important;
    color: black !important;
  }
}

.contact-turnstile {
  display: flex;
  justify-content: center;
  margin: 18px 0;
  min-height: 65px;
}

@media (max-width: 420px) {
  .contact-turnstile {
    justify-content: flex-start;
    overflow-x: auto;
  }
}

/* =========================================================
   EVENTS DASHBOARD POLISH
========================================================= */

.dashboard-toast {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 10000;
  width: min(380px, calc(100% - 32px));
  padding: 15px 18px;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.dashboard-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.dashboard-toast.success {
  background: #276738;
}

.dashboard-toast.error {
  background: #9b2c24;
}

.dashboard-toast.info {
  background: #694b22;
}

.dashboard-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 150px;
  padding: 28px;
  color: var(--brown-800);
  font-weight: 800;
  text-align: center;
}

.dashboard-spinner {
  width: 26px;
  height: 26px;
  border: 3px solid rgba(179, 123, 29, 0.25);
  border-top-color: var(--red-700);
  border-radius: 50%;
  animation: dashboardSpin 0.75s linear infinite;
}

.dashboard-section-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.72;
}

.dashboard-section-loading::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(179, 123, 29, 0.28);
  border-top-color: var(--red-700);
  border-radius: 50%;
  animation: dashboardSpin 0.75s linear infinite;
}

#cancelEditBtn {
  margin-left: 8px;
}

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

@media (max-width: 600px) {
  .dashboard-toast {
    top: 12px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  #cancelEditBtn {
    width: 100%;
    margin-top: 8px;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-toast,
  .dashboard-spinner,
  .dashboard-section-loading::after {
    transition: none;
    animation-duration: 1.5s;
  }
}

.menu-extra-items-notice {
  max-width: 900px;
  margin: 10px auto 24px;
  padding: 16px 22px;
  text-align: center;
  background: #fff8ea;
  border: var(--border-gold);
  border-radius: 12px;
  color: var(--brown-800);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.menu-extra-items-notice strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red-700);
  font-size: 1.1rem;
}

.menu-extra-items-notice p {
  margin: 0;
  line-height: 1.6;
}

/* =========================================================
   CONTACT PAGE — SINGLE RESTAURANT INFORMATION CARD
========================================================= */

.contact-section {
  max-width: 1180px;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: 34px;
}

.restaurant-info-card,
.contact-form {
  min-width: 0;
}

.restaurant-info-card {
  padding: 0;
  overflow: hidden;
  background: var(--cream-200);
}

/* Main heading */

.contact-card-heading {
  padding: 28px 30px 24px;
  background:
    linear-gradient(
      135deg,
      var(--brown-700),
      var(--brown-900)
    );
  border-bottom: 3px solid var(--gold-500);
}

.contact-card-eyebrow {
  margin: 0 0 6px;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.restaurant-info-card .contact-card-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.1;
}

/* Shared section spacing */

.restaurant-hours-section,
.restaurant-features,
.restaurant-location,
.restaurant-social-section {
  margin: 0;
  padding: 26px 30px;
}

.restaurant-hours-section,
.restaurant-features,
.restaurant-location {
  border-bottom: 1px solid rgba(122, 36, 21, 0.14);
}

/* Hours heading */

.info-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.info-heading-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--red-700);
  border: 2px solid var(--gold-500);
  border-radius: 50%;

  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.info-heading-label {
  margin: 0;
  color: var(--red-700);
  font-size: 1.25rem;
  font-weight: 800;
}

.info-heading-description {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Remove every inner-card effect */

.restaurant-info-card .hours-cards,
.restaurant-info-card .day-card,
.restaurant-info-card .contact-info-item,
.restaurant-info-card .mini-info {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Hours table */

.restaurant-info-card .hours-cards {
  display: block;
  width: 100%;
  margin: 0;
  overflow: visible;
}

.restaurant-info-card .day-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  gap: 18px;

  width: 100%;
  min-height: 0;
  padding: 15px 0;
}

.restaurant-info-card .day-card + .day-card {
  border-top: 1px solid rgba(122, 36, 21, 0.13);
}

.restaurant-info-card .day-card h4 {
  margin: 5px 0 0;
  color: var(--red-700);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

/*
  This supports either:
  <p><span class="meal-tag">...</span> time</p>

  or an extra wrapper generated by JavaScript.
*/

.restaurant-info-card .day-card > div {
  min-width: 0;
}

.restaurant-info-card .day-card p {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 13px;

  min-width: 0;
  margin: 0;
  padding: 2px 0;

  color: var(--brown-900);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.restaurant-info-card .day-card p + p {
  margin-top: 7px;
}

/* Smaller meal labels */

.restaurant-info-card .meal-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 118px;
  min-width: 0;
  min-height: 28px;
  margin: 0;
  padding: 5px 9px;

  background: var(--gold-300);
  color: var(--brown-900);
  border: 1px solid rgba(168, 109, 23, 0.35);
  border-radius: 999px;

  font-size: 0.65rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.025em;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;

  box-shadow: none;
}

.restaurant-info-card .meal-tag.dinner {
  background: var(--red-700);
  color: var(--white);
  border-color: var(--red-700);
}

/* Holiday note */

.restaurant-info-card .holiday-note {
  margin: 18px 0 0;
  padding: 12px 14px;

  background: rgba(200, 155, 60, 0.11);
  border: 1px solid rgba(200, 155, 60, 0.4);
  border-radius: var(--radius-sm);

  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: left;
}

/* Parking / accessible / payment row */

.restaurant-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.restaurant-feature {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
  padding: 4px 15px;
}

.restaurant-feature:first-child {
  padding-left: 0;
}

.restaurant-feature:last-child {
  padding-right: 0;
}

.restaurant-feature + .restaurant-feature {
  border-left: 1px solid rgba(122, 36, 21, 0.14);
}

.restaurant-feature-icon {
  flex: 0 0 auto;
  font-size: 1.35rem;
  line-height: 1;
}

.restaurant-feature h3 {
  margin: 0 0 3px;
  color: var(--red-700);
  font-size: 0.93rem;
}

.restaurant-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* Location */

.restaurant-location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;

  background: rgba(42, 26, 18, 0.035);
}

.restaurant-location-copy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.restaurant-location-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.restaurant-location-label {
  margin: 0 0 4px;
  color: var(--red-700);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.restaurant-location address {
  margin: 0;
  color: var(--brown-900);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.restaurant-directions-btn {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.88rem;
}

/* Social links */

.restaurant-social-section {
  padding-top: 22px;
  padding-bottom: 26px;
}

.restaurant-social-heading {
  margin: 0 0 12px;
  color: var(--red-700);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.restaurant-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
}

.restaurant-social-links a {
  min-height: 38px;
  padding: 8px 14px;

  background: var(--brown-900);
  color: var(--gold-300) !important;
  border: 1px solid rgba(200, 155, 60, 0.65);
  border-radius: 999px;

  font-size: 0.82rem;
  box-shadow: none;
}

/* Contact form balance */

.contact-form {
  align-self: stretch;
}

.contact-form h2 {
  margin-bottom: 22px;
  color: var(--red-700);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.contact-turnstile {
  display: flex;
  justify-content: center;
  margin: 20px 0 22px;
}

.contact-form #contactSubmitBtn {
  min-width: 150px;
}

/* Tablet */

@media (max-width: 1050px) {
  .contact-section {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .contact-section {
    margin: 45px auto;
    padding: 0 14px;
  }

  .contact-card-heading,
  .restaurant-hours-section,
  .restaurant-features,
  .restaurant-location,
  .restaurant-social-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .restaurant-info-card .day-card {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .restaurant-info-card .day-card h4 {
    grid-column: 1;
    grid-row: auto;
    margin: 0;
  }

  .restaurant-info-card .day-card p {
    grid-column: 1;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px;
    font-size: 0.84rem;
  }

  .restaurant-info-card .meal-tag {
    width: 112px;
    font-size: 0.61rem;
  }

  .restaurant-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .restaurant-feature,
  .restaurant-feature:first-child,
  .restaurant-feature:last-child {
    padding: 0;
  }

  .restaurant-feature + .restaurant-feature {
    padding-top: 16px;
    border-top: 1px solid rgba(122, 36, 21, 0.14);
    border-left: 0;
  }

  .restaurant-location {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
  }

  .restaurant-location-copy {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    width: 100%;
  }

  .restaurant-location-copy > div {
    min-width: 0;
  }

  .restaurant-location address {
    display: block;
    margin: 0;
    line-height: 1.55;
  }

  .restaurant-directions-btn {
    display: flex;
    width: 100%;
    margin: 0;
  }

  .restaurant-social-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .restaurant-social-links a {
    width: 100%;
  }

  .contact-form #contactSubmitBtn {
    width: 100%;
  }
}

/* Fix multi-meal hour rows */
.restaurant-info-card .day-card h4 {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.restaurant-info-card .day-card p {
  grid-column: 2;
}

/* Reset multi-meal positioning on mobile */

@media (max-width: 600px) {
  .restaurant-info-card .day-card h4,
  .restaurant-info-card .day-card p {
    grid-column: 1;
  }

  .restaurant-info-card .day-card h4 {
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .restaurant-location {
    display: block;
  }

  .restaurant-location-copy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
  }

  .restaurant-location-copy > div {
    min-width: 0;
  }

  .restaurant-location-label {
    margin-bottom: 5px;
  }

  .restaurant-location address {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .restaurant-directions-btn {
    display: flex;
    width: 100%;
    margin: 0;
  }
}

/* =========================================================
   MENU PHOTO ROW FIX
   Only regular menu items use the image layout.
   Entrée and side grids keep their own layout.
========================================================= */

.menu-photo-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu-photo-row .menu-item-details {
    flex: 1;
    min-width: 0;
}

.menu-item-thumbnail {
    display: block;
    width: 100px;
    height: 82px;
    flex: 0 0 100px;

    object-fit: cover;

    border: var(--border-gold);
    border-radius: 12px;
    background: #f6ecd9;
}

.menu-item-thumbnail.hidden-image {
    display: none;
}

.entree-choice-row,
.side-choice-grid {
    display: block;
}

@media (max-width: 600px) {

    .menu-photo-row {
        gap: 12px;
    }

    .menu-item-thumbnail {
        width: 76px;
        height: 68px;
        flex-basis: 76px;
    }

}

/* MOBILE HOME INTRO FIX */
@media (max-width: 768px) {
  .intro-section {
    margin: 42px auto 24px;
    padding: 0 22px;
  }

  .experience-section {
    margin: 24px auto 55px;
    padding: 0 18px;
    gap: 26px;
  }

  .experience-content,
  .experience-card {
    width: 100%;
    height: auto;
    padding: 30px 24px;
  }

  .experience-content {
    border-radius: 0 0 22px 22px;
  }

  .experience-content .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .experience-content h2 {
    font-size: 2rem;
    line-height: 1.08;
    margin-bottom: 20px;
  }

  .experience-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
  }

  .experience-content .btn {
    display: flex;
    width: 100%;
    margin-top: 26px;
  }

  .experience-card h3 {
    white-space: normal;
    font-size: 1.9rem;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .experience-card li {
    font-size: 1rem;
    line-height: 1.5;
    padding: 14px 0;
  }
}

@media (max-width: 420px) {
  .experience-content,
  .experience-card {
    padding: 26px 20px;
  }

  .experience-content h2 {
    font-size: 1.85rem;
  }

  .experience-content p {
    font-size: 1rem;
  }

  .experience-card h3 {
    font-size: 1.65rem;
  }
}