/* ============================================
   THE EMPIRE - Coffeeshop Haarlem
   Green & Clean Theme (Greengrocers-stijl)
   ============================================ */

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

:root {
  --green: #1a2d4d;
  --green-mid: #243f65;
  --green-light: #2e5a8a;
  --green-pale: #e6eef7;
  --green-accent: #2e6b8a;
  --moss: #3a7a5c;
  --moss-pale: #e8f5ec;
  --black: #1a1a1a;
  --dark: #222222;
  --white: #ffffff;
  --off-white: #f7f8f6;
  --gray-bg: #f0f2ee;
  --gray: #666666;
  --gray-light: #999999;
  --gray-border: #e0e0e0;
  --card-bg: #ffffff;
  --text: #2c2c2c;
  --text-light: #555555;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
  --transition: 0.3s ease;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

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

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--moss));
  margin: 16px auto 24px;
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font-main);
}

.btn-gold {
  background: var(--green);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 28, 51, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: all var(--transition);
  border-radius: 1px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f1c33 0%, #1a2d4d 40%, #162844 70%, #0f1c33 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.hero-bg .moon-watermark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 480px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(26, 71, 42, 0.8), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--white);
}

.hero h1 span {
  color: var(--white);
  display: block;
  opacity: 0.9;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-gold {
  background: var(--white);
  color: var(--green);
}

.hero-buttons .btn-gold:hover {
  background: var(--off-white);
  color: var(--green);
}

.hero-buttons .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.hero-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease infinite;
}

.hero-scroll .arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Page Hero (smaller, for subpages) --- */
.page-hero {
  position: relative;
  padding: 140px 24px 80px;
  text-align: center;
  background: linear-gradient(135deg, #0f1c33 0%, #1a2d4d 50%, #0f1c33 100%);
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: var(--white);
}

.page-hero h1 span,
.page-hero h1 span[style] {
  color: rgba(255, 255, 255, 0.75) !important;
}

.cta-banner h2 span,
.cta-banner h2 span[style] {
  color: rgba(255, 255, 255, 0.85) !important;
}

.page-hero p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Sections --- */
section {
  padding: 100px 0;
}

.section-dark {
  background: var(--off-white);
}

.section-black {
  background: var(--white);
}

/* --- Feature Cards --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  color: var(--green);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Menu Highlights / Menu Grid --- */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 10px 24px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 50px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-main);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

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

.menu-item {
  background: var(--card-bg);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.menu-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.menu-item .new-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--moss, #3a7a5c);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 1;
}

.menu-item .new-badge + .new-badge {
  top: 30px;
}

body.dark-mode .menu-item .new-badge {
  background: #5ba8d4;
  color: #0f0f0f;
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 0.83rem;
  color: var(--gray-light);
  margin-bottom: 8px;
}

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

