/* ==========================================================================
   HOUSE OF WINGS - FIVE GUYS INSPIRED RED & WHITE DESIGN SYSTEM
   Bournemouth's Ultimate Turkish Mangal Experience
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Five Guys Iconic Color Palette */
  --bg-main: #ffffff;
  --bg-subtle: #f8f9fa;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --bg-contrast: #111111;
  --bg-glass-nav: rgba(255, 255, 255, 0.96);
  
  /* Five Guys Red Colors */
  --fg-red: #d40029;
  --fg-red-dark: #b30022;
  --fg-red-light: #fff0f2;
  --fg-red-glow: rgba(212, 0, 41, 0.25);
  
  --text-pure: #111111;
  --text-main: #1f1f1f;
  --text-muted: #555555;
  --text-dim: #777777;
  
  --border-subtle: #e5e7eb;
  --border-card: #e9ecef;
  --border-red: rgba(212, 0, 41, 0.3);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-red: 0 8px 25px rgba(212, 0, 41, 0.3);
  
  /* Five Guys Style Typography */
  --font-logo: 'League Spartan', 'Montserrat', sans-serif;
  --font-display: 'League Spartan', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--bg-glass-nav);
  border-bottom: 2px solid var(--border-subtle);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
  padding: 12px 0;
  background: #ffffff;
  border-bottom: 2px solid var(--fg-red);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-crest {
  background: var(--fg-red);
  color: #ffffff;
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 1.2rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.brand-name {
  display: flex;
  flex-direction: column;
}

.brand-name .title {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--fg-red);
}

.brand-name .location-tag {
  font-family: var(--font-logo);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-pure);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-logo);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-pure);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--fg-red);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--fg-red);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-logo);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-pure);
}

.nav-phone:hover {
  color: var(--fg-red);
}

.nav-phone i {
  color: var(--fg-red);
}

.btn-justeat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fg-red);
  color: #ffffff !important;
  font-family: var(--font-logo);
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px var(--fg-red-glow);
  transition: all 0.25s ease;
}

.btn-justeat:hover {
  background: var(--fg-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--fg-red-glow);
}

.mobile-toggle {
  display: none;
  background: none;
  color: var(--text-pure);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 70px;
  background: #ffffff;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-backdrop img,
.hero-backdrop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9) contrast(1.08);
}

.hero-backdrop img {
  animation: heroLivingMotion 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroLivingMotion {
  0% {
    transform: scale(1.0);
  }
  50% {
    transform: scale(1.06) translateY(-4px);
  }
  100% {
    transform: scale(1.02) translateY(2px);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.78) 50%, rgba(255, 255, 255, 0.98) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--fg-red);
  color: #ffffff;
  font-family: var(--font-logo);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px var(--fg-red-glow);
}

.hero-title {
  font-family: var(--font-logo);
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--fg-red);
  margin-bottom: 18px;
}

.hero-title span {
  color: var(--text-pure);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #222222;
  font-weight: 700;
  font-family: var(--font-logo);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 780px;
  margin: 0 auto 36px;
  line-height: 1.4;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fg-red);
  color: #ffffff !important;
  font-family: var(--font-logo);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 20px var(--fg-red-glow);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid var(--fg-red);
}

.btn-primary:hover {
  background: var(--fg-red-dark);
  border-color: var(--fg-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(212, 0, 41, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--fg-red);
  font-family: var(--font-logo);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--fg-red);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--fg-red);
  color: #ffffff;
  transform: translateY(-3px);
}

.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background: #ffffff;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

.stars {
  color: #e6a100;
  font-size: 1rem;
  letter-spacing: 2px;
}

.proof-text {
  font-family: var(--font-logo);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-pure);
  text-transform: uppercase;
}

.proof-text strong {
  color: var(--fg-red);
}

/* ==========================================================================
   KEY HIGHLIGHTS BAR
   ========================================================================== */

.highlights-bar {
  background: var(--fg-red);
  color: #ffffff;
  padding: 24px 0;
  box-shadow: var(--shadow-md);
}

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #ffffff;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-family: var(--font-logo);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
}

.highlight-text p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ==========================================================================
   SIGNATURE DISHES SHOWCASE
   ========================================================================== */

