@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&family=Inter:wght@400;500&display=swap');
/* Base */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
html, body {
   height: 100%; 
   overflow-x: hidden;
   

  }

  .fullwidth {
    width: 100%;
    margin: 0;
    padding: 0;
  }


/* Hide scrollbar for Chrome, Safari, and Edge */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
body {
  scrollbar-width: none;
}

/* Optional: ensure scrolling still works */
body {
  overflow-y: scroll;
}


body {
  margin: 0;
  /* font-family: 'Inter', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; */
  font-family: 'Cormorant Garamond', serif;
  color: #111;
  background: #fff;
}

/* Dark background for main content area */
main.content {
  background: #0d0d0d;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
}
.btn.primary { background: #e67700; color: #fff;   font-family: 'Cormorant Garamond', serif; }
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.btn.secondary { background: #fff; color: #111; border: 2px solid #fff; }
.btn.secondary:hover { background: rgba(255,255,255,.92); }
.btn.order-btn { background: #00a86b; color: #fff; margin-left: 16px; white-space: nowrap; }
.btn.order-btn:hover { box-shadow: 0 6px 18px rgba(0,168,107,.35); transform: translateY(-1px); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: saturate(120%) blur(6px);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.brand { display: inline-flex; align-items: center; gap: 12px; transform: scale(1.25); transform-origin: left center; }
.logo { height: 75px; width: auto; display: block; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.navbar { display: flex; align-items: center; }
.navbar-close,
.navbar-brand {
  display: none;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
  padding: 0; margin: 0;
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .3px;
}
.nav-link:hover { color: #ffd166; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background-image: url('img/home.jpg'); /* Replace with your hero image path */
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.45));
}
.hero-content { position: relative; text-align: center; color: #fff; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); 
  color: #eaeaea;
  margin: 0 0 10px; }
.hero p { font-size: clamp(16px, 2.2vw, 20px); 
  color: #eaeaea;
  opacity: .95; margin: 0 0 26px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Content placeholders */
.content { 
  padding: 0; 
  background: #0d0d0d;
  width: 100%;
}
.content section { 
  padding: 60px 0; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
  width: 100%;
}
.content h2 { margin-top: 0; }

/* Global type colors - Dark theme from about section onwards */
.content p, .content li, .content a, .content span, .content small, .content address { color: #d0d0d0; }
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 { 
  color: #eaeaea;  
  font-family: 'Cormorant Garamond', serif; 
  font-weight: 700; 
}
.nav-link { color: #fff; }
.feature-card h3 { color: #eaeaea; }
.about-text p, .quote, .foot-brand p, .foot-visit address { color: #d0d0d0; }

/* About */
.about { 
  border: 0; 
  padding-top: 80px; 
  padding-bottom: 80px; 
  background: #0d0d0d;
  width: 100%;
  scroll-margin-top: 100px;
  scroll-padding-top: 100px;
}
.about-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}
.about-text .overline {
  font-family: 'Cormorant Garamond', serif;
  color: #ffd166;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 8px;
}
.about-text h2 { 
  font-size: clamp(28px, 4.4vw, 46px); 
  margin: 0 0 16px; 
  color: #eaeaea;
}
.brand-accent { color: #e67700; }
.about-text p { 
  color: #d0d0d0; 
  line-height: 1.85; 
}
.about-text .btn { margin-top: 18px; }

.about-media { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.card-img { 
  margin: 0; 
  border-radius: 18px; 
  overflow: hidden; 
  box-shadow: 0 12px 36px rgba(0,0,0,.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.card-img img { display: block; width: 100%; height: 100%; object-fit: cover; }
.card-1 { transform: translateY(18px); }
.card-2 { transform: translateY(-18px); }

@media (max-width: 1000px) {
  .about-wrap { grid-template-columns: 1fr; }
  .about-media { max-width: 720px; }
}

/* Signature Dishes */
.signature-dishes {
  padding: 80px 0;
  background: #0d0d0d;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.signature-dishes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 119, 0, 0.3), transparent);
}

.section-subtitle {
  text-align: center;
  color: #d0d0d0;
  font-size: clamp(16px, 2vw, 18px);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.dish-card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.dish-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 119, 0, 0.4);
  box-shadow: 0 16px 40px rgba(230, 119, 0, 0.2);
}

.dish-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #0d0d0d;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
  transform: scale(1.1);
}

.dish-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.dish-card:hover .dish-overlay {
  opacity: 1;
}

.dish-info {
  color: #fff;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.dish-card:hover .dish-info {
  transform: translateY(0);
}

.dish-info h3 {
  color: #ffd166;
  font-size: 22px;
  margin: 0 0 10px;
  font-weight: 700;
}

.dish-description {
  color: #eaeaea;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 15px;
}

.dish-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(230, 119, 0, 0.2);
  color: #ffd166;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(230, 119, 0, 0.3);
}

.dish-content {
  padding: 20px;
  background: #1a1a1a;
}

.dish-content h3 {
  color: #eaeaea;
  font-size: 20px;
  margin: 0 0 8px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.dish-card:hover .dish-content h3 {
  color: #ffd166;
}

.dish-short-desc {
  color: #888;
  font-size: 14px;
  margin: 0 0 12px;
  font-style: italic;
}

.dish-rating {
  color: #ffd166;
  font-size: 14px;
  letter-spacing: 2px;
}

.dish-rating i {
  margin-right: 2px;
}

/* Responsive Design for Signature Dishes */
@media (max-width: 1100px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .signature-dishes {
    padding: 60px 0;
  }
  
  .dishes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .dish-image {
    height: 240px;
  }
  
  .section-subtitle {
    margin-bottom: 30px;
    padding: 0 20px;
  }
}

/* Features (Why Choose Us) */
.features { 
  border: 0; 
  padding-top: 40px; 
  padding-bottom: 40px; 
  text-align: center; 
  background: #0d0d0d;
  width: 100%;
}
.section-title { 
  font-size: clamp(28px, 4vw, 42px); 
  margin: 0 0 26px; 
  color: #eaeaea;
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.feature-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.4);
  padding: 34px 16px 28px;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 18px 42px rgba(230, 119, 0, 0.2); 
  border-color: rgba(230, 119, 0, 0.3);
}
.icon-wrap {
  width: 72px; 
  height: 72px; 
  margin: 0 auto 14px; 
  border-radius: 50%; 
  display: grid; 
  place-items: center;
  background: rgba(230, 119, 0, 0.15);
}
.icon-wrap i { font-size: 30px; color: #e67700; }
.feature-card h3 { 
  font-size: 20px; 
  color: #eaeaea; 
  margin: 6px 0 0; 
  font-weight: 600; 
}

@media (max-width: 1100px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* Testimonials */
.testimonials {
  position: relative;
  padding: 80px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
  width: 100%;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  
  background: 
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,.70)),
    url('img/testi.jpg') center/cover no-repeat;
}

.testimonials::before {
  content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.55);
}
.testimonials .container, .testimonials .section-title, .testimonials .overline { position: relative; color: #eaeaea; z-index: 1; }
.overline.center { text-align: center; color: #ffd9b3; }

.slider { position: relative; max-width: 980px; margin: 20px auto 0; }
.slides { position: relative; }
.slide { opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease; position: absolute; inset: 0; padding: 0 10px; }
.slide.active { position: relative; opacity: 1; transform: none; }
.quote { font-size: clamp(16px, 2.2vw, 20px); color: #eaeaea; line-height: 1.8; margin: 0 auto 12px; max-width: 920px; }
.rating { color: #ffd166; letter-spacing: 2px; }
.author { font-weight: 600; color: #eaeaea; margin-top: 8px; }

.nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); color: #fff; border: none; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; }
.nav:hover { background: rgba(0,0,0,.65); }
.nav.prev { left: -6px; }
.nav.next { right: -6px; }

.dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; position: relative; z-index: 1; }
.dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.6); cursor: pointer; }
.dots button.active { background: #fff; }

@media (max-width: 700px) {
  .nav.prev { left: 6px; }
  .nav.next { right: 6px; }
}

/* Gallery */
.gallery { 
  padding: 60px 0 80px; 
  text-align: center; 
  background: #0d0d0d;
  width: 100%;
}
.gallery .overline {
  color: #ffd166;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.g-item { 
  margin: 0; 
  border-radius: 18px; 
  overflow: hidden; 
  box-shadow: 0 10px 28px rgba(0,0,0,.5); 
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.g-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(230, 119, 0, 0.25);
}
.g-item img { display: block; width: 100%; height: 100%; object-fit: cover; }
.g-item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.85); display: none; align-items: center; justify-content: center; z-index: 2000; }
.lightbox.show { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,.6); }
.lightbox-close { position: absolute; top: 14px; right: 18px; background: transparent; border: none; color: #fff; font-size: 36px; cursor: pointer; line-height: 1; }

@media (max-width: 1000px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item.wide { grid-column: span 1; }
}

/* Footer */
.site-footer {
  position: relative;
  color: #fff;
  background: #111;
  margin-top: 0;
  width: 100%;
  margin: 0; /* centers properly without causing horizontal scroll */
  overflow: hidden; /* ensures no content leaks outside */
}

.footer-bg { position: absolute; inset: 0; background: url('img/spices-bg.jpg') center/cover no-repeat; opacity: .08; }
.site-footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; padding: 48px 0; }
.foot-title { color: #ffd9b3; margin: 0 0 8px; }
.foot-brand p { color: #ddd; }
.foot-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot-nav a { color: #fff; text-decoration: none; }
.foot-nav a:hover { color: #ffd166; }
.foot-visit address { font-style: normal; color: #eaeaea; line-height: 1.8; }
.footer-bottom { background: #0b0b0b; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { margin: 0; padding: 12px 0; text-align: center; color: #cfcfcf; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* CTA Promo */
.cta-promo {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 640px) 1fr;
  align-items: center;
  gap: 0;
  padding: 0;
  width: 100%;        /* changed from 100vw to 100% */
  margin: 0;          /* removed calc(...) to prevent horizontal overflow */
  background: #0d0d0d;
  overflow: hidden;   /* ensures no elements spill out */
}

.cta-side { position: relative; height: 100%; min-height: 420px; overflow: hidden; }
.cta-side img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.7; }
.cta-content { text-align: center; padding: 0 20px; }
.cta-content h2 { 
  font-size: clamp(28px, 4.6vw, 54px); 
  margin: 0 0 10px; 
  color: #eaeaea;
}
.cta-content p { 
  font-size: clamp(15px, 1.9vw, 18px); 
  margin: 0 0 20px; 
  color: #d0d0d0;
}
.cta-btn { padding: 14px 26px; font-size: 16px; }

@media (max-width: 900px) {
  .cta-promo { grid-template-columns: 1fr; }
  .cta-side { height: 240px; }
  .cta-side.right { order: 3; }
}

/* Events Section */
.events {
  padding: 80px 0;
  background: #0d0d0d;
  width: 100%;
  position: relative;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.event-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 0;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #e67700, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.event-card:hover::before {
  transform: scaleX(1);
}

.event-card:hover {
  transform: translateY(-10px);
  border-color: rgba(230, 119, 0, 0.4);
  box-shadow: 0 16px 40px rgba(230, 119, 0, 0.2);
  background: #1f1f1f;
}

.event-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #0d0d0d;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: 3px solid rgba(230, 119, 0, 0.5);
  z-index: 2;
}

.event-card:hover .event-icon-overlay {
  background: rgba(230, 119, 0, 0.2);
  border-color: rgba(230, 119, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.15) rotate(5deg);
  box-shadow: 0 0 30px rgba(230, 119, 0, 0.5);
}

.event-icon-overlay i {
  font-size: 36px;
  color: #ffd166;
  transition: all 0.4s ease;
}

.event-card:hover .event-icon-overlay i {
  color: #ffd166;
  transform: scale(1.1);
}

.event-content-wrapper {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-content-wrapper h3 {
  color: #eaeaea;
  font-size: 24px;
  margin: 0 0 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.event-card:hover .event-content-wrapper h3 {
  color: #ffd166;
}

.event-description {
  color: #d0d0d0;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px;
  min-height: 60px;
}

.event-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  text-align: left;
}

.event-features li {
  color: #c0c0c0;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.event-card:hover .event-features li {
  color: #eaeaea;
}

.event-features i {
  color: #e67700;
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.event-card:hover .event-features i {
  transform: scale(1.2);
  color: #ffd166;
}

.event-btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: #e67700;
  border: 2px solid #e67700;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.event-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #e67700;
  transition: left 0.3s ease;
  z-index: -1;
}

.event-btn:hover {
  color: #fff;
  border-color: #e67700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 119, 0, 0.3);
}

.event-btn:hover::before {
  left: 0;
}

/* Responsive Design for Events */
@media (max-width: 1100px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .events {
    padding: 60px 0;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .event-content-wrapper {
    padding: 25px 20px;
  }
  
  .event-image {
    height: 200px;
  }
  
  .event-icon-overlay {
    width: 70px;
    height: 70px;
  }
  
  .event-icon-overlay i {
    font-size: 32px;
  }
  
  .section-subtitle {
    padding: 0 20px;
  }
}

/* Contact */
.contact { 
  padding: 60px 0; 
  background: #0d0d0d;
  scroll-margin-top: 100px;
  scroll-padding-top: 100px;
}
.contact-intro { 
  max-width: 840px; 
  margin: 0 auto 18px; 
  color: #d0d0d0;
}
.contact-form { display: grid; gap: 14px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { 
  width: 100%; 
  padding: 14px 16px; 
  border: 1px solid rgba(255, 255, 255, 0.15); 
  border-radius: 8px; 
  font: inherit; 
  background: #1a1a1a; 
  color: #eaeaea;
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: #e67700;
  background: #222;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #888;
}
.contact-form select {
  color: #eaeaea;
}
.contact-form select option {
  background: #1a1a1a;
  color: #eaeaea;
}
.contact-form textarea { resize: vertical; }
.captcha-row { align-items: center; grid-template-columns: 1fr 1fr auto; }
.captcha-box { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  background: #1a1a1a; 
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px; 
  padding: 12px 16px; 
}
#captchaText { 
  font-weight: 700; 
  letter-spacing: 2px; 
  color: #eaeaea;
}
#captchaRefresh { 
  border: none; 
  background: transparent; 
  cursor: pointer; 
  font-size: 18px; 
  color: #e67700;
  transition: transform .2s ease;
}
#captchaRefresh:hover {
  transform: rotate(180deg);
}
@media (max-width: 720px){ .contact-form .form-row, .captcha-row { grid-template-columns: 1fr; } }

/* Back to top */
#backToTop {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: #111;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 1001;
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: #000; }

/* Mobile Side Navbar */
.navbar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.navbar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-toggle { 
    display: inline-block; 
    z-index: 1002;
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .nav-toggle.active {
    transform: rotate(90deg);
  }
  
  .navbar { 
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    flex-direction: column;
    padding: 0;
    z-index: 1001;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5);
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    visibility: hidden;
  }
  
  .navbar.open {
    left: 0;
    visibility: visible;
  }
  
  .navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    /* background: linear-gradient(180deg, rgba(230, 119, 0, 0.15) 0%, transparent 100%); */
    pointer-events: none;
  }
  
  
  .navbar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
  }
  
  .navbar-close:hover {
    /* background: rgba(230, 119, 0, 0.3); */
    transform: rotate(90deg);
  }
  
  .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 30px 28px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
  }
  
  /* Show close button and brand only on mobile */
  .navbar-close,
  .navbar-brand {
    display: flex;
  }
  
  .navbar-logo {
    height: 50px;
    width: auto;
    /* filter: drop-shadow(0 2px 8px rgba(230, 119, 0, 0.3)); */
  }
  
  .navbar-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffd166;
    letter-spacing: 0.5px;
    font-family: 'Cormorant Garamond', serif;
  }
  
  .navbar .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 10px 0 30px;
    margin: 0;
    width: 100%;
  }
  
  .navbar .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .navbar .nav-link {
    display: block;
    padding: 20px 28px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #eaeaea;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
  }
  
  .navbar .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e67700;
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }
  
  .navbar .nav-link:hover,
  .navbar .nav-link:focus {
    background: rgba(230, 119, 0, 0.1);
    color: #ffd166;
    padding-left: 32px;
    border-left-color: #e67700;
  }
  
  .navbar .nav-link:hover::before {
    transform: scaleY(1);
  }
  
  .navbar .btn.order-btn { 
    margin: 20px 28px;
    align-self: stretch;
    text-align: center;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00a86b 0%, #008a5a 100%);
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.3);
    transition: all 0.3s ease;
  }
  
  .navbar .btn.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.4);
    background: linear-gradient(135deg, #00b877 0%, #009966 100%);
  }
  
  .navbar .btn.order-btn::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
  }
  
  .navbar .btn.order-btn:hover::after {
    transform: translateX(4px);
  }
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: #0d0d0d;
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e67700, #ffd166);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 119, 0, 0.4);
  box-shadow: 0 16px 40px rgba(230, 119, 0, 0.2);
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(230, 119, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #ffd166;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: rgba(230, 119, 0, 0.25);
  transform: scale(1.1);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #eaeaea;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: #d0d0d0;
  font-weight: 500;
}

