/* ============================================================
   THEA COFFEE HOUSE & DELI FOOD — Main Stylesheet
   Warm & Cozy Theme
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --cream:      #FDF6EC;
  --cream-dark: #F5E6D0;
  --brown:      #3D1F0D;
  --brown-mid:  #6B3A2A;
  --terra:      #C1440E;
  --terra-dark: #9E360A;
  --gold:       #D4A843;
  --warm-gray:  #8C7B6E;
  --white:      #FFFFFF;
  --shadow:     rgba(61,31,13,0.12);
  --shadow-lg:  rgba(61,31,13,0.22);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Lato', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --max-width:  1180px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brown);
}

.section-title em { font-style: italic; color: var(--terra); }

.section-desc {
  color: var(--warm-gray);
  max-width: 560px;
  margin: 12px auto 0;
}

.center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.btn-primary:hover {
  background: var(--terra-dark);
  border-color: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193,68,14,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.full-width { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(253,246,236,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .logo-script { color: var(--brown); }
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.navbar.scrolled .logo-sub { color: var(--warm-gray); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links li a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--terra);
  transition: width var(--transition);
}
.nav-links li a:hover::after { width: 100%; }
.navbar.scrolled .nav-links li a { color: var(--brown-mid); }

.nav-btn {
  background: var(--terra) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
}
.nav-btn:hover { background: var(--terra-dark) !important; }
.nav-btn::after { display: none !important; }

/* ===== LOGO CIRCLES ===== */
.nav-logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  background: var(--white);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar.scrolled .nav-logo-circle {
  border-color: var(--cream-dark);
  box-shadow: 0 2px 8px var(--shadow);
}
.nav-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.7);
  box-shadow: 0 0 40px rgba(212,168,67,0.5), 0 8px 32px rgba(0,0,0,0.4);
  background: var(--white);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-logo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 24px rgba(212,168,67,0.25);
  background: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--brown); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(61,31,13,0.65) 0%, rgba(107,58,42,0.45) 100%),
    url('images/background.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(30,10,5,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.script {
  font-family: var(--font-script);
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--white);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: -8px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-style: italic;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}
.badge i { color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll a {
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px var(--shadow-lg);
}
.img-main img { width: 100%; height: 480px; object-fit: cover; }

.img-secondary {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 12px 30px var(--shadow-lg);
}
.img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-stamp {
  position: absolute;
  top: -20px; left: -20px;
  width: 100px; height: 100px;
  background: var(--terra);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(193,68,14,0.4);
}
.about-stamp span { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about-stamp strong { font-family: var(--font-heading); font-size: 1.5rem; line-height: 1; }

.about-text { padding-left: 20px; }
.about-text .section-title { margin-bottom: 20px; }
.about-text p { color: var(--warm-gray); margin-bottom: 16px; }

.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature > i {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--terra);
  flex-shrink: 0;
  border: 1px solid var(--cream-dark);
}
.feature > div { display: flex; flex-direction: column; gap: 2px; }
.feature strong { font-size: 0.95rem; color: var(--brown); }
.feature span { font-size: 0.85rem; color: var(--warm-gray); }

/* ===== STATS ===== */
.stats {
  background: var(--brown);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item { color: var(--white); }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-num i { font-size: 1.4rem; vertical-align: middle; }
.stat-item span { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* ===== MENU ===== */
.menu {
  padding: 100px 0;
  background: var(--cream);
}

.menu .section-title { margin-bottom: 8px; }
.menu .section-desc { margin-bottom: 40px; }

.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid var(--cream-dark);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--terra); color: var(--terra); }
.tab-btn.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

.menu-section { display: none; }
.menu-section.active { display: grid; }

.menu-grid .menu-section {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all var(--transition);
  position: relative;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow-lg);
}
.menu-card.featured { border: 2px solid var(--terra); }

.menu-badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  background: var(--terra);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 50px;
}

.menu-card-img {
  height: 200px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }

