/* =============================================
   RESTAURANT WEBSITE - BARAB INSPIRED THEME
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #eb1400;
  --red-dark:  #c01000;
  --orange:    #f5a623;
  --cream:     #f2eee1;
  --cream-dark:#e8e2cd;
  --green:     #2d7a5f;
  --black:     #121212;
  --grey:      #6c6c6c;
  --white:     #ffffff;
  --shadow:    0 8px 32px rgba(0,0,0,0.10);
  --radius:    16px;
  --transition:0.35s cubic-bezier(.25,.8,.25,1);
}

html, body { 
  overflow-x: hidden !important; 
  width: 100% !important; 
  max-width: 100vw !important;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch; /* Smooth vertical scroll for iOS */
  /* Prevent any child element from causing horizontal scroll */
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ---- TYPOGRAPHY ---- */
.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 24px;
}

.red-text      { color: var(--red); }
.red-text-dark { color: var(--red-dark); }

.section-header { text-align: center; margin-bottom: 48px; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  border: none; cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(110%);
  transition: transform 0.4s ease;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(235,20,0,0.35); }
.btn-primary:hover::after { transform: translateX(-110%); }
.btn-primary.full { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--black);
  color: var(--black);
  padding: 12px 34px;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  transition: var(--transition);
}
.btn-white:hover { background: var(--black); color: var(--white); }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: #1a1a1a;
  color: #ccc;
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-contact { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-contact span { display: flex; align-items: center; gap: 6px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid #444;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: #ccc;
  transition: var(--transition);
}
.topbar-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* =============================================
   NAV HEADER
   ============================================= */
.nav-header {
  position: sticky;
  top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.nav-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.14); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-icon { font-size: 32px; }
.logo-text  { display: flex; flex-direction: column; }
.logo-name  { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 24px; color: var(--black); line-height: 1; transform: translateY(-4px); }
.logo-sub   { font-size: 10px; color: var(--red); letter-spacing: 1px; font-weight: 600; }

.main-nav { display: flex; gap: 4px; }
.nav-link {
  padding: 8px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--red);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link:hover::after, .nav-link.active::after { left: 16px; right: 16px; }

.book-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.book-btn:hover { background: var(--red-dark); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   MOBILE OVERLAY — Clean Modern Drawer
   ============================================= */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
}
.mobile-overlay::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}
.mobile-overlay.open {
  visibility: visible;
  pointer-events: all;
}
.mobile-overlay.open::before { opacity: 1; }

.mobile-overlay-inner {
  position: absolute;
  top: 0; right: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.mobile-overlay.open .mobile-overlay-inner {
  transform: translateX(0);
}

/* ---- Overlay Header ---- */
.mobile-overlay-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 24px;
  background: #fdfaf5;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  position: relative;
}
.close-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.05);
  border: none;
  color: #333;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}
.close-overlay:hover { background: rgba(235,20,0,0.1); color: #eb1400; }

.mobile-overlay-brand {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
}
.overlay-logo-img { height: 75px; object-fit: contain; }
.overlay-logo-text {
  color: #111;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px;
}

/* ---- Nav Cards ---- */
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  flex: 1;
}
.mobile-nav-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  text-decoration: none;
  color: #333;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.mobile-nav-card:last-child { border-bottom: none; }
