/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark: #1a4a2e;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --yellow-warm: #f5e6a3;
  --yellow-soft: #fdf7d9;
  --cream: #fefbf0;
  --text-dark: #1a2e1a;
  --text-mid: #3d5a3e;
  --text-light: #6b8f71;
  --white: #ffffff;
  --nav-width-collapsed: 64px;
  --nav-width-expanded: 220px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', 'Segoe UI', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SIDEBAR NAV ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: var(--nav-width-collapsed);
  background: var(--green-dark);
  z-index: 1000;
  overflow: hidden;
  transition: width var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 3px 0 20px rgba(26, 74, 46, 0.25);
}

.sidebar:hover {
  width: var(--nav-width-expanded);
}

.sidebar-logo {
  padding: 20px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(245, 230, 163, 0.2);
  min-height: 80px;
  white-space: nowrap;
}

.sidebar-logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--yellow-warm);
}

.sidebar-logo .logo-icon .logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.sidebar-logo .logo-text {
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--yellow-warm);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.sidebar:hover .logo-text {
  opacity: 1;
}

.nav-links {
  list-style: none;
  padding: 16px 0;
  flex: 1;
}

.nav-links li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), padding var(--transition);
  position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--yellow-warm);
  background: rgba(245, 230, 163, 0.1);
}

.nav-links li a.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--yellow-warm);
  border-radius: 0 2px 2px 0;
}

.nav-links li a .nav-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-links li a .nav-label {
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 14px;
  letter-spacing: 0.3px;
}

.sidebar:hover .nav-label {
  opacity: 1;
}

/* Phone Order Floating Button */
.phone-order-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  color: var(--yellow-warm);
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(26,74,46,0.4);
  font-weight: 700;
  font-size: 14px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.phone-order-btn:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,74,46,0.5);
}

.phone-order-btn .phone-icon {
  font-size: 18px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-left: var(--nav-width-collapsed);
  transition: margin-left var(--transition);
  min-height: 100vh;
}

/* ===== SECTIONS COMMON ===== */
.section {
  padding: 80px 60px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 40px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--green-light);
  margin: 14px 0 40px;
  border-radius: 2px;
}

/* ===== HERO SLIDESHOW ===== */
#home {
  padding: 0;
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 74, 46, 0.72) 0%,
    rgba(26, 74, 46, 0.4) 50%,
    rgba(26, 74, 46, 0.15) 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.hero-text-box {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--yellow-warm);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(245, 230, 163, 0.5);
  color: var(--yellow-warm);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Slide indicators */
.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
  border: none;
}

.indicator.active {
  width: 28px;
  border-radius: 4px;
  background: var(--yellow-warm);
}

/* ===== MENU SECTION ===== */
#menu {
  background: var(--cream);
}

.menu-cat-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cat-btn {
  padding: 8px 18px;
  border-radius: 24px;
  border: 2px solid var(--green-light);
  background: transparent;
  color: var(--green-mid);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-family: inherit;
  letter-spacing: 0.3px;
}

.cat-btn:hover,
.cat-btn.active {
  background: var(--green-dark);
  color: var(--yellow-warm);
  border-color: var(--green-dark);
}

.cat-btn.featured-btn {
  border-color: #c9a227;
  color: #7a5c00;
}

.cat-btn.featured-btn:hover,
.cat-btn.featured-btn.active {
  background: #c9a227;
  border-color: #c9a227;
  color: var(--white);
}

/* Featured Cards */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.featured-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,74,46,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26,74,46,0.15);
}

.featured-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.featured-card-info {
  padding: 16px 18px;
}

.featured-card-info h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.featured-card-info p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.featured-badge {
  display: inline-block;
  background: #fdf0c0;
  color: #7a5c00;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Menu Categories */
.menu-panel {
  display: none;
}
.menu-panel.active {
  display: block;
}

.menu-note {
  background: var(--yellow-soft);
  border-left: 4px solid var(--green-light);
  padding: 12px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 30px;
}

.menu-group {
  margin-bottom: 36px;
}

.menu-group-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.menu-group-price {
  font-size: 1.05rem;
  color: var(--green-mid);
  font-weight: 700;
  margin-bottom: 14px;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}

.menu-item {
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(26,74,46,0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.menu-item:hover {
  border-color: var(--green-light);
  box-shadow: 0 2px 12px rgba(26,74,46,0.07);
}

.menu-item-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}

.menu-item-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 3px;
}

.menu-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-mid);
  white-space: nowrap;
}

