/* GLASSMORPHISM — Frosted glass on dark background */
:root {
  --bg: #0A0A1A;
  --surface: rgba(255,255,255,0.08);
  --text: #E2E8F0;
  --primary: #FFFFFF;
  --accent: #1856FF;
  --muted: #9CA3AF;
  --border: rgba(255,255,255,0.15);
  --intro-bg: rgba(255,255,255,0.05);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --glass: backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  --glass-bg: rgba(255,255,255,0.07);
  --glass-border: 1px solid rgba(255,255,255,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; font-size: 1rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; color: #5B8FFF; }

.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 2rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky; top: 0; z-index: 100;
}
.nav-brand { font-size: 1.3rem; font-weight: 700; color: #FFFFFF; text-decoration: none; }
.nav-links { display: flex; list-style: none; gap: 1.5rem; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.nav-links a:hover { color: #FFFFFF; }
.nav-cta {
  border: 1px solid var(--accent) !important; color: var(--accent) !important;
  padding: 0.5rem 1.5rem; border-radius: 8px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent); color: #FFFFFF !important; text-decoration: none; }
.gbp-button { display: inline-flex; align-items: center; gap: 0.3rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: #FFFFFF; }

/* HERO — glass card overlaid on dark */
.hero-glass {
  position: relative; min-height: 480px; display: flex; align-items: center;
  justify-content: center; padding: 3rem 2rem;
}
.hero-glass-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(24,86,255,0.15) 0%, transparent 70%);
}
.hero-image-placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.15;
  background: linear-gradient(135deg, #0A0A1A, #1E1E3F);
}
.hero-glass-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px; padding: 3rem; max-width: 700px; text-align: center;
}
.hero-glass-card h1 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: #FFFFFF; margin-bottom: 1rem;
}
.hero-glass-card p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.hero-cta {
  display: inline-block; background: var(--accent); color: #FFFFFF; padding: 0.75rem 2rem;
  border-radius: 8px; font-weight: 600;
}

.geo-block {
  max-width: 800px; margin: 2rem auto; padding: 2rem;
  background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: var(--glass-border); border-radius: 12px;
}
.geo-block p { margin-bottom: 1rem; }

.embed-cluster { max-width: 800px; margin: 2rem auto; padding: 0 2rem; }
.embed-cluster h3 { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.5rem; }
.embed-cluster iframe { width: 100%; border: var(--glass-border); margin-bottom: 1.5rem; border-radius: 8px; }

.content-sections { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.content-section {
  background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: var(--glass-border); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem;
}
.content-section h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; color: #FFFFFF; }
.content-section p { margin-bottom: 1rem; }
.section-image { width: 100%; margin: 1rem 0; border-radius: 8px; opacity: 0.9; }

.explore-section {
  max-width: 800px; margin: 2rem auto; padding: 2rem;
  background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: var(--glass-border); border-radius: 12px;
}
.explore-section h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; color: #FFFFFF; }
.explore-section iframe { width: 100%; margin-bottom: 1.5rem; border-radius: 8px; }

.serving-area { max-width: 800px; margin: 2rem auto; padding: 2rem; }
.serving-area h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; color: #FFFFFF; }

.gallery-section { max-width: 900px; margin: 2rem auto; padding: 0 2rem; }
.gallery-section h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; color: #FFFFFF; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid img {
  width: 100%; height: 200px; object-fit: cover; border-radius: 8px;
  border: var(--glass-border); opacity: 0.85;
}
.gallery-grid img:hover { opacity: 1; box-shadow: 0 0 20px rgba(24,86,255,0.3); }

.faq-section { max-width: 800px; margin: 2rem auto; padding: 0 2rem; }
.faq-section h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; color: #FFFFFF; }
.faq-card {
  background: var(--glass-bg); border: var(--glass-border); border-radius: 10px;
  margin-bottom: 0.75rem; overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
  background: none; border: none; font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: #FFFFFF; cursor: pointer; text-align: left; padding: 1rem 1.5rem;
}
.faq-question i { transition: transform 0.3s; color: var(--accent); }
.faq-card.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--muted); }
.faq-answer p { padding: 0 1.5rem 1rem; }

.site-footer {
  background: rgba(255,255,255,0.03); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 2rem; margin-top: 3rem;
}
.footer-inner {
  max-width: 800px; margin: 0 auto;
  background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: var(--glass-border); border-radius: 12px; padding: 2rem; text-align: center;
}
.footer-brand { font-size: 1.2rem; font-weight: 700; color: #FFFFFF; margin-bottom: 1rem; }
.footer-nav { list-style: none; display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.6); }
.footer-nav a:hover { color: #FFFFFF; }
.footer-contact { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.5rem; }
.footer-social a { color: var(--accent); margin: 0 0.5rem; }
.footer-bottom { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-top: 1rem; }

.footer-quick-links { max-width: 800px; margin: 2rem auto; padding: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-quick-links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.footer-quick-links a { font-size: 0.85rem; color: var(--muted); }

.privacy-content { max-width: 720px; margin: 0 auto; padding: 3rem 2rem; }
.privacy-content h1 { font-size: 2rem; font-weight: 700; margin-bottom: 2rem; color: #FFFFFF; }
.privacy-content h2 { font-size: 1.3rem; font-weight: 700; margin: 2rem 0 1rem; color: #FFFFFF; }
.privacy-content p { margin-bottom: 1rem; }

.about-embed { max-width: 800px; margin: 2rem auto; padding: 0 2rem; }
.address-block {
  padding: 1.5rem; background: var(--glass-bg); border: var(--glass-border);
  border-radius: 12px; margin-bottom: 1.5rem; text-align: center;
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,26,0.95); backdrop-filter: blur(20px); padding: 1rem; gap: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-glass { min-height: 360px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
