@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Be+Vietnam+Pro:wght@300;400;500;600&family=Noto+Serif:ital@1&display=swap');

/* ─── CSS Variables ─── */
:root {
  --green-dark:    #1e3a0f;
  --green-mid:     #2e5c14;
  --green-bright:  #5aab1e;
  --green-accent:  #7dc93a;
  --green-light:   #a8e063;
  --gold:          #d4a843;
  --gold-light:    #f0c96a;
  --cream:         #f5f0e8;
  --cream-dark:    #e8dfc8;
  --dark:          #0e1f06;
  --text-light:    #f0ede6;
  --text-muted:    #b8c4a8;
  --red-accent:    #c0392b;
  --section-bg:    #111d09;
  --card-bg:       #162a09;
  --border:        rgba(90, 171, 30, 0.25);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
  cursor: default;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Noise Texture Overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: linear-gradient(to bottom, rgba(14,31,6,0.97), rgba(14,31,6,0.85));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

nav.scrolled {
  height: 60px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo img {
  width: 8rem;
  height: 8rem;
  object-fit: contain;
  margin-right: -2rem;
  margin-left: -2rem;
}

.nav-logo .logo-badge {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  border: 2px solid var(--green-accent);
  box-shadow: 0 0 12px rgba(90,171,30,0.4);
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-logo span em {
  color: var(--green-accent);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--green-accent);
  transition: left 0.3s, right 0.3s;
  border-radius: 2px;
}

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { left: 1rem; right: 1rem; }

.nav-links a.active { color: var(--green-light); }
.nav-links a.active::after { left: 1rem; right: 1rem; }

.nav-cta {
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
  color: white !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  box-shadow: 0 0 18px rgba(90,171,30,0.35);
  transition: box-shadow 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  box-shadow: 0 0 28px rgba(90,171,30,0.6) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── Sections (tab pages) ─── */
.page { display: none; animation: fadeUp 0.5s ease both; }
.page.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 2rem 4rem;
  text-align: center;
}

/* Animated background rings */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(90,171,30,0.12);
  animation: pulse-ring 6s ease-in-out infinite;
}

.hero::before {
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.hero::after {
  width: 1000px; height: 1000px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation-delay: 3s;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.3; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 0.1; transform: translate(-50%,-50%) scale(1.05); }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(46,92,20,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 80% 80% at 10% 90%, rgba(90,171,30,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 10%, rgba(212,168,67,0.06) 0%, transparent 60%),
    var(--dark);
}

/* Floating leaves */
.leaf {
  position: absolute;
  font-size: 1.5rem;
  animation: float-leaf 8s ease-in-out infinite;
  opacity: 0.15;
  user-select: none;
  pointer-events: none;
}
.leaf:nth-child(1) { top: 15%; left: 8%;  animation-delay: 0s; }
.leaf:nth-child(2) { top: 25%; right: 10%; animation-delay: 2s; font-size: 2rem; }
.leaf:nth-child(3) { bottom: 30%; left: 5%; animation-delay: 4s; font-size: 1rem; }
.leaf:nth-child(4) { bottom: 20%; right: 8%; animation-delay: 1s; }
.leaf:nth-child(5) { top: 60%; left: 15%; animation-delay: 3s; font-size: 1.2rem; }

@keyframes float-leaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-15px) rotate(8deg); }
  66%       { transform: translateY(-8px) rotate(-5deg); }
}

.hero-inner { position: relative; z-index: 2; max-width: 800px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(90,171,30,0.15);
  border: 1px solid rgba(90,171,30,0.35);
  color: var(--green-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s ease both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 0.3em;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero h1 .line1 { display: block; color: var(--cream); }
.hero h1 .line2 {
  display: block;
  background: linear-gradient(90deg, var(--green-accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: 'Noto Serif', serif;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.5s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 24px rgba(90,171,30,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(90,171,30,0.55);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(245,240,232,0.25);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--green-accent);
  background: rgba(90,171,30,0.1);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s 0.65s ease both;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-accent);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ─── Section Headers ─── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
}

.section-title span { color: var(--green-accent); }

.section-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ─── About strip (on home) ─── */
.about-strip {
  background: var(--section-bg);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1rem;
}

.about-text h2 em {
  font-style: italic;
  color: var(--green-accent);
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(90,171,30,0.1);
  border: 1px solid var(--border);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
}

.feature-pill .icon { font-size: 1rem; }

.about-visual {
  position: relative;
}

.about-visual h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1rem;
}

.about-visual h2 em {
  font-style: italic;
  color: var(--green-accent);
}

.food-showcase {
  background: linear-gradient(135deg, var(--card-bg), var(--green-dark));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.food-showcase::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(90,171,30,0.15), transparent 70%);
  border-radius: 50%;
}

.showcase-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}

.showcase-item:hover { background: rgba(90,171,30,0.1); }
.showcase-item .emoji { font-size: 1.8rem; }
.showcase-item .item-info h4 { font-size: 0.9rem; font-weight: 600; color: var(--cream); }
.showcase-item .item-info p { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem; }
.showcase-item .item-price {
  margin-left: auto;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

/* ─── MENU PAGE ─── */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
  min-height: calc(100vh - 72px);
}

