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

:root {
  --navy: #1e2a3a;
  --navy-light: #2a3a4e;
  --gold: #d4a843;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;
  --cream-dark: #e8dfd0;
  --white: #ffffff;
  --dark: #111111;
  --text: #333333;
  --text-light: #666666;
  --red: #c0392b;
  --green: #27ae60;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER / NAV ===== */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  border-bottom: 2px solid var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 60px; width: 60px; border-radius: 50%; }
.logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: bold;
  letter-spacing: 1px;
  white-space: nowrap;
  text-transform: uppercase;
  text-align: center;
}
.logo-text span { display: block; font-size: 0.7rem; color: var(--cream); letter-spacing: 3px; text-transform: uppercase; }

nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
}

nav a {
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}

nav a:hover, nav a.active {
  background: var(--gold);
  color: var(--navy);
}

nav .order-btn {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

nav .order-btn:hover {
  background: #e74c3c;
  color: var(--white);
}

/* Mobile order button (hidden on desktop) */
.order-btn-mobile { display: none; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--cream);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(rgba(30,42,58,0.85), rgba(30,42,58,0.9)), url('images/sunset.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  height: calc(100vh - 120px);
  height: calc(100dvh - 120px);
}

.hero-content {
  padding-top: 20px;
}

.hero-content h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero fade-in animation */
@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.specials-layout {
  opacity: 0;
  animation: heroFadeIn 3s ease-out forwards;
  animation-delay: 1.5s;
}

.hero-specials-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Hero carousel — absolute with hard bottom boundary, overflow clips content */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 80px;
  overflow: clip;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-slide {
  display: none;
  width: 100%;
  justify-content: center;
}

.hero-slide.active {
  display: flex;
}

.hero-slide.swipe-out-left,
.hero-slide.swipe-out-right {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
}
.hero-slide.swipe-out-left {
  animation: slideOutLeft 0.35s ease forwards;
}
.hero-slide.swipe-in-right {
  display: flex;
  animation: slideInRight 0.35s ease forwards;
}
.hero-slide.swipe-out-right {
  animation: slideOutRight 0.35s ease forwards;
}
.hero-slide.swipe-in-left {
  display: flex;
  animation: slideInLeft 0.35s ease forwards;
}

@keyframes slideOutLeft {
  to { transform: translateX(-100%); opacity: 0; }
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutRight {
  to { transform: translateX(100%); opacity: 0; }
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Button + dots — positioned in the reserved 80px zone at bottom */
.hero-buttons {
  position: absolute;
  bottom: 105px;
  left: 0;
  right: 0;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.hero-dots {
  position: absolute;
  bottom: 83px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: #e74c3c;
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== INFO BAR ===== */
.info-bar {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 1rem;
}
.info-bar a { color: var(--navy); font-weight: 800; }
.info-bar a:hover { color: var(--dark); }
.info-bar-dash { }
.info-bar-break { display: none; }

/* ===== SECTIONS ===== */
.section {
  padding: 60px 20px;
}
.section--alt { background: var(--white); }
.section--dark { background: var(--navy); color: var(--cream); }

.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.2rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 10px;
}
.section--dark .section-title { color: var(--gold); }

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.05rem;
}
.section--dark .section-subtitle { color: var(--cream-dark); }

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 15px auto 30px;
  border-radius: 2px;
}

/* ===== WHAT WE'RE ALL ABOUT (in hero slide) ===== */
.hero-slide .section-divider {
  background: var(--gold);
}

/* Feature rotator - single glass card with cycling content */
.feature-rotator {
  position: relative;
  overflow: hidden;
  height: fit-content;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  max-width: 500px;
  flex-shrink: 0;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.feature-rotator-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px 22px;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.feature-rotator-item.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.feature-rotator-item h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.feature-rotator-item p {
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===== SPECIALS PREVIEW (HOMEPAGE) ===== */
.specials-layout {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.specials-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: nowrap;
}

.specials-row .special-card {
  flex: 0 0 calc(16.666% - 12px);
  white-space: nowrap;
}

.specials-row--today {
  margin-bottom: 5px;
}

.specials-row--today .special-card {
  max-width: 100%;
  flex: 1 1 100%;
  width: 100%;
  font-size: 1.4em;
  padding: 112px 20px;
}

.special-card.special-card--today .day {
  font-size: 2rem;
  color: var(--gold) !important;
  white-space: nowrap;
}
.special-card.special-card--today .item {
  font-size: 1.6rem;
}
.special-card.special-card--today .price {
  font-size: 1.5rem;
}

.special-card.special-card--today {
  overflow: hidden;
}

.special-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gold);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.special-card:hover {
  border-color: rgba(212,168,67,0.5);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}
.special-card .day {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.special-card .item { color: var(--cream); font-size: 0.9rem; margin-bottom: 4px; white-space: nowrap; }
.special-card .price { color: var(--gold-light); font-weight: 700; font-size: 1rem; white-space: nowrap; }

/* ===== MENU PAGE ===== */
.page-hero {
  background: linear-gradient(rgba(30,42,58,0.88), rgba(30,42,58,0.92)), url('images/header-wood.png') center/cover;
  color: var(--white);
  text-align: center;
  padding: 30px 20px;
}
.page-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.page-hero p { color: var(--cream-dark); font-size: 1.1rem; }

.menu-nav {
  background: var(--white);
  border-bottom: 2px solid var(--cream-dark);
  padding: 15px 20px;
  text-align: center;
  position: sticky;
  top: 80px;
  z-index: 100;
}
.menu-nav a {
  display: inline-block;
  padding: 8px 16px;
  margin: 4px;
  background: var(--cream);
  color: var(--navy);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
}
.menu-nav a:hover, .menu-nav a.active {
  background: var(--gold);
  color: var(--navy);
}

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

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

.menu-category h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.8rem;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.menu-item:last-child { border-bottom: none; }

.menu-item-info { flex: 1; padding-right: 20px; }
.menu-item-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
}
.menu-item-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
  white-space: nowrap;
}
.menu-item-prices {
  text-align: right;
}
.menu-item-prices .price-line {
  font-size: 0.9rem;
  color: var(--text-light);
}
.menu-item-prices .price-line strong {
  color: var(--gold);
}

.menu-note {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 12px 16px;
  margin: 15px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-radius: 0 6px 6px 0;
}

/* ===== DAILY SPECIALS ===== */
.specials-page-grid {
  display: grid;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.daily-special-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.daily-special-card .day-header {
  background: var(--navy);
  color: var(--gold);
  padding: 14px 24px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.3rem;
  font-weight: bold;
}
.daily-special-card .day-header .badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 10px;
  margin-left: 10px;
  font-family: 'Segoe UI', sans-serif;
  vertical-align: middle;
  text-transform: uppercase;
  font-weight: 700;
}
.daily-special-card .day-body { padding: 20px 24px; }
.daily-special-card .special-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.daily-special-card .special-item:last-child { border-bottom: none; }
.special-item-info { flex: 1; }
.special-item-name { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.special-item-desc { font-size: 0.9rem; color: var(--text-light); margin-top: 3px; }
.special-item-price { font-weight: 700; color: var(--gold); font-size: 1.05rem; white-space: nowrap; }

/* ===== DRINK MENU ===== */
.drink-category { margin-bottom: 50px; }
.drink-category h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.8rem;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.drink-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.drink-item:last-child { border-bottom: none; }
.drink-item-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}
.drink-item-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
  font-style: italic;
}
.drink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.drink-grid-item {
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text);
}
.drink-subcategory {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-light);
  margin: 15px 0 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== EVENTS PAGE ===== */