/* Special Offers Section */
.offers {
  padding: 80px 0;
  background: #0d0d0d;
  width: 100%;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.offer-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.offer-card.featured {
  border-color: rgba(230, 119, 0, 0.4);
}

.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 119, 0, 0.5);
  box-shadow: 0 16px 40px rgba(230, 119, 0, 0.25);
}

.offer-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #0d0d0d;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.1);
}

.offer-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(230, 119, 0, 0.9);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.offer-content {
  padding: 25px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card h3 {
  font-size: 22px;
  color: #eaeaea;
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

.offer-description {
  color: #c0c0c0;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}

.offer-price {
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.offer-old-price {
  color: #888;
  text-decoration: line-through;
  font-size: 16px;
}

.offer-new-price {
  color: #e67700;
  font-size: 26px;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
}

.offer-discount {
  color: #ffd166;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
}

.offer-validity {
  color: #888;
  font-size: 12px;
  margin-top: 12px;
  font-style: italic;
}

/* Hours & Location Section */
.location-hours {
  padding: 80px 0;
  background: #0d0d0d;
  width: 100%;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: rgba(230, 119, 0, 0.3);
  box-shadow: 0 8px 24px rgba(230, 119, 0, 0.15);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(230, 119, 0, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffd166;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 22px;
  color: #eaeaea;
  margin: 0 0 20px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-day {
  color: #d0d0d0;
  font-weight: 500;
}

.hours-time {
  color: #ffd166;
  font-weight: 600;
}

.address-info {
  color: #d0d0d0;
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 20px;
}

.address-info strong {
  color: #eaeaea;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #ffd166;
}

.contact-link i {
  color: #e67700;
  font-size: 18px;
}

.parking-info {
  color: #d0d0d0;
  line-height: 1.6;
  margin: 0 0 10px;
}

.parking-note {
  color: #888;
  font-size: 14px;
  font-style: italic;
  margin: 0;
}

.location-map {
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) brightness(0.9);
}

/* Social Media Feed Section */
.social-feed {
  padding: 80px 0;
  background: #0d0d0d;
  width: 100%;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 50px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #1a1a1a;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: #d0d0d0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.social-link:hover {
  border-color: rgba(230, 119, 0, 0.5);
  color: #ffd166;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 119, 0, 0.2);
}

.social-link i {
  font-size: 20px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.social-post {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.social-post:hover {
  transform: scale(1.05);
  border-color: rgba(230, 119, 0, 0.4);
  box-shadow: 0 8px 24px rgba(230, 119, 0, 0.2);
}

.social-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.social-post:hover img {
  transform: scale(1.1);
}

.social-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-post:hover .social-overlay {
  opacity: 1;
}

.social-overlay i,
.social-overlay span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.social-overlay i {
  margin-right: 8px;
}

/* Responsive Styles for New Sections */
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .offer-image {
    height: 220px;
  }
  
  .location-content {
    grid-template-columns: 1fr;
  }
  
  .location-map {
    height: 400px;
  }
  
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .stats {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-card {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .offers {
    padding: 60px 0;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .offer-image {
    height: 200px;
  }
  
  .offer-content {
    padding: 20px;
  }
  
  .location-hours {
    padding: 60px 0;
  }
  
  .location-content {
    gap: 25px;
  }
  
  .info-card {
    padding: 25px 20px;
  }
  
  .hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .location-map {
    height: 300px;
  }
  
  .social-feed {
    padding: 60px 0;
  }
  
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-link {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .brand { transform: scale(1.1); }
  .logo { height: 42px; }
  
  .social-grid {
    grid-template-columns: 1fr;
  }
}