.veg-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1.5px solid #2d8a2d;
  border-radius: 3px;
  text-align: center;
  line-height: 11px;
  font-size: 9px;
  color: #2d8a2d;
  vertical-align: middle;
  margin-left: 4px;
}

.menu-options {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.6;
}

.menu-options strong {
  color: var(--text-mid);
}

/* Stir Fried special layout */
.stir-fry-box {
  background: var(--white);
  border-radius: 12px;
  padding: 22px 24px;
  border: 1px solid rgba(26,74,46,0.1);
  margin-bottom: 14px;
}

.stir-fry-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stir-fry-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.stir-fry-col ul {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 2;
}

/* ===== LOCATION SECTION ===== */
#location {
  background: var(--yellow-soft);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.location-info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.location-detail .icon {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.location-detail .text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.location-detail .text strong {
  display: block;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 2px;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,74,46,0.12);
  height: 340px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: var(--green-dark);
  color: var(--yellow-warm);
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background var(--transition), transform var(--transition);
}

.directions-btn:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* ===== REVIEWS SLIDESHOW ===== */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.reviews-summary-stars {
  font-size: 1.5rem;
  color: #f0c040;
  letter-spacing: 2px;
}

.reviews-summary-text {
  font-size: 1rem;
  color: var(--text-mid);
}

.reviews-summary-text strong {
  font-size: 1.3rem;
  color: var(--green-dark);
}

.google-link {
  margin-left: auto;
  background: var(--green-dark);
  color: var(--yellow-warm);
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: background var(--transition);
  white-space: nowrap;
}

.google-link:hover {
  background: var(--green-mid);
}

.review-slideshow {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.review-slides-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-slide {
  min-width: 100%;
  padding: 0 4px;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(26,74,46,0.09);
  border: 1px solid rgba(26,74,46,0.07);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-dark);
}

.reviewer-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

.review-stars {
  font-size: 1.1rem;
  color: #f0c040;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.review-screenshot {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(26,74,46,0.1);
}

.review-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 320px;
  object-fit: contain;
  background: #f9f9f9;
}

.review-prev,
.review-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green-dark);
  color: var(--yellow-warm);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-prev { left: 12px; }
.review-next { right: 12px; }

.review-prev:hover,
.review-next:hover {
  background: var(--green-mid);
  transform: translateY(-50%) scale(1.08);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.review-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(26,74,46,0.2);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
  padding: 0;
}

.review-dot.active {
  width: 28px;
  border-radius: 5px;
  background: var(--green-dark);
}

/* ===== CONTACT SECTION ===== */
#contact {
  background: var(--green-dark);
  color: var(--white);
}

#contact .section-title {
  color: var(--yellow-warm);
}

#contact .section-divider {
  background: rgba(245,230,163,0.4);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,230,163,0.15);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}

.contact-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,230,163,0.3);
}

.contact-card .contact-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-card a,
.contact-card p {
  color: var(--yellow-warm);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  word-break: break-all;
  display: block;
}

.contact-card a:hover {
  color: var(--white);
}

/* ===== FOOTER ===== */
footer {
  background: #0f2e1a;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 22px 40px;
  font-size: 0.82rem;
}

footer span {
  color: var(--yellow-warm);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .location-layout {
    grid-template-columns: 1fr;
  }
  .map-embed {
    height: 260px;
  }
  .section {
    padding: 60px 30px;
  }
  .hero-overlay {
    padding: 0 40px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 50px 20px;
  }
  .hero-overlay {
    padding: 0 24px;
  }
  .phone-order-btn .btn-label {
    display: none;
  }
  .stir-fry-row {
    gap: 20px;
  }
}