.mobile-nav-card:hover,
.mobile-nav-card:active {
  color: #eb1400;
  background: rgba(0,0,0,0.02);
  border-radius: 8px;
  border-bottom-color: transparent;
  transform: translateX(-4px);
}
.mobile-nav-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(235,20,0,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: #eb1400;
  flex-shrink: 0;
  transition: background 0.2s;
}
.mobile-nav-card:hover .mobile-nav-icon {
  background: #eb1400;
  color: #fff;
}
.mobile-nav-label { flex: 1; }
.mobile-nav-arrow {
  color: #ccc;
  font-size: 11px;
  transition: transform 0.2s, color 0.2s;
}
.mobile-nav-card:hover .mobile-nav-arrow { color: #eb1400; transform: translateX(-4px); }

/* Variants */
.mobile-nav-card.highlight {
  background: #eb1400;
  color: #fff;
  border-radius: 12px;
  border: none;
  margin-top: 12px;
  box-shadow: 0 4px 15px rgba(235,20,0,0.25);
}
.mobile-nav-card.highlight .mobile-nav-icon { background: rgba(255,255,255,0.2); color: #fff; }
.mobile-nav-card.highlight .mobile-nav-arrow { color: #fff; }
.mobile-nav-card.highlight:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(235,20,0,0.35); background: #d01100; color: #fff;}

.mobile-nav-card.danger { color: #eb1400; }
.mobile-nav-card.danger .mobile-nav-icon { background: rgba(255,0,0,0.08); color: #eb1400; }
.mobile-nav-card.danger:hover { background: rgba(235,20,0,0.05); }
.mobile-nav-card.danger:hover .mobile-nav-icon { background: #eb1400; color: #fff; }

/* ---- Overlay Footer (Social) ---- */
.mobile-overlay-footer {
  padding: 20px;
  background: #fdfaf5;
  border-top: 1px dashed rgba(0,0,0,0.06);
  display: flex;
  gap: 12px;
  justify-content: center;
}
.overlay-social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.overlay-social-btn:hover { transform: scale(1.1); box-shadow: 0 6px 15px rgba(0,0,0,0.15); }
.overlay-social-btn.whatsapp  { background: #25D366; }
.overlay-social-btn.facebook  { background: #1877F2; }
.overlay-social-btn.phone     { background: #eb1400; }


/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: var(--cream);
  min-height: calc(100vh - 115px);
  display: flex; align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden !important;
  max-width: 100vw;
}

.hero-bg-decor { position: absolute; inset: 0; pointer-events: none; }
.decor-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.decor-1 {
  width: 600px; height: 600px;
  background: var(--red);
  top: -200px; left: -200px;
}
@media (max-width: 768px) { .decor-1 { display: none !important; } }

.decor-2 {
  width: 400px; height: 400px;
  background: var(--orange);
  bottom: -100px; right: -100px;
}
@media (max-width: 768px) { .decor-2 { display: none !important; } }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 90px);
  line-height: 1;
  color: var(--black);
  margin-bottom: 24px;
}
.hero-title .red-text { color: var(--red); }

.hero-desc {
  font-size: 17px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-btns { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat-item  { text-align: center; }
.stat-num   { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 800; color: var(--red); }
.stat-label { font-size: 13px; color: var(--grey); font-weight: 600; }
.stat-divider { width: 1px; height: 40px; background: var(--cream-dark); }

/* Hero image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-blob {
  width: 480px;
  height: 480px;
  max-width: 90vw;
  max-height: 90vw;
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 60%;
  background: linear-gradient(135deg, var(--cream-dark), var(--white));
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  animation: blob-morph 8s ease-in-out infinite;
}
@media (max-width: 576px) { .hero-img-blob { width: 280px; height: 280px; } }
@keyframes blob-morph {
  0%,100% { border-radius: 60% 40% 50% 70% / 50% 60% 40% 60%; }
  33%     { border-radius: 40% 60% 70% 30% / 60% 40% 60% 40%; }
  66%     { border-radius: 50% 50% 40% 60% / 40% 70% 30% 60%; }
}
.hero-img {
  width: 90%; height: 90%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.5s ease;
}
.hero-img-blob:hover .hero-img { transform: scale(1.05); }

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.badge-fresh { top: 48px; right: -10px; color: var(--green); animation-delay: 0s; }
.badge-fast  { bottom: 80px; left: -10px; color: var(--red); animation-delay: 1.5s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.scroll-dot {
  width: 24px; height: 40px;
  border: 2px solid var(--grey);
  border-radius: 16px;
  position: relative;
}
.scroll-dot::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--red);
  border-radius: 4px;
  animation: scroll-bounce 1.5s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%,100% { top: 6px; opacity: 1; }
  100%    { top: 20px; opacity: 0; }
}

/* =============================================
   CATEGORIES
   ============================================= */
.categories {
  padding: 100px 0;
  background: var(--white);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cat-card {
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.cat-card:hover { transform: translateY(-8px); }

.cat-arch {
  width: 100%;
  padding-bottom: 120%;
  border-radius: 50% 50% 50% 50% / 0 0 100% 100%;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  transition: var(--transition);
}
.cat-card:hover .cat-arch { background: var(--cream-dark); }
.cat-arch img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-arch img { transform: translate(-50%, -55%) scale(1.1); }

.cat-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px;
  margin-bottom: 4px;
}
.cat-card p { font-size: 13px; color: var(--grey); }

/* =============================================
   MENU SECTION
   ============================================= */
.menu-section {
  padding: 100px 0;
  background: var(--cream);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid var(--cream-dark);
  background: var(--white);
  font-family: 'Cairo', sans-serif;
  font-weight: 600; font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--black);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.13); }

.menu-card-img {
  position: relative;
  background: var(--cream);
  padding: 10px;
  display: flex; align-items: center; justify-content: center;
  min-height: 180px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 8px;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08) rotate(-2deg); }

.price-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px;
}

.menu-card-body { padding: 20px 24px; }
.menu-card-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 22px;
  margin-bottom: 8px;
}
.menu-card-body p { font-size: 14px; color: var(--grey); margin-bottom: 16px; line-height: 1.6; }

.add-btn {
  background: none;
  border: 2px solid var(--red);
  color: var(--red);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700; font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.add-btn:hover { background: var(--red); color: var(--white); }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding: 100px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  padding-top: 24px; padding-right: 24px;
}
.about-img-frame::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 80%; height: 80%;
  border: 3px solid var(--red);
  border-radius: var(--radius);
  z-index: 0;
}
.about-img {
  position: relative; z-index: 1;
  border-radius: var(--radius);
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  object-fit: cover;
  height: 450px;
}
.about-image-col { position: relative; }
.about-years-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(235,20,0,0.3);
  z-index: 2;
}
.years-num  { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 48px; line-height: 1; }
.years-label{ display: block; font-size: 14px; font-weight: 600; }

.about-desc {
  font-size: 16px; color: var(--grey); line-height: 1.8;
  margin-bottom: 32px;
}
.about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.feature-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.feature-item h4 { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.feature-item p  { font-size: 14px; color: var(--grey); }

/* =============================================
   OFFER BANNER
   ============================================= */
.offer-banner {
  background: var(--red);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.offer-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px,
    transparent 0, transparent 50%
  );
  background-size: 24px 24px;
}
.offer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.offer-text { color: var(--white); }
.offer-label { font-size: 14px; font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; opacity: 0.9; }
.offer-text h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(28px, 4vw, 48px); margin-bottom: 8px; }
.offer-text h2 span { color: var(--orange); }
.offer-text p  { font-size: 15px; opacity: 0.85; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-section { padding: 100px 0; background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 700; font-size: 18px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { padding: 100px 0; background: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi-card.featured {
  background: var(--red);
  color: var(--white);
  transform: scale(1.04);
}
.testi-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.stars { font-size: 18px; margin-bottom: 16px; }
.testi-card p { font-size: 15px; line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testi-card.featured p { color: rgba(255,255,255,0.9); }

.testi-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  flex-shrink: 0;
}
.testi-card.featured .author-avatar { background: rgba(255,255,255,0.2); }
.testi-author strong { display: block; font-weight: 700; font-size: 15px; }
.testi-author span { font-size: 12px; color: var(--grey); }
.testi-card.featured .testi-author span { color: rgba(255,255,255,0.7); }

/* =============================================
   CONTACT
   ============================================= */
.contact-section { padding: 100px 0; background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.info-items { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.info-item  { display: flex; align-items: flex-start; gap: 16px; }
.info-icon  { font-size: 24px; flex-shrink: 0; }
.info-item strong { display: block; font-weight: 700; margin-bottom: 2px; }
.info-item p { font-size: 14px; color: var(--grey); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 28px;
  margin-bottom: 28px; text-align: center;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  background: var(--white);
  color: var(--black);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--red); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #111;
  color: #ccc;
  padding: 80px 0 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-col h4 { color: var(--white); font-size: 18px; margin-bottom: 20px; font-weight: 700; }
.footer-col p  { font-size: 14px; line-height: 1.7; color: #aaa; }

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; }
.footer-logo .logo-icon { font-size: 32px; }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: #222; color: #ccc;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: #aaa; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col ul a::before { content: '←'; opacity: 0; transition: var(--transition); color: var(--red); }
.footer-col ul a:hover { color: var(--red); padding-right: 8px; }
.footer-col ul a:hover::before { opacity: 1; }

.hours-list { list-style: none !important; }
.hours-list li {
  display: flex; justify-content: space-between;
  font-size: 14px; color: #aaa; padding: 6px 0;
  border-bottom: 1px solid #222;
}
.open-now span { color: var(--orange); font-weight: 700; }

.newsletter-form { display: flex; gap: 8px; margin: 16px 0; }
.newsletter-form input {
  flex: 1; padding: 10px 16px;
  background: #222; border: 1px solid #333; border-radius: 8px;
  color: var(--white); font-size: 14px; outline: none;
  font-family: 'Cairo', sans-serif;
}
.newsletter-form input::placeholder { color: #666; }
.newsletter-form button {
  background: var(--red); color: var(--white);
  border: none; padding: 10px 18px; border-radius: 8px;
  font-weight: 700; cursor: pointer; transition: var(--transition);
  white-space: nowrap; font-family: 'Cairo', sans-serif;
}
.newsletter-form button:hover { background: var(--red-dark); }

.footer-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 8px; }
.footer-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; opacity: 0.7; transition: var(--transition); }
.footer-gallery img:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid #222;
  padding: 20px 24px;
  text-align: center;
  font-size: 13px; color: #555;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-top {
  position: fixed;
  bottom: 40px; left: 40px;
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--white);
  border: none; border-radius: 50%;
  font-size: 20px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(235,20,0,0.4);
  transition: var(--transition);
  opacity: 0; transform: translateY(20px);
  z-index: 999;
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* =============================================
   CART TOAST
   ============================================= */
.cart-toast {
  position: fixed;
  bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #111;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: all 0.4s ease;
  white-space: nowrap;
}
.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =============================================
   ANIMATIONS (AOS-like)
   ============================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="zoom-in"]    { transform: scale(0.95); }
[data-aos].aos-animate  { opacity: 1 !important; transform: none !important; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner      { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { display: none; }
  .hero-btns       { justify-content: center; }
  .hero-stats      { justify-content: center; }
  .hero-desc       { margin: 0 auto 36px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid       { grid-template-columns: repeat(2, 1fr); }
  .about-inner     { grid-template-columns: 1fr; }
  .contact-inner   { grid-template-columns: 1fr; }
  .testi-grid      { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav  { display: none; }
  .book-btn  { display: none; }
  .hamburger { display: flex; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .form-row  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-contact { display: none; }
  .offer-inner { flex-direction: column; text-align: center; }

  /* ---- CRITICAL: Prevent horizontal scroll on mobile ---- */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* ---- MOBILE NAV HEADER FIX ---- */
  .nav-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
    left: 0;
    right: 0;
  }
  .nav-inner {
    height: 64px;
    gap: 10px;
    padding: 0 14px;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
  }
  /* Logo area: shrink so it doesn't push buttons off */
  .logo {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
    overflow: hidden;
  }
  .logo img {
    height: 38px !important;
    width: auto;
    flex-shrink: 0;
  }
  .logo-text {
    overflow: hidden;
  }
  .logo-name {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .logo-sub {
    font-size: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* Actions (login btn + hamburger): stay on the right, don't shrink */
  .nav-inner > .d-flex {
    flex-shrink: 0;
    gap: 8px !important;
  }
  /* Login / cart button: compact size on mobile */
  .nav-inner .btn-primary,
  .nav-inner .btn-outline {
    padding: 7px 14px !important;
    font-size: 13px !important;
    white-space: nowrap;
  }
  /* Hamburger: visible */
  .hamburger {
    display: flex;
    flex-shrink: 0;
  }
  /* Topbar: hide completely on mobile to save space */
  .topbar { display: none; }
  
  /* ---- Hero fix: prevent text overflow ---- */
  .hero {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  .hero-title {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  
  /* ---- Container: ensure full width on mobile ---- */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid    { grid-template-columns: 1fr; }
  .hero-title      { font-size: 48px; }
  /* Extra small: hide logo text, keep only logo image */
  .logo-sub { display: none; }
}

