/*
============================================================
SAFA FRIED CHICKEN & CAFE — STYLESHEET
============================================================

COLOR PALETTE:
  Primary Red:     #d32f2f
  Deep Red:        #b71c1c
  Warm Orange:     #e65100
  Light Orange:    #ff8f00
  Cream/Neutral:   #fff8f0
  Dark Text:       #1a1a1a
  Medium Text:     #4a4a4a
  Light Text:      #7a7a7a
  White:           #ffffff
  Dark Background: #1a0a00

FONTS:
  Headings:  Playfair Display (serif, elegant)
  Body/UI:   Poppins (sans-serif, clean)

HOW TO CHANGE COLORS:
  Find and replace the hex values above throughout this file.
  
HOW TO CHANGE FONTS:
  Update the Google Fonts link in index.html and 
  the font-family declarations below.
============================================================
*/


/* ============================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   Change colors site-wide by editing these values.
============================================================ */
:root {
  /* Brand Colors */
  --color-primary:       #d32f2f;
  --color-primary-dark:  #b71c1c;
  --color-primary-light: #ef5350;
  --color-orange:        #e65100;
  --color-orange-light:  #ff8f00;
  --color-uber:          #000000;
  --color-skip:          #e65100;

  /* Neutrals */
  --color-cream:         #fff8f0;
  --color-cream-dark:    #fdebd0;
  --color-dark:          #1a1a1a;
  --color-dark-bg:       #1a0a00;
  --color-text:          #333333;
  --color-text-light:    #666666;
  --color-white:         #ffffff;
  --color-border:        #e0d0c0;

  /* Typography */
  --font-heading:        'Playfair Display', Georgia, serif;
  --font-body:           'Poppins', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad:         5rem 0;
  --container-max:       1200px;
  --container-pad:       1.5rem;

  /* Border Radius */
  --radius-sm:           6px;
  --radius-md:           12px;
  --radius-lg:           20px;
  --radius-xl:           30px;

  /* Shadows */
  --shadow-sm:           0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:           0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:           0 16px 48px rgba(0,0,0,0.18);

  /* Transitions */
  --transition:          0.3s ease;
  --transition-slow:     0.5s ease;

  /* Navbar height */
  --navbar-height:       70px;
}


/* ============================================================
   RESET & BASE STYLES
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ============================================================
   UTILITY CLASSES
============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-pad {
  padding: var(--section-pad);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(211, 47, 47, 0.08);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-label-light {
  color: var(--color-cream);
  background: rgba(255, 248, 240, 0.15);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-header-light .section-title,
.section-header-light .section-subtitle {
  color: var(--color-white);
}

.hide-mobile {
  display: none;
}

/* ============================================================
   FADE-IN ANIMATION (scroll-triggered via JS)
============================================================ */
.fade-in-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
}

/* Uber Eats Button — Black */
.btn-uber {
  background-color: var(--color-uber);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-uber:hover,
.btn-uber:focus {
  background-color: #2d2d2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: var(--color-white);
}

/* SkipTheDishes Button — Orange */
.btn-skip {
  background-color: var(--color-skip);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.35);
}

.btn-skip:hover,
.btn-skip:focus {
  background-color: #bf360c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.5);
  color: var(--color-white);
}

/* Primary Red Button */
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.35);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-orange));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
  color: var(--color-white);
}

/* Directions button */
.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.btn-directions:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
}

/* Full-width button modifier */
.btn-full {
  width: 100%;
  margin-bottom: 0.75rem;
}

/* Button icon */
.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Text link button */
.btn-text-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-text-link:hover {
  color: var(--color-primary-dark);
  letter-spacing: 0.02em;
}


/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  background: rgba(26, 10, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.navbar-scrolled {
  background: rgba(26, 10, 0, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.logo-text-fallback {
  font-size: 1.5rem;
  color: var(--color-white);
}

.nav-brand-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-white);
  display: none; /* Hidden on mobile, shown on larger screens */
  line-height: 1.2;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

/* Order Online nav button - highlighted */
.nav-link-order {
  background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
  color: var(--color-white) !important;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
}

.nav-link-order:hover,
.nav-link-order:focus {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-orange));
  transform: scale(1.03);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

/* Hamburger open state — animates to X */
.hamburger-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /*
    TO UPDATE HERO BACKGROUND IMAGE:
    Change the URL below to your hero image path.
    Recommended: Replace images/hero.jpg with a high-quality food photo.
  */
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

/* Dark gradient overlay for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 10, 0, 0.45) 0%,
    rgba(26, 10, 0, 0.7) 50%,
    rgba(26, 10, 0, 0.85) 100%
  );
  z-index: 1;
}

/* Subtle texture overlay */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: calc(var(--navbar-height) + 2rem) 1.5rem 3rem;
}

/* Hero logo */
.hero-logo-wrap {
  margin: 0 auto 1.5rem;
}

