:root {
  --green-dark: #074a1a;
  --green: #48624e;
  --green-light: #648c71;
  --green-bg: #e8f2eb;
  --warm: #C8A87C;
  --warm-light: #E8D5C0;
  --dark: #0f1210;
  --cream: #f5f8f3;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--dark); }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
::selection { background: var(--warm); color: var(--dark); }

.hero-bg {
  background: linear-gradient(135deg, #031a07 0%, var(--green-dark) 50%, #0a5e22 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='170' cy='50' r='2' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='80' cy='170' r='1.5' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='150' cy='150' r='1' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='50' cy='120' r='1.8' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}
.hero-content { position: relative; z-index: 1; }

.menu-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(7,74,26,0.12); }

.section-title { position: relative; display: inline-block; }
.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--warm);
  border-radius: 2px;
}

.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--warm);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.review-card {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid rgba(7,74,26,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(7,74,26,0.06); }

.gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.feature-tag {
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  background: rgba(7,74,26,0.08);
  color: var(--green);
  transition: all 0.2s;
  cursor: default;
}
.feature-tag:hover { background: var(--green); color: white; }

.tab-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.tab-btn.active { background: var(--green-dark); color: white; }
.tab-btn:not(.active) { background: white; color: var(--green); border: 1px solid rgba(7,74,26,0.2); }
.tab-btn:not(.active):hover { background: var(--green-bg); }

.btn-primary {
  background: var(--warm);
  color: var(--dark);
  transition: all 0.2s;
}
.btn-primary:hover { background: #b89564; }

.btn-outline {
  border: 1px solid rgba(200,168,124,0.4);
  color: var(--warm-light);
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }

@media (max-width: 640px) {
  .hero-title { font-size: 2.5rem; }
}
