/* =============================================================
   TWO DADS CHICKEN & FRIES — style.css
   Bold, loud, dark food truck brand
   ============================================================= */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Brand colors */
  --brand-dark:    #2a0a00;
  --brand-darker:  #1a0500;
  --brand-orange:  #f57c00;
  --brand-gold:    #ffc107;
  --brand-red:     #e53935;
  --brand-surface: #3d1200;
  --brand-surface2:#4a1800;

  /* Text */
  --color-text:       #ffffff;
  --color-text-muted: #e8c99a;
  --color-text-faint: #a0785a;

  /* Type scale (fluid) */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(2.8rem,   0.5rem  + 7vw,    7rem);

  /* Spacing (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm:   0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 24px rgba(245, 124, 0, 0.3);

  /* Layout */
  --content-default: 1140px;
  --content-wide:    1320px;

  /* Fonts */
  --font-display: 'Fredoka One', 'Impact', cursive;
  --font-body:    'Nunito', 'Helvetica Neue', sans-serif;

  /* Checker colors */
  --checker-a: #f57c00;
  --checker-b: #ffc107;
}

/* ─── BASE RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--brand-dark);
  line-height: 1.6;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul[role='list'], ol[role='list'] { list-style: none; }

input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.1;
  font-family: var(--font-display);
}

p, li { text-wrap: pretty; max-width: 72ch; }

button { cursor: pointer; background: none; border: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── FOCUS ─── */
:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ─── SELECTION ─── */
::selection {
  background: rgba(245, 124, 0, 0.3);
  color: #fff;
}

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: background var(--ease-out), color var(--ease-out), border-color var(--ease-out), box-shadow var(--ease-out), transform var(--ease-out);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brand-orange);
  color: var(--brand-dark);
  border-color: var(--brand-orange);
}
.btn-primary:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--brand-gold);
  border-color: var(--brand-gold);
}
.btn-outline:hover {
  background: var(--brand-gold);
  color: var(--brand-dark);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* ─── CHECKERBOARD ELEMENTS ─── */
.checker-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 20px;
  background-image:
    repeating-conic-gradient(var(--checker-a) 0% 25%, var(--checker-b) 0% 50%);
  background-size: 20px 20px;
  background-position: 0 0;
}

.checker-divider-top {
  height: 16px;
  background-image:
    repeating-conic-gradient(var(--checker-a) 0% 25%, var(--checker-b) 0% 50%);
  background-size: 16px 16px;
}

.checker-bar {
  height: 12px;
  border-radius: var(--radius-full);
  background-image:
    repeating-conic-gradient(var(--checker-a) 0% 25%, var(--checker-b) 0% 50%);
  background-size: 12px 12px;
  margin-block: var(--space-10);
  opacity: 0.85;
}

/* ─── SECTION LABELS & HEADERS ─── */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  margin-bottom: var(--space-3);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.section-header h2 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 55ch;
  margin-inline: auto;
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(42, 10, 0, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(245, 124, 0, 0.25);
  transition: box-shadow var(--ease-out);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding-block: var(--space-3);
}

.logo-link {
  flex-shrink: 0;
  text-decoration: none;
}

.logo-svg {
  width: 180px;
  height: auto;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--ease-out);
}

.main-nav a:hover { color: var(--brand-gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-orange);
  border-radius: 2px;
  transition: transform var(--ease-out), opacity var(--ease-out);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  background: var(--brand-darker);
  border-top: 1px solid rgba(245,124,0,0.2);
  padding: var(--space-4) 0;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  display: block;
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-lg);
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color var(--ease-out), background var(--ease-out);
}
.mobile-nav a:hover {
  color: var(--brand-gold);
  background: rgba(245,124,0,0.06);
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(42, 10, 0, 0.95) 0%,
    rgba(42, 10, 0, 0.88) 45%,
    rgba(42, 10, 0, 0.45) 70%,
    rgba(42, 10, 0, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
}

.hero-text {
  max-width: 680px;
}

.hero-pre {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-gold);
  margin-bottom: var(--space-4);
}

.hero-h1 {
  display: flex;
  flex-direction: column;
  font-size: var(--text-hero);
  line-height: 0.95;
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.hero-h1 .line1 {
  color: #fff;
  display: block;
}

.hero-h1 .line2 {
  color: var(--brand-gold);
  display: block;
  /* slight offset for visual flair */
  padding-left: 0.05em;
}

.hero-sub {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  max-width: 50ch;
}

.hero-tagline {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--brand-orange);
  font-style: italic;
  margin-bottom: var(--space-8);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ═══════════════════════════════════════════
   PROOF BAR
═══════════════════════════════════════════ */
.proof-bar {
  background: var(--brand-darker);
  border-top: 2px solid rgba(245,124,0,0.3);
  border-bottom: 2px solid rgba(245,124,0,0.3);
  padding-block: var(--space-5);
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  text-align: center;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.proof-icon {
  font-size: 1.1em;
}

.proof-sep {
  color: var(--brand-orange);
  font-size: 0.7em;
  opacity: 0.6;
}

@media (max-width: 600px) {
  .proof-sep { display: none; }
  .proof-inner { gap: var(--space-3); }
}

/* ═══════════════════════════════════════════
   MENU
═══════════════════════════════════════════ */
.menu-section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  background: var(--brand-dark);
}

.menu-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-10);
  align-items: start;
}