.hero-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 8px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .amp {
  color: var(--color-orange-light);
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-orange-light);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* Hero order buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-buttons .btn {
  font-size: 1.05rem;
  padding: 1rem 2rem;
  min-width: 220px;
}

/* Scroll indicator */
.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}


/* ============================================================
   ORDER BANNER (Secondary order section)
============================================================ */
.order-banner {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-orange));
  padding: 2rem 0;
}

.order-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.order-banner-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.order-banner-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.order-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.order-banner-buttons .btn-uber {
  background: var(--color-white);
  color: var(--color-dark);
  box-shadow: none;
}

.order-banner-buttons .btn-uber:hover {
  background: var(--color-cream);
  color: var(--color-dark);
}

.order-banner-buttons .btn-skip {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.order-banner-buttons .btn-skip:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
}


/* ============================================================
   ABOUT SECTION
============================================================ */
.about {
  background-color: var(--color-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* About image */
.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Floating badge on image */
.about-badge {
  position: absolute;
  bottom: -18px;
  right: 24px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem

  ;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
}

.badge-icon {
  font-size: 1.8rem;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

/* About text */
.about-text .section-label {
  margin-bottom: 0.75rem;
}

.about-text .section-title {
  margin-bottom: 1.25rem;
}

.about-desc {
  color: var(--color-text);
  margin-bottom: 1rem;
  font-size: 0.97rem;
  line-height: 1.75;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.feature-icon {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1rem;
}


/* ============================================================
   MENU / POPULAR ITEMS SECTION
============================================================ */
.menu {
  background-color: var(--color-white);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Menu Card */
.menu-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.menu-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.06);
}

/* Menu card badge */
.menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.menu-badge.popular-2 {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.menu-badge.popular-3 {
  background: linear-gradient(135deg, #c0392b, #922b21);
}

.menu-card-body {
  padding: 1.25rem;
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.menu-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Menu section CTA */
.menu-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.menu-cta p {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.menu-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   GALLERY SECTION
============================================================ */
.gallery {
  background-color: var(--color-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item-large {
  grid-column: span 2;
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item-large .gallery-img {
  height: 260px;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.07);
}


/* ============================================================
   SPECIALS SECTION
============================================================ */
.specials {
  background-color: var(--color-white);
}

.specials-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Flyer image */
.flyer-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-border);
}

.flyer-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.flyer-img:hover {
  transform: scale(1.02);
}

/* Flyer placeholder (shown when no flyer.jpg exists) */
.flyer-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--color-border);
}

.flyer-placeholder-inner {
  text-align: center;
  padding: 2rem;
}

.flyer-placeholder-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.flyer-placeholder-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.flyer-placeholder-inner p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.flyer-update-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
  background: rgba(0,0,0,0.04);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.flyer-update-note code {
  background: rgba(0,0,0,0.07);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-size: 0.78rem;
}

/* Specials CTA sidebar */
.specials-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.specials-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-dark);
}

.specials-cta > p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

/* Hours block */
.specials-hours {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  margin-top: 0.5rem;
}

.specials-hours h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--color-text);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--color-border);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-note {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-top: 0.75rem;
  font-style: italic;
}


/* ============================================================
   LOCATION SECTION
============================================================ */
.location {
  background-color: var(--color-cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

/* Location info card */
.location-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(211, 47, 47, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-top: 2px;
}

.location-detail h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
}

.location-detail address,
.location-detail p {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.65;
}

.location-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

.location-phone:hover {
  color: var(--color-primary-dark);
}

.tap-to-call {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

/* Google Maps iframe */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  height: 380px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* ============================================================
   CONTACT SECTION
============================================================ */
.contact {
  background: linear-gradient(135deg, var(--color-dark-bg) 0%, #2d0d00 100%);
}

.contact .section-title,
.contact .section-subtitle {
  color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* Contact card */
.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.contact-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.contact-link {
  color: var(--color-orange-light);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  word-break: break-all;
}

.contact-link:hover {
  color: var(--color-white);
}

.contact-phone {
  font-size: 1.2rem;
}

.contact-address {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: center;
}

.contact-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

/* Order card variant */
.contact-card-order {
  border-color: rgba(230, 81, 0, 0.4);
  background: rgba(230, 81, 0, 0.08);
}

.contact-card-order .btn-uber,
.contact-card-order .btn-skip {
  margin-top: 0.25rem;
}


/* ============================================================
   FOOTER
============================================================ */
.footer {
  background-color: #0f0500;
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-white);
  line-height: 1.3;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

/* Footer nav links */
.footer-nav h4,
.footer-order h4,
.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-orange-light);
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-nav ul li a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

/* Footer order links */
.footer-order {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-order-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  width: fit-content;
}

.footer-order-link.uber {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.15);
}

.footer-order-link.uber:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-order-link.skip {
  background: rgba(230, 81, 0, 0.2);
  color: var(--color-orange-light);
  border: 1px solid rgba(230,81,0,0.3);
}

.footer-order-link.skip:hover {
  background: rgba(230, 81, 0, 0.35);
  color: var(--color-white);
}

/* Footer contact details */
.footer-contact {
  margin-top: 1.5rem;
}

.footer-contact-link {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.3rem 0;
  transition: var(--transition);
}

.footer-contact-link:hover {
  color: var(--color-white);
}

/* Footer bottom bar */
.footer-bottom {
  text-align: center;
  padding: 1.25rem var(--container-pad);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--color-white);
}


/* ============================================================
   FLOATING ORDER BUTTON
============================================================ */
.floating-order {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-order-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
  color: var(--color-white);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
  transition: var(--transition);
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 28px rgba(211, 47, 47, 0.6);
  color: var(--color-white);
}

/* Pulse animation on floating button */
.floating-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(211, 47, 47, 0.4);
  animation: pulse-ring 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}


/* ============================================================
   RESPONSIVE — TABLET (min-width: 640px)
============================================================ */
@media (min-width: 640px) {

  .hide-mobile {
    display: inline;
  }

  /* Menu grid — 2 columns */
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Gallery grid */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item-large {
    grid-column: span 2;
  }

  .gallery-img {
    height: 220px;
  }

  .gallery-item-large .gallery-img {
    height: 300px;
  }

  /* Contact grid — 2 columns */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* About features — single row */
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Specials */
  .specials-inner {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer grid */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================================
   RESPONSIVE — DESKTOP (min-width: 900px)
============================================================ */
@media (min-width: 900px) {

  /* Show brand name in nav */
  .nav-brand-name {
    display: block;
  }

  /* Hero buttons side by side */
  .hero-buttons .btn {
    min-width: 240px;
  }

  /* About — 2 columns */
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .about-img {
    height: 460px;
  }

  /* Menu grid — 3 columns */
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Gallery — richer layout */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
  }

  .gallery-item-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .gallery-item-large .gallery-img {
    height: 100%;
    min-height: 420px;
  }

  .gallery-img {
    height: 200px;
  }

  /* Location — 2 columns */
  .location-grid {
    grid-template-columns: 1fr 1.6fr;
    gap: 2.5rem;
    align-items: stretch;
  }

  .map-wrap {
    height: 100%;
    min-height: 420px;
  }

  /* Contact — 4 columns */
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Specials — sidebar layout */
  .specials-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }

  /* Footer — 3 columns */
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }

  /* Order banner inline */
  .order-banner-inner {
    flex-wrap: nowrap;
  }
}