.menu-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Be Vietnam Pro', sans-serif;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: white;
  box-shadow: 0 0 16px rgba(90,171,30,0.35);
}

.menu-category { margin-bottom: 3.5rem; }

.category-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-accent);
  border-left: 3px solid var(--green-accent);
  padding-left: 0.75rem;
  margin-bottom: 1.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.menu-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,171,30,0.05), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.menu-card:hover { 
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4), 0 0 0 1px rgba(90,171,30,0.3);
  border-color: rgba(90,171,30,0.4);
}

.menu-card:hover::before { opacity: 1; }

.card-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.card-body { flex: 1; }

.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.card-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.card-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

.badge-popular {
  background: rgba(212,168,67,0.2);
  color: var(--gold-light);
  border: 1px solid rgba(212,168,67,0.3);
}

.badge-spicy {
  background: rgba(192,57,43,0.2);
  color: #e74c3c;
  border: 1px solid rgba(192,57,43,0.3);
}

.badge-vegan {
  background: rgba(90,171,30,0.15);
  color: var(--green-light);
  border: 1px solid rgba(90,171,30,0.3);
}

/* ─── FESTIVALS PAGE ─── */
.festival-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.festivals-list { display: flex; flex-direction: column; gap: 1.25rem; }

.festival-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  align-items: center;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.festival-card.upcoming {
  border-left: 3px solid var(--green-bright);
}

.festival-card.past {
  opacity: 0.55;
  border-left: 3px solid rgba(255,255,255,0.15);
}

.festival-card:hover {
  transform: translateX(4px);
  border-color: rgba(90,171,30,0.5);
}

.festival-date {
  text-align: center;
  min-width: 70px;
}

.date-day {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-accent);
  line-height: 1;
}

.date-month {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.festival-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  margin: 0 0.5rem;
}

.festival-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.festival-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.festival-status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.status-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.status-upcoming {
  background: rgba(90,171,30,0.2);
  color: var(--green-light);
  border: 1px solid rgba(90,171,30,0.35);
}

.status-soon {
  background: rgba(212,168,67,0.2);
  color: var(--gold-light);
  border: 1px solid rgba(212,168,67,0.35);
}

.status-past {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
}

.countdown {
  font-size: 0.78rem;
  color: var(--green-accent);
  font-weight: 500;
}

/* Festival Map Placeholder */
.festival-map-hint {
  margin-top: 3rem;
  background: var(--card-bg);
  border: 1px dashed var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.festival-map-hint h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.festival-map-hint p { font-size: 0.85rem; color: var(--text-muted); }

/* ─── GALLERY ─── */
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
  gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-placeholder {
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
}

.gallery-placeholder .g-emoji { font-size: 3rem; opacity: 0.5; }
.gallery-placeholder span { font-size: 0.8rem; font-weight: 500; }

.gallery-placeholder.tall { padding: 5rem 1.5rem; }
.gallery-placeholder.short { padding: 2rem 1.5rem; }

.gallery-upload-note {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(90,171,30,0.07);
  border: 1px dashed rgba(90,171,30,0.3);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ─── CONTACT PAGE ─── */
#page-contact .page-content{
  padding-bottom: 0%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-items { display: flex; flex-direction: column; gap: 1rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.contact-icon {
  width: 40px; height: 40px;
  background: rgba(90,171,30,0.15);
  border: 1px solid rgba(90,171,30,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-item p { font-size: 0.9rem; color: var(--cream); }

.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; margin-bottom: 1.5rem;}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--green-accent);
  background: rgba(90,171,30,0.1);
}

/* Contact Form */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text-light);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(184,196,168,0.4); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(90,171,30,0.15);
}

.form-group select option { background: var(--card-bg); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: box-shadow 0.2s, transform 0.2s;
}

.form-submit:hover {
  box-shadow: 0 4px 20px rgba(90,171,30,0.5);
  transform: translateY(-1px);
}

/* ─── Newsletter Strip ─── */
.newsletter-strip {
  background: linear-gradient(135deg, var(--green-dark), var(--dark));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.newsletter-strip h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.newsletter-strip p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.75rem 1.25rem;
  color: var(--text-light);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input:focus { border-color: var(--green-accent); }
.newsletter-form input::placeholder { color: var(--text-muted); }

.newsletter-form button {
  background: var(--green-bright);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Be Vietnam Pro', sans-serif;
  transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--green-accent); }

/* ─── Footer ─── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem 0.5rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-logo em { color: var(--green-accent); font-style: normal; }

footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.footer-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; margin: 0.5rem 0; }

/* ─── Toast notification ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green-dark);
  border: 1px solid var(--green-bright);
  color: var(--cream);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 9000;
  transition: transform 0.3s ease;
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ─── Mobile Nav ─── */
@media (max-width: 768px) {
  @media (max-width: 768px) {

  .hamburger {
    display: flex;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;

    background: rgba(14,31,6,0.98);
    backdrop-filter: blur(20px);

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    transform: translateY(-100%);
    transition: transform 0.35s ease;

    z-index: 9999;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 1rem;
  }

  .hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .festival-card { grid-template-columns: 1fr; gap: 1rem; padding: 1.25rem; }
  .festival-divider { display: none; }
  .festival-status { align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
}
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .about-features { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}