.menu-tag {
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-hybrid {
  background: #f0e6ff;
  color: #7c3aed;
  border: 1px solid #ddd6fe;
}

.tag-indica {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.tag-sativa {
  background: #dcfce7;
  color: #1a6b3a;
  border: 1px solid #bbf7d0;
}

.tag-hash {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.tag-joint {
  background: #fce7f3;
  color: #9d174d;
  border: 1px solid #fbcfe8;
}

.tag-edible {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.tag-drink {
  background: #e0f2fe;
  color: #075985;
  border: 1px solid #bae6fd;
}

.tag-waterhash {
  background: #ccfbf1;
  color: #0f766e;
  border: 1px solid #99f6e4;
}

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

.menu-item-unit {
  font-size: 0.7rem;
  color: var(--gray-light);
  font-family: var(--font-main);
  font-weight: 400;
}

/* --- Menu Category Header --- */
.menu-category {
  margin-bottom: 48px;
}

.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-pale);
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-category-icon {
  font-size: 1.3rem;
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.review-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-weight: 600;
  color: var(--black);
  font-size: 0.9rem;
}

.review-source {
  color: var(--gray-light);
  font-size: 0.8rem;
}

.review-summary {
  text-align: center;
  margin-bottom: 48px;
}

.review-score {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.review-score-stars {
  color: #f59e0b;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin: 8px 0;
}

.review-count {
  color: var(--gray-light);
  font-size: 0.9rem;
}

a[href*="elfsight.com"] {
  display: none !important;
}

/* --- Info / About Grid --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.info-block {
  background: var(--card-bg);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.info-block h3 {
  color: var(--green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-block p,
.info-block li {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.info-block ul {
  list-style: none;
}

.info-block li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 1.3rem;
  color: var(--green);
  min-width: 32px;
  text-align: center;
  padding-top: 2px;
}

.contact-label {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-value {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 10px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-border);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--text);
}

.hours-table td:last-child {
  text-align: right;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  height: 100%;
  min-height: 400px;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* --- About Page --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-story-text h2 {
  margin-bottom: 24px;
}

.about-story-text h2 span {
  color: var(--green);
}

.about-story-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-image-placeholder {
  background: linear-gradient(135deg, var(--green-pale), #d4edda);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--card-bg);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.value-card .feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  color: var(--green);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* --- Footer --- */
.footer {
  background: linear-gradient(135deg, var(--green), #1a3a32);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-family: var(--font-main);
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* --- Age Gate Overlay --- */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(15, 28, 51, 0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.age-gate.hidden {
  display: none;
}

.age-gate-content {
  max-width: 420px;
  padding: 48px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-gate-content h2 {
  color: var(--green);
  margin-bottom: 16px;
}

.age-gate-content p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.age-gate-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.age-gate-buttons .btn {
  min-width: 120px;
}

.btn-dark {
  background: var(--gray-bg);
  color: var(--gray);
}

.btn-dark:hover {
  background: #e0e0e0;
  color: var(--text);
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, #0f1c33, #1a2d4d);
  color: var(--white);
}

.cta-banner h2 {
  margin-bottom: 16px;
  color: var(--white);
}

.cta-banner h2 span {
  color: rgba(255, 255, 255, 0.9) !important;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-banner .btn-gold {
  background: var(--white);
  color: var(--green);
}

.cta-banner .btn-gold:hover {
  background: var(--off-white);
}

.cta-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.cta-banner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* --- Responsive --- */
@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15, 28, 51, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 100px 24px 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .age-gate-buttons {
    flex-direction: column;
  }

  .nav-actions {
    gap: 4px !important;
  }
}

/* --- Nav Actions (lang + dark mode) --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-actions button {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-main);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}

.nav-actions button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

#darkModeToggle {
  font-size: 1rem;
  padding: 6px 10px;
}

/* --- Dark Mode --- */
body.dark-mode {
  --white: #0f0f0f;
  --off-white: #1a1a1a;
  --gray-bg: #1a1a1a;
  --card-bg: #1e1e1e;
  --gray-border: #333333;
  --text: #e8e8e8;
  --text-light: #aaaaaa;
  --black: #f0f0f0;
  background: #0f0f0f;
  color: #e8e8e8;
}

body.dark-mode .navbar {
  background: rgba(15, 15, 15, 0.97);
  border-bottom-color: #333;
}

body.dark-mode .nav-links a {
  color: #ccc;
}

body.dark-mode .nav-links a:hover,
body.dark-mode .nav-links a.active {
  color: #5ba8d4;
  background: rgba(74, 222, 128, 0.1);
}

body.dark-mode .nav-actions button {
  color: #ccc;
  border-color: #444;
}

body.dark-mode .nav-actions button:hover {
  background: rgba(74, 222, 128, 0.1);
  border-color: #5ba8d4;
  color: #5ba8d4;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
  color: #f0f0f0;
}

body.dark-mode .section-title span,
body.dark-mode .feature-card h3,
body.dark-mode .menu-category-title,
body.dark-mode .menu-item-price,
body.dark-mode .review-score,
body.dark-mode .info-block h3,
body.dark-mode .value-card h3 {
  color: #5ba8d4;
}

body.dark-mode .gold-line {
  background: #5ba8d4;
}

body.dark-mode .menu-tab {
  background: #1e1e1e;
  border-color: #333;
  color: #aaa;
}

body.dark-mode .menu-tab:hover,
body.dark-mode .menu-tab.active {
  background: #5ba8d4;
  color: #0f0f0f;
  border-color: #5ba8d4;
}

body.dark-mode .btn-gold {
  background: #5ba8d4;
  color: #0f0f0f;
}

body.dark-mode .btn-outline {
  color: #5ba8d4;
  border-color: #5ba8d4;
}

body.dark-mode .btn-outline:hover {
  background: #5ba8d4;
  color: #0f0f0f;
}

body.dark-mode .age-gate {
  background: rgba(0, 0, 0, 0.95);
}

body.dark-mode .age-gate-content {
  background: #1e1e1e;
  border-color: #333;
}

body.dark-mode .age-gate-content h2 {
  color: #5ba8d4;
}

body.dark-mode .age-gate-content p {
  color: #aaa;
}

body.dark-mode .footer {
  background: #111;
  border-top: 1px solid #333;
}

body.dark-mode .map-container iframe {
  filter: invert(0.9) hue-rotate(180deg) contrast(0.85);
}

@media (max-width: 768px) {
  body.dark-mode .nav-links {
    background: rgba(15, 15, 15, 0.98);
    border-bottom-color: #333;
  }
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white, #fff);
  border-top: 1px solid var(--gray-border, #e0e0e0);
  padding: 20px 24px;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text-light, #555);
  max-width: 600px;
  margin: 0;
  line-height: 1.5;
}

.cookie-banner .btn {
  padding: 10px 24px;
  font-size: 0.8rem;
  white-space: nowrap;
}

body.dark-mode .cookie-banner {
  background: #1e1e1e;
  border-top-color: #333;
}

body.dark-mode .cookie-banner p {
  color: #aaa;
}

/* --- WhatsApp Button --- */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: white;
}

/* Move WhatsApp button up when cookie banner is visible */
.cookie-banner:not(.hidden) ~ .whatsapp-btn {
  bottom: 90px;
}

/* --- Newsletter Section --- */
.newsletter-section {
  background: linear-gradient(135deg, var(--green-pale), #e8f5ec);
  padding: 48px 24px;
  text-align: center;
}

.newsletter-section h3 {
  color: var(--moss);
  margin-bottom: 8px;
}

.newsletter-section p {
  color: var(--text-light, #555);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 20px;
  border: 1px solid var(--gray-border, #e0e0e0);
  border-radius: 50px;
  font-size: 0.9rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input:focus {
  border-color: var(--green, #1a472a);
}

.newsletter-form .btn {
  padding: 12px 28px;
}

body.dark-mode .newsletter-section {
  background: #1a1a1a;
}

body.dark-mode .newsletter-form input {
  background: #2a2a2a;
  border-color: #444;
  color: #eee;
}
