/* ===== CSS VARIABLES ===== */
:root {
  --green-dark: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #52B788;
  --green-pale: #D8F3DC;
  --white: #FFFFFF;
  --off-white: #F8FAF9;
  --text-dark: #1A1A1A;
  --text-muted: #555;
  --shadow: 0 4px 20px rgba(27, 67, 50, 0.15);
  --shadow-hover: 0 8px 32px rgba(27, 67, 50, 0.25);
  --radius: 12px;
  --transition: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(27, 67, 50, 0.97);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
}
.nav-logo span { color: var(--green-light); }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green-light);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-order-btn {
  background: var(--green-light) !important;
  color: var(--green-dark) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}
.nav-order-btn:hover { background: var(--white) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--green-dark);
  padding: 1.5rem 5%;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, #1a7a4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%2352B788' fill-opacity='0.06'%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; max-width: 700px; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(82, 183, 136, 0.2);
  color: var(--green-light);
  border: 1px solid rgba(82, 183, 136, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}
.hero h1 .brand { color: var(--green-light); }
.hero-tagline {
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  font-style: italic;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--green-light);
  color: var(--green-dark);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid var(--green-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '↓';
  font-size: 1.2rem;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTION SHARED ===== */
section { padding: 80px 5%; }
.section-label {
  text-align: center;
  color: var(--green-mid);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* ===== WHY SAR ===== */
.why-sar { background: var(--off-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-card h3 { color: var(--green-dark); font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 700; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== MENU ===== */
.menu-section { background: var(--white); }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.tab-btn {
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  border: 2px solid var(--green-mid);
  background: transparent;
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-category-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.menu-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(27,67,50,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--green-light);
  border-radius: 4px 0 0 4px;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.menu-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.3;
}
.price-badge {
  background: var(--green-dark);
  color: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  flex: 1;
}
.menu-order-btn {
  background: var(--green-mid);
  color: var(--white);
  border: none;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}
.menu-order-btn:hover { background: var(--green-dark); transform: scale(1.02); }

/* Drinks sub-sections */
.drinks-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 2rem 0 1rem;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-pale);
}
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 1rem;
}
.drink-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(27,67,50,0.08);
  transition: var(--transition);
}
.drink-card:hover { background: var(--green-pale); transform: scale(1.02); }
.drink-name { font-weight: 600; font-size: 0.9rem; color: var(--green-dark); }
.drink-price { font-weight: 700; color: var(--green-mid); font-size: 0.9rem; }

/* ===== OFFERS BANNER ===== */
.offers-banner {
  background: linear-gradient(90deg, var(--green-dark), var(--green-mid), var(--green-dark));
  background-size: 200% 100%;
  animation: shimmer 4s ease infinite;
  color: var(--white);
  text-align: center;
  padding: 2.5rem 5%;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.offers-banner h2 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.offers-banner p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 1.25rem; }
.offers-banner .btn-primary { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.offers-banner .btn-primary:hover { background: var(--green-pale); border-color: var(--green-pale); }

/* ===== ABOUT ===== */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-text .section-label, .about-text .section-title { text-align: left; }
.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-image-box {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}
.about-image-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(82,183,136,0.3), transparent 60%);
}

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}
.gallery-item {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(27,67,50,0.9));
  color: var(--white);
  padding: 1rem 1rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover::after { transform: translateY(0); }
.gallery-tiktok {
  text-align: center;
}
.tiktok-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid var(--green-dark);
}
.tiktok-btn:hover { background: transparent; color: var(--green-dark); }

/* ===== REVIEWS ===== */
.reviews { background: var(--off-white); }
.rating-overall {
  text-align: center;
  margin-bottom: 2.5rem;
}
.rating-big {
  font-size: 4rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}
.stars { color: #F4A017; font-size: 1.4rem; letter-spacing: 2px; }
.rating-count { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.3rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.review-stars { color: #F4A017; margin-bottom: 0.75rem; font-size: 1rem; }
.review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  flex-shrink: 0;
}
.review-name { font-weight: 700; color: var(--green-dark); font-size: 0.9rem; }
.review-date { color: var(--text-muted); font-size: 0.8rem; }

/* ===== LOCATION & HOURS ===== */
.location { background: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.hours-table {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(27,67,50,0.08);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.today { background: var(--green-pale); font-weight: 700; }
.hours-day { color: var(--text-dark); font-weight: 500; }
.hours-time { color: var(--green-mid); font-weight: 600; }
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.open-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 350px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact-info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.contact-item span:first-child { font-size: 1.2rem; flex-shrink: 0; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: #25D366;
  color: var(--white);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
.whatsapp-float::before {
  content: 'Order Now!';
  position: absolute;
  right: 70px;
  background: var(--text-dark);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
}
.whatsapp-float:hover::before { opacity: 1; }

/* ===== FOOTER ===== */
footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 3rem 5% 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { font-size: 1.8rem; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--green-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.social-links { display: flex; gap: 1rem; }
.social-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover { color: var(--green-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-box { max-width: 400px; margin: 0 auto; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding-top: 90px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 5%; }
  .about-stats { gap: 1rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; aspect-ratio: 1; }
  .features-grid { grid-template-columns: 1fr; }
}
