/* =============================================
   MONSOON MASALA — Global Stylesheet
   Kerala Cuisine with an Arabian Twist
   ============================================= */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC:wght@400;700&family=Karla:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --gold: #C9A227;
  --gold-light: #E8C86A;
  --gold-dark: #9A7A10;
  --red: #C41E0E;
  --red-light: #E83A28;
  --dark: #0D0600;
  --dark-2: #1A0E04;
  --dark-3: #261508;
  --dark-card: #1E1008;
  --cream: #FFF8F0;
  --cream-muted: #F0E4D0;
  --text-light: #F5E6D3;
  --text-muted: #BFA88A;
  --border: rgba(201,162,39,0.2);
  --border-hover: rgba(201,162,39,0.5);
  --font-heading: 'Playfair Display SC', Georgia, serif;
  --font-body: 'Karla', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --nav-height: 80px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: var(--font-body); }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin: 0.5rem 0 1.5rem;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  font-style: italic;
  line-height: 1.8;
}

/* --- Layout Helpers --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* --- Decorative Divider --- */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}
.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--dark); box-shadow: 0 8px 30px rgba(201,162,39,0.4); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 8px 30px rgba(201,162,39,0.15);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
  font-size: 1rem;
  padding: 16px 36px;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transform: translateY(-2px);
}

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition-slow);
  padding: 0 40px;
}

#navbar.scrolled {
  background: rgba(13, 6, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  height: 65px;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.nav-logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

#navbar.scrolled .nav-logo img { height: 40px; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-logo-text .tagline-nav {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.75rem !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--dark-2);
  border-left: 1px solid var(--border);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  gap: 32px;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-overlay.show { opacity: 1; pointer-events: all; }

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/main2.jpeg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,6,0,0.88) 0%,
    rgba(26,14,4,0.75) 40%,
    rgba(13,6,0,0.85) 100%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}
.hero-label-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 7rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-title .highlight {
  color: var(--gold);
  display: block;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--cream-muted);
  margin: 20px 0 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.85s forwards;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--gold-dark);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* =============================================
   INTRO STRIP
   ============================================= */
#intro-strip {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 18px 0;
  overflow: hidden;
}
.intro-strip-inner {
  display: flex;
  gap: 48px;
  animation: scrollStrip 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark);
}
.strip-dot {
  width: 5px;
  height: 5px;
  background: var(--dark);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes scrollStrip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   ABOUT / STORY SECTION
   ============================================= */
#about {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.about-bg-pattern {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0.3;
}
.about-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.about-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 80px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

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

.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}
.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--dark-2);
  border-radius: 2px;
}
.about-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--gold);
  color: var(--dark);
  padding: 20px;
  border-radius: 2px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.about-badge .years {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--dark);
}
.about-badge .label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-2);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.about-feature-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.about-feature-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================================
   SIGNATURE DISHES
   ============================================= */
#menu {
  background: var(--dark);
  position: relative;
}

.menu-intro { max-width: 700px; margin: 0 auto 60px; text-align: center; }

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 520px 300px;
  gap: 3px;
  margin-bottom: 60px;
}

.dish-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* TOP ROW (tall): Khaima | Falooda | Tea */
.dish-card:nth-child(1) { grid-column: 1; grid-row: 1; } /* Khaima Biryani */
.dish-card:nth-child(5) { grid-column: 2; grid-row: 1; } /* Falooda */
.dish-card-wide          { grid-column: 3; grid-row: 1; } /* Tea */

/* BOTTOM ROW (shorter): Mandi | Shawarma | Shawaya */
.dish-card:nth-child(2) { grid-column: 1; grid-row: 2; } /* Mandi */
.dish-card:nth-child(3) { grid-column: 2; grid-row: 2; } /* Shawarma */
.dish-card:nth-child(4) { grid-column: 3; grid-row: 2; } /* Shawaya */

.dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.dish-card:hover .dish-img { transform: scale(1.08); }

.dish-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,6,0,0.95) 0%, rgba(13,6,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}
.dish-card:hover .dish-overlay {
  background: linear-gradient(to top, rgba(13,6,0,0.98) 0%, rgba(13,6,0,0.5) 50%, rgba(13,6,0,0.1) 100%);
}

.dish-number {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}
.dish-name {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--cream);
  margin-bottom: 8px;
}
.dish-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.dish-card:hover .dish-desc {
  max-height: 80px;
  opacity: 1;
}

.menu-cta {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* =============================================
   EXPERIENCE / ATMOSPHERE
   ============================================= */
#experience {
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}

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