.events-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.events-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.events-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.events-gallery img {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 100%;
  object-fit: cover;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.contact-info-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-detail .icon {
  font-size: 1.3rem;
  min-width: 30px;
  text-align: center;
}
.contact-detail .label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-detail .value {
  color: var(--text);
  font-size: 1rem;
}
.contact-detail a { color: var(--gold); }
.contact-detail a:hover { color: var(--gold-light); }

.hours-table {
  width: 100%;
  margin-top: 10px;
}
.hours-table tr td {
  padding: 6px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.hours-table tr td:first-child {
  font-weight: 600;
  color: var(--navy);
}
.hours-table tr td:last-child {
  text-align: right;
  color: var(--text-light);
}

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.contact-form h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
  background: var(--cream);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group select {
  appearance: auto;
  cursor: pointer;
}
.form-group input[type="file"] {
  padding: 10px 14px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  background: var(--navy);
  color: var(--gold);
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-submit:hover {
  background: var(--gold);
  color: var(--navy);
}

.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ===== PHOTO GALLERY ===== */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 25px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
  z-index: 2001;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 15px;
  transition: color 0.3s;
  z-index: 2001;
}
.lightbox-prev { left: 15px; }
.lightbox-next { right: 15px; }
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }

/* ===== MAPS POPUP ===== */
.maps-popup {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  z-index: 10;
}
.maps-popup.open { display: flex; flex-direction: column; }
.maps-popup a {
  padding: 14px 28px;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s;
}
.maps-popup a:hover {
  background: var(--cream);
  color: var(--navy);
}
.maps-popup a + a {
  border-top: 1px solid var(--cream-dark);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: var(--cream-dark);
  padding: 50px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-col h4 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.footer-col p, .footer-col li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #aaa;
}
.footer-col a { color: #ccc; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #777;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner { gap: 10px; }
  .logo { flex-shrink: 0; }
  .order-btn-mobile {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 7px 12px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.65rem;
    white-space: nowrap;
  }
  .order-btn-mobile:hover { background: #e74c3c; color: var(--white); }
  .menu-toggle { display: block; margin-left: auto; }
  nav ul { display: none; }
  nav ul.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  }
  nav ul.open a { display: block; text-align: center; }

  .info-bar { font-size: 0.8rem; padding: 10px 15px; }
  .info-bar-break { display: block; }
  .info-bar-dash { display: none; }

  .hero { height: calc(100vh - 120px); height: calc(100dvh - 120px); }
  .hero-carousel { padding: 15px 10px 0; bottom: 80px; align-items: flex-start; }
  .hero-content { padding-top: 5px; }
  .hero-buttons { bottom: 78px; }
  .hero-buttons .btn { padding: 10px 24px; }
  .hero-dots { bottom: 56px; }
  .specials-layout { max-width: 100%; gap: 8px; }
  .specials-row--today { justify-content: center; margin-bottom: 0; }
  .specials-row { gap: 6px; }
  .special-card { padding: 10px 8px; }
  .special-card.special-card--today .day { font-size: 1.1rem; }
  .special-card.special-card--today .item { font-size: 0.9rem; }
  .special-card.special-card--today .price { font-size: 1rem; }
  .specials-row--today .special-card { padding: 18px 12px; font-size: 1em; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1.1rem; }

  /* Specials cards - stack on mobile */
  .specials-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .specials-row .special-card {
    flex: 0 0 calc(33.333% - 8px);
    min-width: 0;
  }
  .specials-row--today .special-card {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    white-space: normal;
    box-sizing: border-box;
  }
  .specials-row .special-card { white-space: normal; overflow: hidden; }
  .special-card .item { white-space: normal; }
  .special-card .price { white-space: normal; }

  .feature-rotator-item {
    padding: 14px 16px;
  }
  .feature-rotator-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
  .feature-rotator-item p { font-size: 0.9rem; line-height: 1.5; }

  .hero-buttons .btn { width: 80%; max-width: 280px; text-align: center; }

  .photo-gallery { grid-template-columns: repeat(3, 1fr); gap: 8px; }

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

  .logo-text { font-size: 1rem; white-space: nowrap; }
  .logo-text span { white-space: nowrap; }
  .logo img { height: 45px; width: 45px; }

  .page-hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }

  .menu-nav { top: 65px; }
  .menu-nav a { font-size: 0.75rem; padding: 6px 10px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .specials-grid { grid-template-columns: 1fr; }

  .specials-row .special-card {
    flex: 0 0 calc(50% - 6px);
  }
  .special-card { padding: 10px 8px; }
  .special-card .day { font-size: 1rem; }
  .special-card .item { font-size: 0.8rem; }
  .special-card .price { font-size: 0.85rem; }
}