.menu-card-body { padding: 18px; }
.menu-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.menu-card-top h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--brown);
}
.price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--terra);
}
.menu-card-body p {
  font-size: 0.83rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* ===== MENU LIST STYLE ===== */
.menu-grid .menu-section {
  grid-template-columns: 1fr;
  gap: 0;
}

.menu-list-section {
  margin-bottom: 36px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 2px 12px var(--shadow);
}

.menu-list-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
}
.menu-list-title i { color: var(--terra); font-size: 1rem; }
.menu-list-title small { font-family: var(--font-body); font-size: 0.8rem; font-weight: 400; color: var(--warm-gray); }

.menu-list-note {
  font-size: 0.82rem;
  color: var(--warm-gray);
  font-style: italic;
  margin-bottom: 14px;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream);
  transition: background var(--transition);
}
.menu-list-item:last-child { border-bottom: none; }
.menu-list-item:hover { background: var(--cream); border-radius: 8px; padding-left: 8px; padding-right: 8px; }
.menu-list-item.highlight { background: rgba(193,68,14,0.04); border-radius: 8px; padding-left: 10px; padding-right: 10px; }
.menu-list-item.highlight:hover { background: rgba(193,68,14,0.08); }

.menu-list-item > div,
.menu-list-item > span:first-child {
  flex: 1;
  color: var(--brown);
  font-size: 0.93rem;
  font-weight: 600;
}
.menu-list-item > div span { display: block; color: var(--brown); font-weight: 600; }
.menu-list-item > div small {
  display: block;
  color: var(--warm-gray);
  font-size: 0.78rem;
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.4;
}
.menu-list-item em { color: var(--terra); font-style: italic; font-size: 0.8rem; font-weight: 400; }
.menu-list-item .price {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--terra);
  white-space: nowrap;
}

/* Keep card style only when explicitly using card class */
.menu-grid .menu-section.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== MENU TABS — 5 tabs ===== */
.menu-tabs {
  gap: 6px;
}

/* ===== TAKEAWAY ===== */
.takeaway {
  padding: 100px 0;
  background: var(--brown);
}
.takeaway .section-label { color: var(--gold); }
.takeaway .section-title { color: var(--white); }
.takeaway .section-desc { color: rgba(255,255,255,0.6); }

.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.takeaway-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background var(--transition);
}
.takeaway-card:hover { background: rgba(255,255,255,0.1); }

.takeaway-icon {
  width: 48px; height: 48px;
  background: var(--terra);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.takeaway-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.takeaway-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.takeaway-card ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}
.takeaway-card ul li span:first-child { color: rgba(255,255,255,0.75); }
.takeaway-card ul li span:last-child { color: var(--gold); font-weight: 700; white-space: nowrap; }

.takeaway-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.takeaway-cta {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.takeaway-cta-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 32px;
  flex-wrap: wrap;
}
.takeaway-cta-inner > i {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.takeaway-cta-inner > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.takeaway-cta-inner strong { color: var(--white); font-size: 1.1rem; }
.takeaway-cta-inner span { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* ===== TAKEAWAY HOURS BANNER ===== */
.takeaway-hours {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 40px 0 48px;
}
.tw-hours-title {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tw-hours-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.tw-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}
.tw-day span:first-child { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); }
.tw-day span:last-child { font-size: 0.78rem; color: var(--white); font-weight: 600; }
.tw-day.highlight { background: rgba(193,68,14,0.25); border: 1px solid rgba(193,68,14,0.4); }
.tw-day.highlight span:last-child { color: var(--gold); }
.tw-day.closed { opacity: 0.4; }
.tw-day.closed span:last-child { color: rgba(255,255,255,0.4); }

/* ===== TAKEAWAY MENU TABS ===== */
.tw-tabs { margin-bottom: 32px; }
.tw-menu-grid .menu-section { display: none; }
.tw-menu-grid .menu-section.active { display: block; }

.tw-card {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: none !important;
}
.tw-card .menu-list-title { color: var(--gold) !important; border-color: rgba(255,255,255,0.1) !important; }
.tw-card .menu-list-title i { color: var(--terra) !important; }
.tw-card .menu-list-note { color: rgba(255,255,255,0.45) !important; }
.tw-card .menu-list-item > span:first-child,
.tw-card .menu-list-item > div span { color: rgba(255,255,255,0.85) !important; }
.tw-card .menu-list-item > div small { color: rgba(255,255,255,0.45) !important; }
.tw-card .menu-list-item { border-color: rgba(255,255,255,0.07) !important; }
.tw-card .menu-list-item:hover { background: rgba(255,255,255,0.06) !important; }
.tw-card .menu-list-item.highlight { background: rgba(193,68,14,0.18) !important; }
.tw-card .menu-list-item.highlight:hover { background: rgba(193,68,14,0.26) !important; }

/* Deals & Catering cards */
.tw-deal {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px !important;
}
.deal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terra);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 50px;
}
.deal-title { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white) !important; }
.deal-desc { color: rgba(255,255,255,0.6) !important; font-size: 0.9rem; }
.deal-price { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--gold); }

