:root {
  --primary: #1b4e3b;      /* Deep Emerald Veg Green */
  --primary-dark: #123528;
  --accent: #d4af37;       /* Warm Elegant Gold */
  --accent-light: #f4e8c1;
  --bg-light: #fcfbf7;     /* Off-white Cream */
  --text-dark: #1f2421;
  --text-muted: #5c6460;
  --white: #ffffff;
  --shadow: 0 4px 15px rgba(0,0,0,0.06);
  --font-heading: 'Marcellus', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.5;
  font-display: swap;
  -webkit-tap-highlight-color: transparent;
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  z-index: 1000;
  padding: 0.8rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand .logo-main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 1.5px;
  font-weight: 700;
  line-height: 1;
}

.brand .logo-sub {
  font-size: 0.7rem;
  color: var(--white);
  letter-spacing: 3px;
  margin-top: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.btn-nav {
  background: var(--accent);
  color: var(--primary-dark) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-weight: 600 !important;
  font-size: 0.9rem;
}

/* --- Hero Section with Background Video --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 5rem 1rem 2rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: none;
  image-rendering: -webkit-optimize-contrast;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
}

.badge-pure-veg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--accent-light);
  margin-bottom: 1.2rem;
}

.badge-pure-veg i {
  color: #2e7d32;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.hero p {
  font-size: 1.1rem;
  color: #e0e6e3;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.8rem 1.6rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline {
  border: 1.5px solid var(--white);
  color: var(--white);
  padding: 0.8rem 1.6rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* --- Feature Badges --- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem 5%;
  background: var(--white);
  margin-top: -30px;
  position: relative;
  z-index: 10;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  text-align: center;
}

.feature-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* --- Sections --- */
.section {
  padding: 3rem 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Compact Gallery Slider --- */
.gallery-section {
  background: var(--primary-dark);
  color: var(--white);
  padding: 3rem 4%;
}

.gallery-section .section-header h2 {
  color: var(--accent);
}

.gallery-section .section-header p {
  color: #a3b8b0;
}

.swiper {
  width: 100%;
  max-width: 900px;
  padding-bottom: 2.5rem !important;
}

.swiper-slide {
  background: #0d261c;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  aspect-ratio: 1 / 1;
  max-height: 280px;
  margin: 0 auto;
}

.swiper-slide video,
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide video {
  pointer-events: auto;
  cursor: pointer;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  padding: 0.6rem;
  color: var(--white);
  text-align: center;
  pointer-events: none;
}

.slide-caption h4 {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 0.88rem;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--accent) !important;
  transform: scale(0.6);
}

.swiper-pagination-bullet-active {
  background: var(--accent) !important;
}

/* --- Interactive Menu Tabs --- */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tab-btn {
  background: var(--white);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.82rem;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.menu-category-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}

.menu-category-card h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-item {
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed #e5e5e5;
}

.menu-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.item-info h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.item-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --- Static Google Reviews Styles --- */
.reviews-section {
  background-color: var(--white);
}

.google-rating-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-light);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  border: 1px solid rgba(0,0,0,0.08);
  margin-top: 0.8rem;
}

.google-icon {
  font-size: 1.6rem;
  color: #4285F4;
}

.rating-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-score {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.rating-info .stars {
  color: #FBBC05;
  font-size: 0.9rem;
}

.review-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.google-review-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #eaeaea;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.reviewer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.avatar-bg-1 { background-color: #1b4e3b; }
.avatar-bg-2 { background-color: #d4af37; color: var(--primary-dark); }
.avatar-bg-3 { background-color: #3b82f6; }

.reviewer-meta h4 {
  font-size: 0.98rem;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars-gold {
  color: #FBBC05;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.card-google-logo {
  margin-left: auto;
  font-size: 1.3rem;
  color: #4285F4;
  opacity: 0.8;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.verified-tag {
  font-size: 0.75rem;
  color: #2e7d32;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* --- Location & About Section --- */
.location-section {
  background-color: #f4f6f5;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.info-list {
  list-style: none;
  margin-top: 1.2rem;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.info-list i {
  color: var(--accent);
  background: var(--primary);
  padding: 8px;
  border-radius: 50%;
  font-size: 0.8rem;
}

.map-box {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Footer --- */
footer {
  background: var(--primary-dark);
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
}

footer h2 {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.4rem;
}

footer p {
  color: #a3b8b0;
  font-size: 0.82rem;
  margin-top: 0.5rem;
}

/* Mobile Responsive Optimization */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.1rem; }
  .hero p { font-size: 0.95rem; }
  .about-container { grid-template-columns: 1fr; padding: 1.5rem; }
  .section { padding: 2.5rem 4%; }
  .swiper-slide { max-height: 240px; }
}