.section {
  padding: 85px 0;
  position: relative;
  background: var(--bg-main);
}

.section.alt-bg {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-logo);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-red);
  background: var(--fg-red-light);
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-logo);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-pure);
  line-height: 1.1;
  margin-bottom: 14px;
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Feast Banner Showcase Card */
.feast-banner-card {
  background: #ffffff;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.feast-banner-card:hover {
  border-color: var(--fg-red);
}

.feast-image-container {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.feast-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feast-banner-card:hover .feast-image-container img {
  transform: scale(1.02);
}

.feast-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 2px solid var(--fg-red);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.feast-info h3 {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--fg-red);
}

.feast-info p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-pure);
}

/* Signature Dishes Grid */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dish-card {
  background: #ffffff;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.dish-card:hover {
  transform: translateY(-6px);
  border-color: var(--fg-red);
  box-shadow: var(--shadow-lg);
}

.dish-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #fdfdfd;
}

.dish-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dish-card:hover .dish-img-wrap img {
  transform: scale(1.05);
}

.dish-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  background: var(--fg-red);
  color: #ffffff;
  font-family: var(--font-logo);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.dish-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dish-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.dish-title {
  font-family: var(--font-logo);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-pure);
}

.dish-price {
  font-family: var(--font-logo);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--fg-red);
}

.dish-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.5;
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 2px solid var(--border-subtle);
}

.dish-sides {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-pure);
}

.dish-sides i {
  color: var(--fg-red);
}

.btn-order-card {
  padding: 8px 18px;
  background: var(--fg-red);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-family: var(--font-logo);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-order-card:hover {
  background: var(--fg-red-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   INTERACTIVE MENU SECTION WITH TABS
   ========================================================================== */

.menu-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 24px;
  background: #ffffff;
  border: 2px solid var(--border-subtle);
  color: var(--text-pure);
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  border-color: var(--fg-red);
  color: var(--fg-red);
}

.tab-btn.active {
  background: var(--fg-red);
  color: #ffffff;
  border-color: var(--fg-red);
  box-shadow: 0 4px 14px var(--fg-red-glow);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.menu-item-row {
  background: #ffffff;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.menu-item-row:hover {
  border-color: var(--fg-red);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.menu-item-thumb {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
  border: 1px solid var(--border-subtle);
}

.menu-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-details {
  flex-grow: 1;
}

.menu-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.menu-item-name {
  font-family: var(--font-logo);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-pure);
}

.menu-item-price {
  font-family: var(--font-logo);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--fg-red);
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 8px;
}

.menu-item-badges {
  display: flex;
  gap: 8px;
}

.badge-mini {
  font-family: var(--font-logo);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: #f0f0f0;
  color: var(--text-main);
}

.badge-mini.hot {
  background: var(--fg-red-light);
  color: var(--fg-red);
}

.badge-mini.halal {
  background: #e8f5e9;
  color: #2e7d32;
}

/* ==========================================================================
   ABOUT / MANGAL STORY
   ========================================================================== */

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

.about-image-stack {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

.about-float-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--fg-red);
  color: #ffffff;
  padding: 22px 28px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px var(--fg-red-glow);
  text-align: center;
}

.about-float-badge .num {
  font-family: var(--font-logo);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.about-float-badge .lbl {
  font-family: var(--font-logo);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
}

.about-content .section-title {
  text-align: left;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-logo);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-pure);
}