.tw-catering {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px !important;
}
.catering-icon {
  width: 56px; height: 56px;
  background: var(--terra);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
}
.tw-catering h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white) !important; }
.tw-catering p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.tw-catering p strong { color: var(--gold); }
.catering-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.catering-contact a {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  color: var(--gold); font-size: 0.88rem; font-weight: 600;
  transition: color var(--transition);
}
.catering-contact a:hover { color: var(--white); }
.catering-contact i { color: var(--terra); }

@media (max-width: 1024px) {
  .takeaway-grid { grid-template-columns: repeat(2, 1fr); }
  .tw-hours-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .takeaway-grid { grid-template-columns: 1fr; }
  .menu-list-section { padding: 20px 18px; }
  .takeaway-cta-inner { flex-direction: column; text-align: center; }
  .tw-hours-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== MENU CTAS ===== */
.menu-cta {
  text-align: center;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-dark);
}
.menu-cta p { color: var(--warm-gray); margin-bottom: 20px; font-size: 1.05rem; }

/* ===== VIDEOS SECTION ===== */
.videos-section {
  padding: 100px 0;
  background: var(--cream);
}
.videos-section .section-title { margin-bottom: 8px; }
.videos-section .section-desc { margin-bottom: 48px; }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow-lg);
}

.video-card-player {
  width: 100%;
  background: #000;
}
.video-card-player video {
  width: 100%;
  display: block;
  max-height: 340px;
  object-fit: contain;
}

.video-card-info {
  padding: 20px 24px 24px;
}
.video-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.video-card-info p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

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

/* ===== GREEK NIGHTS ===== */
.greek-nights {
  padding: 100px 0;
  background: var(--brown);
  position: relative;
  overflow: hidden;
}
.greek-nights::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,168,67,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.greek-nights .section-label { color: var(--gold); }
.greek-nights .section-title { color: var(--white); }
.greek-nights .section-desc { color: rgba(255,255,255,0.6); margin-bottom: 52px; }

.greek-nights-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
}

.greek-nights-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212,168,67,0.15);
  border: 2px solid rgba(212,168,67,0.2);
}
.nights-video {
  width: 100%;
  display: block;
  max-height: 620px;
  object-fit: contain;
  background: #000;
}

.greek-nights-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nights-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.nights-detail > i {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.2);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.nights-detail > div { display: flex; flex-direction: column; gap: 2px; }
.nights-detail strong { color: var(--white); font-size: 0.88rem; letter-spacing: 0.04em; }
.nights-detail span { color: rgba(255,255,255,0.55); font-size: 0.85rem; }

.nights-btn { margin-top: 8px; align-self: flex-start; }