.menu-category {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-gold);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255,193,7,0.2);
}

/* Menu Cards */
.menu-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.menu-card {
  background: var(--brand-surface);
  border: 1px solid rgba(245, 124, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  transition: border-color var(--ease-out), box-shadow var(--ease-out), transform var(--ease-out);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-orange);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.menu-card:hover {
  border-color: rgba(245, 124, 0, 0.4);
  box-shadow: var(--shadow-glow);
  transform: translateX(4px);
}

.spicy-card::before { background: var(--brand-red); }
.fries-card::before { background: var(--brand-gold); }

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  margin-bottom: var(--space-2);
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff;
  line-height: 1.2;
}

.menu-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--brand-gold);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-3);
}

.sauce-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  background: rgba(245, 124, 0, 0.12);
  border: 1px solid rgba(245, 124, 0, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.spicy-badge {
  background: rgba(229, 57, 53, 0.12);
  border-color: rgba(229, 57, 53, 0.3);
  color: #ff7675;
}

/* Extras row */
.extras-row {
  background: var(--brand-surface2);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.extra-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-3);
}

.extra-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: #fff;
  flex-shrink: 0;
}

.extra-price {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--brand-gold);
  flex-shrink: 0;
}

.extra-detail {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* Feature image */
.menu-feature-img {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(245, 124, 0, 0.2);
}

.menu-feature-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.menu-feature-img:hover img { transform: scale(1.03); }

.menu-img-caption {
  background: var(--brand-surface);
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-img-caption strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--brand-gold);
}

.menu-img-caption span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .menu-layout {
    grid-template-columns: 1fr;
  }
  .menu-feature-img {
    position: static;
    order: -1;
  }
  .menu-feature-img img { height: 280px; }
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  background: var(--brand-darker);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 5vw, var(--space-16));
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-wrap:hover img { transform: scale(1.03); }

.about-img-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: rgba(42, 10, 0, 0.9);
  border: 2px solid var(--brand-orange);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  backdrop-filter: blur(8px);
}

.badge-name {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--brand-gold);
  line-height: 1.2;
}

.badge-aka {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 600;
}

.about-text h2 {
  font-size: var(--text-2xl);
  color: #fff;
  margin-bottom: var(--space-6);
}

.about-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  max-width: 55ch;
}

.about-quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--brand-orange);
  line-height: 1.25;
  border-left: 4px solid var(--brand-orange);
  padding-left: var(--space-5);
  margin-block: var(--space-6) !important;
  font-style: normal !important;
}

.owner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.owner-tag {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-gold);
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
}

@media (max-width: 800px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-img-wrap img { height: 320px; }
}

/* ═══════════════════════════════════════════
   WHERE TO FIND US
═══════════════════════════════════════════ */
.find-section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  background: var(--brand-dark);
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-12);
}

.area-pill {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--brand-dark);
  background: var(--brand-orange);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-6);
  transition: background var(--ease-out), transform var(--ease-out), box-shadow var(--ease-out);
  cursor: default;
}

.area-pill:hover {
  background: var(--brand-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.find-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  align-items: flex-start;
  justify-content: center;
}

.home-base {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: var(--brand-surface);
  border: 1px solid rgba(245, 124, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
}

.home-base-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.home-base-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.home-base-info strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--brand-gold);
}

.home-base-info span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.schedule-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
  max-width: 380px;
}

.schedule-cta p {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════
   PODCAST
═══════════════════════════════════════════ */
.podcast-section {
  background: var(--brand-surface);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.podcast-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
  margin: 2.5rem auto 0;
}

.podcast-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--brand-surface2);
  border: 1px solid rgba(255,193,7,0.15);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.podcast-card:hover {
  border-color: var(--brand-gold);
  background: #5a1e00;
  transform: translateY(-2px);
}

.podcast-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0,0,0,0.3);
  padding: 4px;
}

.podcast-platform-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.podcast-platform-name {
  font-family: 'Fredoka One', cursive;
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.1;
}