/* ============================================================
   RESPONSIVE — LARGE DESKTOP (min-width: 1200px)
============================================================ */
@media (min-width: 1200px) {

  :root {
    --section-pad: 6rem 0;
  }

  .hero-logo {
    width: 110px;
    height: 110px;
  }

  .about-img {
    height: 500px;
  }

  .gallery-item-large .gallery-img {
    min-height: 480px;
  }
}


/* ============================================================
   MOBILE NAVIGATION (max-width: 767px)
============================================================ */
@media (max-width: 767px) {
.hero {
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    min-height: 100svh;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Nav menu — full screen dropdown */
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: rgba(26, 10, 0, 0.98);
    backdrop-filter: blur(16px);
    padding: 1.5rem 1.5rem 2rem;
    gap: 0.5rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    border-bottom: 2px solid rgba(211, 47, 47, 0.4);
    z-index: 999;
  }

  .nav-menu-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-link-order {
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.85rem 1rem;
  }

  /* Smaller hero buttons on mobile */
  .hero-buttons .btn {
    min-width: 100%;
    font-size: 0.97rem;
    padding: 0.9rem 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Order banner stacked */
  .order-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .order-banner-text h2 {
    font-size: 1.4rem;
  }

  .order-banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .order-banner-buttons .btn {
    width: 100%;
  }

  /* About features stacked on small mobile */
  .about-features {
    grid-template-columns: 1fr;
  }

  /* Contact grid single column */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Floating button smaller on mobile */
  .floating-btn {
    font-size: 0.88rem;
    padding: 0.75rem 1.1rem;
  }
}


/* ============================================================
   ACCESSIBILITY — Reduce motion preference
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero {
    background-attachment: scroll;
  }

  .fade-in-ready {
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   PRINT STYLES
   When someone prints the page, show only key info.
============================================================ */
@media print {
  .navbar,
  .floating-order,
  .hero-buttons,
  .order-banner,
  .map-wrap,
  .btn,
  .scroll-down {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  .hero {
    min-height: auto;
    background: none;
    padding: 2rem 0;
  }

  .hero-overlay {
    display: none;
  }

  .hero-title,
  .hero-tagline {
    color: #000;
    text-shadow: none;
  }
}