/* ===== ROOT & RESET ===== */
:root {
  --primary: #d00000;   /* red */
  --primary-dark:#a71010;
  --secondary: #000000; /* black */
  --accent: #ffffff;    /* white */
  --accent-dark: #E0AC00;
  --bg: #FDF8F2;
  --bg-dark: #1A0A00;
  --text: #1C1009;
  --text-muted: #6B5240;
  --card-bg: #FFFFFF;
  --border: rgba(232, 80, 10, 0.12);
  --shadow: 0 4px 24px rgba(28, 16, 9, 0.10);
  --shadow-lg: 0 16px 48px rgba(28, 16, 9, 0.16);
  --radius: 18px;
  --radius-sm: 10px;
  --navbar-h: 120px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.18; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
em { font-style: italic; color: var(--primary); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 96px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,80,10,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,80,10,0.45);
}

.btn-xl { padding: 18px 40px; font-size: 1.05rem; }

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-small {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-small:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ===== PLATFORM LOGOS ===== */
.platform-logo { height: 16px; width: auto; }
.skip-logo { font-weight: 800; font-size: 0.9rem; color: #FF5F00; background: #fff; padding: 2px 6px; border-radius: 4px; line-height: 1; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(232,80,10,0.10);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(253,248,242,0.96);
  box-shadow: 0 2px 20px rgba(28,16,9,0.10);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  transition: color var(--transition);
}
.navbar.scrolled .logo { color: var(--text); }
.logo-icon { font-size: 1.4rem; }
.logo em { font-style: italic; color: var(--accent); }

/* Logo image (real Singh's logo PNG) */
.logo-img {
  height: 115px;
  width: auto;
  object-fit: contain;
  /* On transparent/light navbar, invert to make it visible on dark hero */
  transition: filter var(--transition);
}
.navbar.scrolled .logo-img {
  /* Once navbar becomes light, show logo in full colour */
  filter: none;
}
.logo-img--footer {
  height: 150px;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--primary) !important; }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(232,80,10,0.3);
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text); }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(253,248,242,0.98);
  backdrop-filter: blur(16px);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-cta {
  margin-top: 12px;
  background: var(--primary);
  color: #fff !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 12px;
  font-weight: 600 !important;
  border-bottom: none !important;
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--navbar-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.04); }
  100% { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,10,0,0.72) 0%,
    rgba(26,10,0,0.45) 60%,
    rgba(232,80,10,0.20) 100%
  );
}
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 780px;
  animation: heroFadeUp 1s 0.2s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: rgba(249,196,26,0.18);
  border: 1px solid rgba(249,196,26,0.40);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: heroFadeUp 1s 0.4s both;
}
.hero-title {
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: heroFadeUp 1s 0.5s both;
}
.hero-title em { color: var(--accent); font-style: italic; }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.04em;
  animation: heroFadeUp 1s 0.6s both;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  animation: heroFadeUp 1s 0.75s both;
}
.hero-scroll {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: heroFadeUp 1s 1.2s both, scrollBob 2s 2s ease-in-out infinite;
  z-index: 3;
}
.hero-scroll svg { width: 16px; height: 16px; }
@keyframes scrollBob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== MENU GRID ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.menu-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.menu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-img-wrap img { transform: scale(1.07); }
.menu-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.menu-badge--hot { background: var(--primary); color: #fff; }
.menu-info { padding: 20px; }
.menu-info h3 { margin-bottom: 8px; font-size: 1.15rem; }
.menu-info p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.menu-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-weight: 700; font-size: 1rem; color: var(--primary); }
.menu-cta { text-align: center; margin-top: 48px; }

/* ===== ABOUT ===== */
.about-section {
  background: linear-gradient(135deg, #FFF5EC 0%, #FDF8F2 100%);
  padding: 96px 0;
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-stack { position: relative; padding: 20px 20px 56px 0; }
.about-img-main {
  border-radius: var(--radius);
  height: 500px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-lg);
}
.about-img-float {
  position: absolute;
  bottom: 0; right: -20px;
  width: 190px;
  height: 190px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 5px solid var(--bg);
  box-shadow: var(--shadow-lg);
}
.about-tag-badge {
  position: absolute;
  top: 20px; right: 0;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px 0 0 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-text-col { padding-right: 20px; }
.about-text-col .section-tag { margin-bottom: 14px; }
.about-text-col h2 { margin-bottom: 20px; }
.about-lead { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.75; }
.about-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 20px; }
.about-list li { display: flex; gap: 16px; align-items: flex-start; }
.about-icon { font-size: 1.5rem; margin-top: 2px; flex-shrink: 0; }
.about-list strong { display: block; font-size: 1rem; margin-bottom: 3px; }
.about-list p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* ===== WHY SECTION ===== */
.why-section { background: var(--bg-dark); }
.why-section .section-tag { background: rgba(249,196,26,0.15); color: var(--accent); }
.why-section h2 { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(232,80,10,0.12);
  border-color: rgba(232,80,10,0.25);
  transform: translateY(-4px);
}
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.1rem; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.65; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* ===== LOCATION ===== */
.location-section { background: #fff; }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.location-card { padding: 8px 0; }
.location-card .section-tag { margin-bottom: 12px; }
.location-card h2 { margin-bottom: 32px; }
.location-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.loc-item { display: flex; gap: 16px; align-items: flex-start; }
.loc-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.loc-item strong { display: block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); margin-bottom: 4px; }
.loc-item p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
.loc-item a { color: var(--text-muted); transition: color var(--transition); }
.loc-item a:hover { color: var(--primary); }
.hours-table { display: flex; flex-direction: column; gap: 6px; margin-top: 2px; }
.hours-table div { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--text-muted); gap: 24px; }
.hours-table div span:first-child { color: var(--text); font-weight: 500; }
.hours-note { font-size: 0.78rem; color: rgba(107,82,64,0.6); margin-top: 8px !important; }
.location-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.location-map iframe { width: 100%; height: 100%; border: none; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,10,0,0.85) 0%, rgba(232,80,10,0.50) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.cta-content h2 { color: #fff; margin-bottom: 14px; }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.55); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.social-links { display: flex; gap: 14px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--primary); color: #fff; }
.social-links svg { width: 18px; height: 18px; }
.footer h4 { color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 0.9rem; transition: color var(--transition); }
.footer ul a:hover { color: var(--accent); }
.footer-contact p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 8px; }
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-stack { display: none; }
  .about-text-col { padding-right: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .location-inner { grid-template-columns: 1fr; }
  .location-map { height: 300px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item--wide { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .location-buttons { flex-direction: column; }
  .location-buttons .btn { text-align: center; justify-content: center; }
  .about-img-stack { display: block; }
  .about-img-main { height: 280px; }
  .about-img-float { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .gallery-item--tall { grid-row: span 1; }
}

/* ===== RESPONSIVE OVERRIDES (logo + spacing fixes) ===== */
@media (max-width: 1024px) {
  .about-img-stack { display: block !important; padding: 0 0 56px 0; }
  .about-inner { gap: 0 !important; }
  .about-img-main { height: 360px; }
  .about-img-float { right: 0; }
  .about-text-col { padding-top: 24px; }
}

@media (max-width: 768px) {
  .about-img-stack { display: block !important; padding-bottom: 56px; }
  .about-img-main { height: 260px; }
  .about-img-float { width: 130px; height: 130px; right: 0; }
  .gallery-item--tall { grid-row: span 1; }
  /* .logo-img { height: 46px; } */
}

@media (max-width: 480px) {
  .about-img-float { display: none; }
  .about-img-stack { padding-bottom: 0; }
  /* .logo-img { height: 40px; } */
}
