﻿/* =============================================
   BIRYANIWALA - Main Stylesheet
   Warm Indian Restaurant Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Open+Sans:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

/* ---- CSS Variables ---- */
:root {
  --dark-bg: #0d0500;
  --dark-bg2: #1a0a02;
  --dark-bg3: #241008;
  --gold: #c8a135;
  --gold-light: #e2c06a;
  --gold-dark: #9e7a1a;
  --red: #8b1a1a;
  --red-light: #b52525;
  --orange: #d4631e;
  --cream: #f5ede0;
  --text-light: #f0e8d8;
  --text-muted: #b8a48a;
  --text-dark: #1a0a02;
  --border-gold: rgba(200, 161, 53, 0.3);
  --shadow: 0 4px 30px rgba(0,0,0,0.5);
  --font-head: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
  --font-script: 'Great Vibes', cursive;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ---- Utility ---- */
.section-pad { padding: 90px 0; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.bg-dark2 { background-color: var(--dark-bg2); }
.bg-dark3 { background-color: var(--dark-bg3); }

.section-label {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span { color: var(--gold); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 40px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border-gold);
}
.divider-icon {
  color: var(--gold);
  font-size: 1.4rem;
}
.divider.center { justify-content: center; }
.divider.center .divider-line { max-width: 120px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

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

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover {
  background: transparent;
  color: var(--red-light);
  border-color: var(--red-light);
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--dark-bg);
  border-bottom: 1px solid var(--border-gold);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--text-muted); }
.top-bar a:hover { color: var(--gold); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 18px; }
.top-bar i { color: var(--gold); margin-right: 5px; }

/* ---- Header / Navbar ---- */
.site-header {
  background: rgba(13, 5, 0, 0.97);
  border-bottom: 2px solid var(--border-gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.logo-wrap { display: flex; align-items: center; gap: 14px; }

.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}
.logo-text span {
  display: block;
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.logo-badge {
  background: var(--red);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 3px;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: 0.3s;
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  display: none;
  background: var(--dark-bg2);
  border-top: 1px solid var(--border-gold);
  padding: 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(200,161,53,0.1);
}
.mobile-menu a:hover { color: var(--gold); }

/* ---- Hero Slider ---- */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,5,0,0.82) 0%, rgba(26,10,2,0.55) 60%, rgba(13,5,0,0.3) 100%);
}

.hero-slide-1 {
  background-image: url('https://images.unsplash.com/photo-1563379091339-03b21ab4a4f8?w=3840&q=100&auto=format&fit=crop');
}
.hero-slide-2 {
  background-image: url('https://images.unsplash.com/photo-1596797038530-2c107229654b?w=3840&q=100&auto=format&fit=crop');
}
.hero-slide-3 {
  background-image: url('https://images.unsplash.com/photo-1567188040759-fb8a883dc6d8?w=3840&q=100&auto=format&fit=crop');
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 680px;
  animation: fadeInUp 0.8s ease;
}