.podcast-platform-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.podcast-arrow {
  color: var(--brand-gold);
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

.podcast-card:hover .podcast-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.podcast-handle {
  text-align: center;
  margin-top: 2rem;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.podcast-handle strong {
  color: var(--brand-gold);
}

@media (max-width: 480px) {
  .podcast-card {
    padding: 1rem 1.1rem;
    gap: 1rem;
  }
  .podcast-logo {
    width: 48px;
    height: 48px;
  }
}

/* ═══════════════════════════════════════════
   BOOK / CATERING
═══════════════════════════════════════════ */
.book-section {
  background: var(--brand-darker);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  text-align: center;
}

.book-content {
  max-width: 600px;
  margin-inline: auto;
}

.book-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-5);
}

.book-content h2 {
  font-size: var(--text-2xl);
  color: #fff;
  margin-bottom: var(--space-4);
}

.book-sub {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: var(--space-4);
}

.book-content p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  margin-inline: auto;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--brand-darker);
}

.footer-inner {
  padding-block: var(--space-12) var(--space-8);
}

.footer-logo-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  text-align: center;
}

.footer-logo-svg {
  width: 160px;
  height: auto;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-text-faint);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--brand-surface);
  border: 1px solid rgba(245, 124, 0, 0.2);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: background var(--ease-out), color var(--ease-out), border-color var(--ease-out), transform var(--ease-out), box-shadow var(--ease-out);
}

.social-link:hover {
  background: var(--brand-orange);
  color: var(--brand-dark);
  border-color: var(--brand-orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(245, 124, 0, 0.1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.footer-links a, .footer-links span {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color var(--ease-out);
}

.footer-links a:hover { color: var(--brand-orange); }

.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   LOGO TEXT
═══════════════════════════════════════════ */
.logo-text {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--brand-gold);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: 800;
}

/* ═══════════════════════════════════════════
   SCHEDULE SECTION — REDESIGNED
═══════════════════════════════════════════ */
.schedule-section {
  background: var(--brand-darker);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  position: relative;
}

.schedule-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--brand-orange) 0px,
    var(--brand-orange) 14px,
    var(--brand-gold) 14px,
    var(--brand-gold) 28px
  );
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

/* Month card */
.schedule-month {
  background: var(--brand-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(245, 124, 0, 0.18);
  display: flex;
  flex-direction: column;
}

/* Month header bar */
.month-header {
  background: var(--brand-orange);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.month-label {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin: 0;
  line-height: 1;
  letter-spacing: 0.02em;
}

.month-count {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(42, 10, 0, 0.65);
  white-space: nowrap;
}

/* Events list */
.schedule-events {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

/* Single event row */
.schedule-event {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  cursor: default;
}

.schedule-event:hover {
  background: rgba(245, 124, 0, 0.08);
  border-color: rgba(245, 124, 0, 0.25);
  transform: translateX(3px);
}

/* Calendar date block */
.event-cal {
  flex-shrink: 0;
  width: 52px;
  background: var(--brand-dark);
  border-radius: var(--radius-sm);
  padding: var(--space-1) var(--space-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  border: 1px solid rgba(245, 124, 0, 0.2);
  text-align: center;
}

.event-day {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
  line-height: 1;
  white-space: nowrap;
}

.event-num {
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1;
}

/* Event text */
.event-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.event-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.event-time {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--brand-orange);
  opacity: 0.9;
}

/* Schedule footer */
.schedule-footer {
  margin-top: var(--space-10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}

.schedule-footer p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE — COMPREHENSIVE
═══════════════════════════════════════════ */

/* Tablet: 3-col schedule → 1-col stacked */
@media (max-width: 900px) {
  .schedule-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
}

/* Mobile: all major layout fixes */
@media (max-width: 768px) {
  /* Hero */
  .hero { min-height: 85dvh; }
  .hero-h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
  .hero-ctas { flex-direction: column; gap: var(--space-3); }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Menu */
  .menu-layout {
    grid-template-columns: 1fr;
  }
  .menu-feature-img {
    position: static;
    order: -1;
  }
  .menu-feature-img img { height: 240px; }

  /* About */
  .about-layout { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 280px; }

  /* Footer */
  .footer-links { flex-direction: column; align-items: center; gap: var(--space-2); }
  .footer-links span[aria-hidden] { display: none; }
}

/* Small mobile */
@media (max-width: 480px) {
  /* Logo */
  .logo-text { font-size: 1.1rem; }

  /* Proof bar — wrap cleanly */
  .proof-sep { display: none; }
  .proof-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    text-align: center;
  }
  .proof-item { justify-content: center; }

  /* Menu cards */
  .menu-card { padding: var(--space-4); }
  .menu-card-top { flex-wrap: wrap; }

  /* Schedule — compact calendar block */
  .event-cal { width: 46px; }
  .event-num { font-size: 1.1rem; }
  .event-name { font-size: 0.8rem; }
  .event-time { font-size: 0.7rem; }

  /* Buttons full-width in schedule footer */
  .schedule-footer .btn { width: 100%; justify-content: center; }

  /* Book section */
  .book-content .btn { width: 100%; justify-content: center; }
}