/* ===== GREEK NIGHTS MENU ===== */
.nights-menu {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nights-menu-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.nights-menu-title i { color: var(--terra); font-size: 1.2rem; }

.nights-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nights-menu-col {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.nights-menu-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,168,67,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nights-menu-col h4 i { color: var(--terra); font-size: 0.85rem; }

.nights-menu-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nights-menu-col ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nights-menu-col ul li:last-child { border-bottom: none; }
.nights-menu-col ul li span:first-child { color: rgba(255,255,255,0.75); }
.nights-menu-col ul li span:last-child { color: var(--gold); font-weight: 700; }

@media (max-width: 768px) {
  .greek-nights-inner { grid-template-columns: 1fr; }
  .nights-btn { align-self: center; }
  .nights-menu-grid { grid-template-columns: 1fr; }
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--white);
}

.gallery .section-title { margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--brown);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,31,13,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.gallery-item.wide { grid-column: span 2; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
}

.testimonials .section-title { margin-bottom: 48px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }

.stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; gap: 2px; display: flex; }

.testimonial-card p {
  font-style: italic;
  color: var(--warm-gray);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author div { display: flex; flex-direction: column; }
.testimonial-author strong { font-size: 0.9rem; color: var(--brown); }
.testimonial-author span { font-size: 0.78rem; color: var(--warm-gray); }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact .section-title { margin-bottom: 52px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3,
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 28px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.info-item > i {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info-item strong { font-size: 0.85rem; color: var(--warm-gray); text-transform: uppercase; letter-spacing: 0.08em; }
.info-item span { font-size: 0.95rem; color: var(--brown); }
.info-item a { color: var(--terra); }
.info-item a:hover { text-decoration: underline; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.social-links a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--brown-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
  border: 1px solid var(--cream-dark);
}
.social-links a:hover {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
  transform: translateY(-3px);
}

/* ===== FORM ===== */
.contact-form {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.04em;
}

input, select, textarea {
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--brown);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--terra);
}
textarea { resize: vertical; min-height: 100px; }
select { appearance: none; cursor: pointer; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  color: #2a7a3b;
  background: #e8f5ec;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-success.show { display: flex; }

/* ===== MAP ===== */
.map-section {
  width: 100%;
  line-height: 0;
}
.map-section iframe {
  display: block;
  width: 100%;
  filter: sepia(20%) saturate(80%);
}

/* ===== FOOTER ===== */
.footer { background: var(--brown); }

.footer-top { padding: 70px 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo {
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

.footer-links h4 {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--gold); }
.footer-links li strong { color: rgba(255,255,255,0.85); }

.footer-social h4 {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-social .social-links a {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.08);
}
.footer-social .social-links a:hover { background: var(--terra); color: var(--white); }

.footer-address {
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-address i { color: var(--terra); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(193,68,14,0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--terra-dark); transform: translateY(-2px); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { gap: 40px; }
  .img-secondary { width: 160px; height: 160px; right: -16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* Navbar */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 80px 32px 40px;
    box-shadow: -4px 0 30px var(--shadow-lg);
    transition: right var(--transition);
  }
  .nav-links.open { right: 0; }
  .nav-links li a { color: var(--brown) !important; padding: 12px 0; display: block; border-bottom: 1px solid var(--cream-dark); }
  .nav-btn { background: var(--terra) !important; color: var(--white) !important; border-bottom: none !important; border-radius: 50px; text-align: center; margin-top: 16px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-images { order: -1; }
  .img-main img { height: 320px; }
  .img-secondary { right: 0; bottom: -20px; width: 130px; height: 130px; }
  .about-text { padding-left: 0; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Menu */
  .menu-grid .menu-section { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.tall { grid-row: auto; }
  .gallery-item.wide { grid-column: auto; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

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

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-badges { flex-direction: column; align-items: center; }
  .menu-tabs .tab-btn { padding: 8px 18px; font-size: 0.8rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .contact-form { padding: 24px 20px; }
  .back-to-top { bottom: 20px; right: 20px; }
}