.hero-script {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span { color: var(--gold); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 34px;
  opacity: 0.9;
  max-width: 500px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(200,161,53,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.announcement-bar a { color: var(--gold-light); text-decoration: underline; }

/* ---- Hours Strip ---- */
.hours-strip {
  background: var(--dark-bg3);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 18px 0;
}
.hours-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hour-item { text-align: center; }
.hour-item .day {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 3px;
}
.hour-item .time {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hours-divider {
  width: 1px;
  height: 36px;
  background: var(--border-gold);
}

/* ---- About Section ---- */
.about-section { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--dark-bg);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .years {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-img-badge .years-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-list { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-list-icon {
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-list-text { font-size: 0.93rem; color: var(--text-muted); }

/* ---- Features Strip ---- */
.features-strip {
  background: var(--gold);
  padding: 36px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.feature-item { padding: 10px; }
.feature-icon { font-size: 2.2rem; color: var(--dark-bg); margin-bottom: 8px; }
.feature-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 4px;
}
.feature-text { font-size: 0.8rem; color: rgba(26,10,2,0.7); }

/* ---- Menu Section ---- */
.menu-section { padding: 90px 0; }
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.menu-tab {
  padding: 9px 20px;
  border: 1.5px solid var(--border-gold);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
}
.menu-tab:hover,
.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark-bg);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.menu-card {
  background: var(--dark-bg2);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
}
.menu-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,161,53,0.15);
}
.menu-card-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.menu-card-body { flex: 1; }
.menu-card-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.menu-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.4;
}
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-card-price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.menu-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}
.tag-veg { background: rgba(40,140,40,0.2); color: #4caf50; border: 1px solid rgba(40,140,40,0.3); }
.tag-nonveg { background: rgba(180,30,30,0.2); color: #e57373; border: 1px solid rgba(180,30,30,0.3); }
.tag-spicy { background: rgba(200,100,30,0.2); color: #ff8c42; border: 1px solid rgba(200,100,30,0.3); }

/* ---- Categories Grid ---- */
.categories-section { padding: 90px 0; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-card {
  background: var(--dark-bg2);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.cat-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(200,161,53,0.2);
}
.cat-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.cat-card-body { padding: 16px; }
.cat-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.cat-card-count { font-size: 0.78rem; color: var(--gold); }

/* ---- Specials Banner ---- */
.specials-banner {
  background: linear-gradient(135deg, var(--red) 0%, #5a0e0e 100%);
  padding: 60px 0;
}
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.special-item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: rgba(0,0,0,0.2);
  transition: all 0.3s;
}
.special-item:hover { background: rgba(0,0,0,0.4); border-color: var(--gold-light); }
.special-item .special-icon { font-size: 2.6rem; margin-bottom: 14px; }
.special-item h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.special-item p { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* ---- Catering Section ---- */
.catering-section { padding: 90px 0; }
.catering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.catering-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 300px;
  cursor: pointer;
}
.catering-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.catering-card:hover .catering-card-img { transform: scale(1.06); }
.catering-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,5,0,0.9) 0%, rgba(13,5,0,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: all 0.3s;
}
.catering-card:hover .catering-card-overlay {
  background: linear-gradient(to top, rgba(13,5,0,0.95) 0%, rgba(13,5,0,0.5) 60%, rgba(13,5,0,0.1) 100%);
}
.catering-card-text h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 4px;
}
.catering-card-text p { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Testimonials ---- */
.testimonials-section {
  padding: 90px 0;
  background: var(--dark-bg2);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.testi-card {
  background: var(--dark-bg3);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 30px 24px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 22px;
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream);
}
.testi-date { font-size: 0.75rem; color: var(--text-muted); }
.testi-source-note {
  margin: 10px auto 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

/* ---- Gallery Section ---- */
.gallery-section { padding: 90px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  min-height: 180px;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,5,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ---- Happy Hour ---- */
.happy-hour-section {
  background: linear-gradient(135deg, #0d0500 0%, #1a0800 50%, #0d0500 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.happy-hour-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1544145945-f90425340c7e?w=3840&q=100&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.08;
}
.happy-hour-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.happy-hour-time {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 20px 0;
  letter-spacing: 2px;
}
.happy-hour-days { color: var(--text-muted); font-size: 1rem; margin-bottom: 30px; }

/* ---- Contact Section ---- */
.contact-section { padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,161,53,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-value { font-size: 0.9rem; color: var(--text-muted); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark-bg2);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light);
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- Gift Card ---- */
.gift-card-section {
  padding: 90px 0;
  background: var(--dark-bg2);
}
.gift-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.gift-card-visual {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  border-radius: 16px;
  padding: 40px;
  color: var(--dark-bg);
  box-shadow: 0 20px 50px rgba(200,161,53,0.3);
  position: relative;
  overflow: hidden;
}
.gift-card-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.gift-card-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.gift-card-amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.gift-card-tagline { font-size: 0.85rem; opacity: 0.7; }

/* ---- Map ---- */
.map-section iframe {
  width: 100%;
  height: 380px;
  border: none;
  filter: grayscale(40%) invert(90%) hue-rotate(180deg);
  opacity: 0.85;
}

/* ---- Footer ---- */
.site-footer {
  background: #070200;
  border-top: 2px solid var(--border-gold);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-gold);
}

.footer-brand-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 320px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.social-btn:hover {
  background: var(--gold);
  color: var(--dark-bg);
  border-color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-gold);
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 6px;
  align-items: baseline;
}
.footer-hours p {
  display: contents;
}
.footer-hours p .fh-day {
  font-size: 0.83rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.footer-hours p span:not(.fh-day) {
  font-size: 0.83rem;
  color: var(--cream);
}

.newsletter-form { display: flex; margin-top: 16px; }
.newsletter-form input {
  flex: 1;
  background: var(--dark-bg2);
  border: 1px solid var(--border-gold);
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--text-light);
  outline: none;
}
.newsletter-form button {
  background: var(--gold);
  border: none;
  padding: 10px 16px;
  border-radius: 0 4px 4px 0;
  color: var(--dark-bg);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom a { color: var(--gold); }

/* ---- Order Online Strip ---- */
.order-strip {
  background: var(--dark-bg2);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 22px 0;
}
.order-strip.order-strip-nav {
  padding: 12px 0;
  background: #110800;
  border-top: none;
  border-bottom: 1px solid rgba(200,161,53,0.25);
}
.order-strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.order-strip-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
  margin-right: 6px;
}
.order-strip-label span { color: var(--gold); }

.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.order-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.4); }
.order-btn i { font-size: 1rem; }
.order-btn-clover  { background: #4a7c59; color: #fff; border-color: #4a7c59; }
.order-btn-clover:hover  { background: transparent; color: #6ab584; border-color: #6ab584; }
.order-btn-doordash { background: #ff3008; color: #fff; border-color: #ff3008; }
.order-btn-doordash:hover { background: transparent; color: #ff3008; border-color: #ff3008; }
.order-btn-grubhub  { background: #f63440; color: #fff; border-color: #f63440; }
.order-btn-grubhub:hover  { background: transparent; color: #f63440; border-color: #f63440; }
.order-btn-ubereats { background: #06c167; color: #000; border-color: #06c167; }
.order-btn-ubereats:hover { background: transparent; color: #06c167; border-color: #06c167; }

/* Full section version (used on food page) */
.order-section { padding: 70px 0; }
.order-section-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.order-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.order-platform-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.order-platform-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.order-platform-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.order-platform-sub { font-size: 0.78rem; opacity: 0.75; }
.opc-clover   { background: rgba(74,124,89,0.15); border-color: rgba(74,124,89,0.4); color: #fff; }
.opc-clover:hover { background: rgba(74,124,89,0.3); border-color: #4a7c59; }
.opc-clover .order-platform-icon { background: #4a7c59; color: #fff; }
.opc-doordash { background: rgba(255,48,8,0.1); border-color: rgba(255,48,8,0.35); color: #fff; }
.opc-doordash:hover { background: rgba(255,48,8,0.2); border-color: #ff3008; }
.opc-doordash .order-platform-icon { background: #ff3008; color: #fff; }
.opc-grubhub  { background: rgba(246,52,64,0.1); border-color: rgba(246,52,64,0.35); color: #fff; }
.opc-grubhub:hover { background: rgba(246,52,64,0.2); border-color: #f63440; }
.opc-grubhub .order-platform-icon { background: #f63440; color: #fff; }
.opc-ubereats { background: rgba(6,193,103,0.1); border-color: rgba(6,193,103,0.3); color: #fff; }
.opc-ubereats:hover { background: rgba(6,193,103,0.2); border-color: #06c167; }
.opc-ubereats .order-platform-icon { background: #06c167; color: #000; }

.order-strip-nav .order-strip-inner { gap: 10px; }
.order-strip-nav .order-btn { padding: 7px 14px; font-size: 0.8rem; }
.order-strip-nav .order-strip-label { font-size: 0.88rem; }

@media (max-width: 768px) {
  .order-section-grid { grid-template-columns: repeat(2, 1fr); }
  .order-strip-inner { gap: 10px; }
  .order-btn { padding: 9px 14px; font-size: 0.78rem; }
  .order-strip-nav .order-btn { padding: 6px 10px; font-size: 0.73rem; }
  .order-btn-label { display: none; }
  .order-btn i { margin: 0; font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .order-section-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .order-platform-card { padding: 20px 12px; }
  .order-platform-icon { width: 44px; height: 44px; font-size: 1.3rem; }
}

.footer-halal {
  background: #1a5c1a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---- Executive Director Card ---- */
.ed-card {
  background: linear-gradient(135deg, rgba(200,161,53,0.12) 0%, rgba(139,26,26,0.1) 100%);
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  padding: 28px 26px;
  margin-top: 28px;
}
.ed-card-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-bg);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.ed-card-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
}
.ed-card-note {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.ed-card-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark-bg);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 6px;
  transition: all 0.3s;
  text-decoration: none;
}
.ed-card-phone:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,161,53,0.3);
}
.ed-card-phone i { font-size: 0.95rem; }

/* Catering page full-width ED banner */
.ed-banner {
  background: linear-gradient(135deg, var(--dark-bg3) 0%, rgba(139,26,26,0.15) 100%);
  border-top: 2px solid var(--border-gold);
  border-bottom: 2px solid var(--border-gold);
  padding: 60px 0;
}
.ed-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.ed-banner-text .ed-card-badge { margin-bottom: 10px; }
.ed-banner-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.ed-banner-title span { color: var(--gold); }
.ed-banner-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

@media (max-width: 768px) {
  .ed-banner-inner { grid-template-columns: 1fr; gap: 24px; }
  .ed-banner-title { font-size: 1.4rem; }
  .ed-card-phone { font-size: 0.95rem; }
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  height: 340px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,5,0,0.75);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content .section-label { display: block; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img-main { height: 360px; }
  .about-img-badge { right: 10px; bottom: -14px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .catering-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }

  /* Top bar */
  .top-bar .top-bar-left { flex-wrap: wrap; gap: 6px; }
  .top-bar .top-bar-right { flex-wrap: wrap; gap: 6px; font-size: 0.75rem; }

  /* Typography */
  .section-title { font-size: 1.9rem; }
  .section-label { font-size: 1.8rem; }

  /* Hero */
  .hero { height: 72vh; min-height: 460px; }
  .hero-title { font-size: 2rem; }
  .hero-script { font-size: 2rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-btns { gap: 10px; }
  .hero-btns .btn { padding: 11px 22px; font-size: 0.82rem; }

  /* Hours strip */
  .hours-grid { flex-direction: column; gap: 10px; align-items: flex-start; padding: 0 10px; }
  .hours-divider { display: none; }
  .hour-item { display: flex; gap: 10px; align-items: baseline; text-align: left; }
  .hour-item .day { min-width: 90px; }

  /* About */
  .about-section { padding: 60px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-main { height: 280px; }
  .about-img-badge { right: 0; bottom: -14px; padding: 16px; }
  .about-img-badge .years { font-size: 2rem; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Categories */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cat-card-img { height: 120px; }

  /* Specials */
  .specials-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Menu cards */
  .menu-grid { grid-template-columns: 1fr; }
  .menu-tabs { gap: 6px; }

  /* Catering */
  .catering-grid { grid-template-columns: 1fr; }
  .catering-card { height: 220px; }

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

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }

  /* Happy hour */
  .happy-hour-time { font-size: 2.4rem; }


  /* Gift card */
  .gift-card-inner { grid-template-columns: 1fr; }
  .gift-card-amount { font-size: 2.2rem; }

  /* Page hero */
  .page-hero { height: 220px; }
  .page-hero .section-title { font-size: 1.7rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Sections */
  .section-pad { padding: 60px 0; }
}

/* ---- Small Mobile (≤480px) ---- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Typography */
  .section-title { font-size: 1.6rem; }
  .section-label { font-size: 1.6rem; }

  /* Hero */
  .hero { height: 65vh; min-height: 400px; }
  .hero-title { font-size: 1.75rem; line-height: 1.2; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }

  /* Logo */
  .logo-text { font-size: 1.4rem; }
  .logo-img { height: 48px; }

  /* Categories */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card-img { height: 100px; }
  .cat-card-title { font-size: 0.85rem; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-icon { font-size: 1.7rem; }
  .feature-title { font-size: 0.88rem; }

  /* About badge */
  .about-img-badge { display: none; }

  /* Hours */
  .hour-item .day { min-width: 70px; font-size: 0.7rem; }
  .hour-item .time { font-size: 0.78rem; }

  /* Announcement bar */
  .announcement-bar { font-size: 0.78rem; padding: 8px; }

  /* Top bar — hide on very small */
  .top-bar { display: none; }

  /* Buttons */
  .btn { padding: 11px 22px; font-size: 0.82rem; }

  /* Page hero */
  .page-hero { height: 180px; }
  .page-hero .section-title { font-size: 1.4rem; }

  /* Form */
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 1rem; }

  /* Footer */
  .site-footer { padding: 50px 0 0; }
  .footer-social { flex-wrap: wrap; }
}