.experience-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin: 48px 0;
}
.stat-box {
  background: var(--dark-3);
  padding: 32px 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.experience-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
}
.exp-img {
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.5s ease;
}
.exp-img:hover { transform: scale(1.02); }
.exp-img.tall { aspect-ratio: 2/3; grid-row: span 2; }
.exp-img.wide { aspect-ratio: 4/3; }

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

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

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.star {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  color: var(--gold);
}

.testimonial-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
}
.author-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   RESERVATIONS / CONTACT
   ============================================= */
#contact {
  background: var(--dark);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 12px; }

.contact-details {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-item:hover .contact-icon {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.contact-item-text .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item-text .value {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.5;
}
.contact-item-text a { color: var(--gold); }

.map-wrap {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 40px;
  height: 250px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5) invert(1) hue-rotate(175deg);
}

.reservation-form {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 48px 40px;
}
.reservation-form h3 {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.reservation-form p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(201,162,39,0.05);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }

select option { background: var(--dark-2); color: var(--text-light); }

textarea { resize: vertical; min-height: 100px; }

.form-submit { width: 100%; margin-top: 8px; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #080400;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand .footer-logo img { height: 48px; width: auto; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a, .footer-col ul li span {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: default;
}
.footer-col ul li a {
  cursor: pointer;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--gold); }

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.float-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
.float-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(37,211,102,0.5);
}
.float-whatsapp svg { width: 22px; height: 22px; flex-shrink: 0; }
.float-whatsapp .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #25D366;
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

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

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg { animation: none; }
  .intro-strip-inner { animation: none; }
}

/* =============================================
   RESPONSIVE — TABLET (768px)
   ============================================= */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }

  .about-grid,
  .experience-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .about-image-wrap { max-width: 480px; margin: 0 auto; }
  .about-image-accent { display: none; }
  .about-badge { left: 16px; top: 16px; }

  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 380px 380px 260px;
  }
  /* Tablet: top row Khaima + Falooda, Tea full-width, bottom row Mandi + Shawarma + Shawaya */
  .dish-card:nth-child(1) { grid-column: 1; grid-row: 1; }
  .dish-card:nth-child(5) { grid-column: 2; grid-row: 1; }
  .dish-card-wide          { grid-column: 1 / -1; grid-row: 2; }
  .dish-card:nth-child(2) { grid-column: 1; grid-row: 3; }
  .dish-card:nth-child(3) { grid-column: 2; grid-row: 3; }
  .dish-card:nth-child(4) { grid-column: 1 / -1; grid-row: 4; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  #navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* =============================================
   RESPONSIVE — MOBILE (480px)
   ============================================= */
@media (max-width: 600px) {
  .section { padding: 64px 0; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

  .dishes-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 280px);
  }
  .dish-card:nth-child(1),
  .dish-card:nth-child(2),
  .dish-card:nth-child(3),
  .dish-card:nth-child(4),
  .dish-card:nth-child(5),
  .dish-card-wide {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .dish-desc { max-height: 60px; opacity: 1; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .about-features { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .float-whatsapp .label-text { display: none; }
  .float-whatsapp { padding: 14px; border-radius: 50%; }

  .experience-images {
    grid-template-columns: 1fr;
  }
  .exp-img.tall { grid-row: span 1; aspect-ratio: 4/3; }

  .reservation-form { padding: 32px 24px; }

  .contact-grid { gap: 48px; }
}

/* =============================================
   UPGRADE: CUSTOM CURSOR
   ============================================= */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], .dish-card, .social-link, select { cursor: none; }
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  mix-blend-mode: normal;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.2s ease,
              opacity 0.2s ease;
  will-change: transform;
  opacity: 0.7;
}

.cursor-ring.hovering {
  width: 56px;
  height: 56px;
  border-color: var(--gold-light);
  opacity: 1;
}
.cursor-dot.hovering {
  width: 4px;
  height: 4px;
  background: var(--gold-light);
}
.cursor-ring.clicking {
  width: 28px;
  height: 28px;
  background: rgba(201, 162, 39, 0.12);
}

/* Hide custom cursor on touch devices */
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* =============================================
   UPGRADE: PARTICLE CANVAS
   ============================================= */
#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* =============================================
   UPGRADE: BUTTON SHIMMER
   ============================================= */
.btn-primary {
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: btnShimmer 3.5s ease-in-out infinite;
}
@keyframes btnShimmer {
  0%   { left: -100%; opacity: 0; }
  10%  { opacity: 1; }
  50%  { left: 160%; opacity: 1; }
  51%  { opacity: 0; }
  100% { left: 160%; opacity: 0; }
}

/* =============================================
   UPGRADE: DISH CARD 3D TILT + GLARE
   ============================================= */
.dish-card {
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
}
.dish-card:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 162, 39, 0.15);
}