.feature-item i {
  color: var(--fg-red);
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */

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

.review-card {
  background: #ffffff;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--fg-red);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #e6a100;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 0.98rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--fg-red);
  color: #ffffff;
  font-family: var(--font-logo);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h5 {
  font-family: var(--font-logo);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-pure);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   DELIVERY / JUST EAT CALLOUT
   ========================================================================== */

.delivery-callout {
  background: var(--fg-red);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
  box-shadow: 0 10px 30px var(--fg-red-glow);
}

.delivery-content h3 {
  font-family: var(--font-logo);
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
}

.delivery-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  font-weight: 500;
}

.delivery-partners .btn-justeat {
  background: #ffffff;
  color: var(--fg-red) !important;
  font-size: 1.15rem;
  padding: 16px 32px;
}

.delivery-partners .btn-justeat:hover {
  background: #f0f0f0;
  color: var(--fg-red-dark) !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: #111111;
  color: #ffffff;
  border-top: 4px solid var(--fg-red);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about .brand-name .title {
  color: #ffffff;
}

.footer-about p {
  color: #aaaaaa;
  font-size: 0.92rem;
  margin: 16px 0 20px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: #222222;
  border: 1px solid #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.2s ease;
}

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

.footer-col h4 {
  font-family: var(--font-logo);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #aaaaaa;
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-col ul a:hover {
  color: var(--fg-red);
}

.footer-bottom {
  border-top: 1px solid #222222;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #777777;
}

/* ==========================================================================
   BOOK A TABLE MODAL
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border: 3px solid var(--fg-red);
  border-radius: var(--radius-md);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f0f0f0;
  color: var(--text-pure);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--fg-red);
  color: #fff;
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-header h3 {
  font-family: var(--font-logo);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--fg-red);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

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

.form-group.full {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-logo);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--text-pure);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  background: #f8f9fa;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-pure);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--fg-red);
  background: #ffffff;
}

.btn-submit-booking {
  width: 100%;
  padding: 16px;
  background: var(--fg-red);
  color: #ffffff;
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 1.15rem;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px var(--fg-red-glow);
}

.btn-submit-booking:hover {
  background: var(--fg-red-dark);
  transform: translateY(-2px);
}

/* Booking Success State */
.booking-success {
  text-align: center;
  padding: 20px 0;
  display: none;
}

.booking-success i {
  font-size: 3.5rem;
  color: #2e7d32;
  margin-bottom: 16px;
}

.booking-success h3 {
  font-family: var(--font-logo);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--fg-red);
  margin-bottom: 8px;
}

.booking-success p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* Closed Alert in Booking */
.closed-alert-box {
  background: #fff3cd;
  border: 2px solid #ffeeba;
  color: #856404;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.closed-alert-box.active {
  display: flex;
}
.closed-alert-box i {
  font-size: 1.2rem;
  color: #d40029;
}

/* ==========================================================================
   ORDER ONLINE MODAL (PICKUP & DELIVERY)
   ========================================================================== */

.order-tabs-nav {
  display: flex;
  background: #f1f3f5;
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 24px;
  gap: 6px;
}

.order-tab-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-main);
  font-family: var(--font-logo);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.order-tab-btn.active {
  background: #ffffff;
  color: var(--fg-red);
  box-shadow: var(--shadow-sm);
}

.order-tab-btn i {
  font-size: 1.1rem;
}

.order-tab-content {
  display: none;
}

.order-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Delivery Partners Grid */
.delivery-partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: #ffffff;
  transition: all 0.25s ease;
  text-decoration: none;
}

.partner-card:hover {
  border-color: var(--fg-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.partner-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.partner-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  flex-shrink: 0;
}

.partner-card.justeat .partner-icon {
  background: #ff8000;
  color: #ffffff;
}

.partner-card.ubereats .partner-icon {
  background: #06c167;
  color: #ffffff;
}

.partner-card.deliveroo .partner-icon {
  background: #00cdbc;
  color: #ffffff;
}

.partner-details h4 {
  font-family: var(--font-logo);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-pure);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.partner-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.partner-action {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--fg-red);
}

/* Order Summary Box */
.order-summary-box {
  background: var(--fg-red-light);
  border: 2px dashed var(--border-red);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-summary-box .label {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--text-pure);
}

.order-summary-box .total-price {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--fg-red);
}

/* Quantity selector */
.qty-stepper {
  display: flex;
  align-items: center;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #ffffff;
}

.qty-btn {
  width: 42px;
  height: 42px;
  background: #f8f9fa;
  color: var(--text-pure);
  font-weight: 900;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.qty-btn:hover {
  background: var(--fg-red);
  color: #ffffff;
}

.qty-input {
  width: 50px;
  text-align: center;
  font-family: var(--font-logo);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-pure);
  background: #ffffff;
}

/* WhatsApp Actions */
.btn-whatsapp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: #25d366;
  color: #ffffff !important;
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-whatsapp-action:hover {
  background: #1eb857;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  background: #25d366;
  color: #ffffff !important;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) rotate(6deg);
  background: #1eb857;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 70px;
  background: #111111;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-logo);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-md);
}