.dish-glare {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dish-card:hover .dish-glare { opacity: 1; }

/* =============================================
   UPGRADE: PARALLAX SECTIONS
   ============================================= */
.parallax-bg {
  will-change: transform;
  transition: transform 0.05s linear;
}

/* Subtle gold glow on section labels when in view */
.section-label.visible {
  animation: labelGlow 2s ease-in-out infinite alternate;
}
@keyframes labelGlow {
  from { text-shadow: none; }
  to   { text-shadow: 0 0 20px rgba(201, 162, 39, 0.5); }
}

/* =============================================
   UPGRADE: MAGNETIC BUTTON EFFECT INDICATOR
   ============================================= */
.btn {
  will-change: transform;
}
.btn:active {
  transform: scale(0.97);
}

/* =============================================
   UPGRADE: FLOATING ORNAMENT RINGS (hero)
   ============================================= */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.15);
  pointer-events: none;
  animation: ringPulse 6s ease-in-out infinite;
  z-index: 1;
}
.hero-ring-1 {
  width: 300px; height: 300px;
  top: 15%; right: 8%;
  animation-delay: 0s;
}
.hero-ring-2 {
  width: 180px; height: 180px;
  top: 20%; right: 12%;
  animation-delay: 1s;
  border-color: rgba(201, 162, 39, 0.25);
}
.hero-ring-3 {
  width: 500px; height: 500px;
  bottom: 10%; left: -80px;
  animation-delay: 2s;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1);   opacity: 0.4; }
  50%       { transform: scale(1.05); opacity: 0.7; }
}

@media (max-width: 768px) {
  .hero-ring { display: none; }
}

/* =============================================
   CONTACT — SIMPLIFIED LAYOUT
   ============================================= */
.contact-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.contact-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.contact-card .contact-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-card:hover .contact-icon {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.map-wrap-full {
  height: 380px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.map-wrap-full iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.4) invert(1) hue-rotate(175deg);
}

@media (max-width: 1024px) {
  .contact-simple-grid { grid-template-columns: 1fr; }
  .map-wrap-full { height: 300px; }
}

/* =============================================
   PATCH: NAV BRAND NAME (Cinzel font, no tagline)
   ============================================= */
.nav-brand-name {
  font-family: 'Cinzel', 'Playfair Display SC', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: var(--transition);
}
#navbar.scrolled .nav-brand-name { font-size: 1rem; }

/* =============================================
   PATCH: BOOK NOW BUTTON — cream text on gold border
   ============================================= */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: 0;
}
.btn-nav-cta:hover::before { transform: translateX(0); }
.btn-nav-cta:hover { color: var(--dark); box-shadow: 0 4px 20px rgba(201,162,39,0.35); }
.btn-nav-cta svg, .btn-nav-cta span { position: relative; z-index: 1; }

/* =============================================
   PATCH: CURSOR GLOW (golden ambient, no dot/ring)
   ============================================= */
@media (pointer: fine) {
  body { cursor: auto; }
  a, button, [role="button"], .dish-card, .social-link, select { cursor: pointer; }
}

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.07) 0%,
    rgba(201, 162, 39, 0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  will-change: transform;
  opacity: 0;
}

@media (pointer: coarse) {
  .cursor-glow { display: none; }
}

/* =============================================
   PATCH: 6-DISH GRID — Tea placed top-right
   ============================================= */
.dish-card-wide .dish-name {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

/* =============================================
   PATCH: NAV BRAND NAME — bigger font
   ============================================= */
.nav-brand-name {
  font-size: 1.35rem !important;
}
#navbar.scrolled .nav-brand-name {
  font-size: 1.15rem !important;
}

/* =============================================
   PATCH: BOOK NOW — fix hover text color
   ============================================= */
.btn-nav-cta {
  transition: color 0.3s ease, box-shadow 0.3s ease !important;
}
.btn-nav-cta:hover {
  color: var(--dark) !important;
}

/* =============================================
   PATCH: SOCIAL LINKS — Connect with us
   ============================================= */
.social-section { margin-top: 8px; }

.social-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.social-link-lg {
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  height: auto;
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-light);
}
.social-link-lg:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,162,39,0.06);
}