.whatsapp-float-btn:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Live Status Badge */
.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-logo);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.live-status-pill.open {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.live-status-pill.closed {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.live-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* Hours Schedule Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 6px 0;
  font-size: 0.9rem;
}

.hours-table td.day {
  font-family: var(--font-logo);
  font-weight: 800;
  color: var(--text-pure);
  text-transform: uppercase;
}

.hours-table td.time {
  text-align: right;
  font-weight: 600;
  color: var(--text-muted);
}

.hours-table tr.today {
  color: var(--fg-red);
}

.hours-table tr.today td.day,
.hours-table tr.today td.time {
  color: var(--fg-red);
  font-weight: 900;
}

/* Delivery Partners Multi Buttons */
.delivery-buttons-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-delivery-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 0.92rem;
  text-transform: uppercase;
  color: #ffffff !important;
  transition: all 0.2s ease;
}

.btn-delivery-partner.justeat {
  background: #ff8000;
}
.btn-delivery-partner.justeat:hover {
  background: #e67300;
  transform: translateY(-2px);
}

.btn-delivery-partner.ubereats {
  background: #06c167;
}
.btn-delivery-partner.ubereats:hover {
  background: #05a657;
  transform: translateY(-2px);
}

.btn-delivery-partner.deliveroo {
  background: #00cdbc;
}
.btn-delivery-partner.deliveroo:hover {
  background: #00b3a4;
  transform: translateY(-2px);
}

.btn-delivery-partner.pickup {
  background: #ffffff;
  color: var(--fg-red) !important;
  border: 2px solid #ffffff;
}
.btn-delivery-partner.pickup:hover {
  background: #f0f0f0;
  color: var(--fg-red-dark) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================================================== */

@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 24px;
    border-bottom: 2px solid var(--fg-red);
    gap: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .dishes-grid {
    grid-template-columns: 1fr;
  }
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .delivery-callout {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
  }
  .delivery-buttons-row {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .order-tabs-nav {
    flex-direction: column;
  }
}

/* ==========================================================================
   MODERN OPENING HOURS & CONTACT STYLES
   ========================================================================== */

.hours-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .hours-contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.hours-card {
  background: #ffffff;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hours-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bg-subtle);
}

.hours-card-header .icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(214, 0, 28, 0.1);
  color: var(--fg-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hours-card-header h3 {
  font-family: var(--font-logo);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-pure);
  text-transform: uppercase;
  margin: 0;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  transition: background 0.2s ease;
}

.hours-row:hover {
  background: #f1f2f6;
}

.hours-row.closed-row {
  background: #fff5f5;
  border-left: 3px solid var(--fg-red);
}

.hours-day {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-pure);
}

.hours-time {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: #2b2b2b;
  letter-spacing: 0.5px;
}

.hours-closed-badge {
  background: var(--fg-red);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Cards Column */
.contact-cards-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  background: #ffffff;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.contact-info-card .card-icon {
  width: 48px;
  height: 48px;
  background: var(--fg-red);
  color: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-card.whatsapp-card {
  background: #f0fdf4;
  border-color: #25d366;
}

.contact-info-card.whatsapp-card .card-icon {
  background: #25d366;
}

.contact-info-card .card-content h4 {
  font-family: var(--font-logo);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-pure);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-card .card-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

/* WhatsApp CTA Buttons */
.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-logo);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-whatsapp-cta:hover {
  background: #1ebc59;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.btn-nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: #ffffff !important;
  font-family: var(--font-logo);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}

.btn-nav-whatsapp:hover {
  background: #1ebc59;
  transform: translateY(-1px);
}

/* Floating WhatsApp Widget */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--font-logo);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse-whatsapp 2.5s infinite;
}

.floating-whatsapp-btn i {
  font-size: 1.45rem;
}

.floating-whatsapp-btn:hover {
  background: #1ebc59;
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.65);
  color: #ffffff;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 600px) {
  .floating-whatsapp-btn span {
    display: none;
  }
  .floating-whatsapp-btn {
    padding: 14px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
  .floating-whatsapp-btn i {
    font-size: 1.6rem;
  }
}

