/* DOODLE — Hand-drawn / sketch aesthetic */
:root {
  --bg: #FEFCF3;
  --surface: #FFFFFF;
  --text: #2C2C2C;
  --primary: #49B6E5;
  --accent: #263D5B;
  --muted: #666666;
  --border: #263D5B;
  --intro-bg: #F0F9FF;
  --font-display: 'Delius Swash Caps', cursive;
  --font-body: 'Delius Swash Caps', cursive;
}

*, *::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.8; font-size: 1rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration-style: wavy; text-decoration: underline; text-decoration-color: var(--primary); }

.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 2rem; background: var(--surface); position: sticky; top: 0; z-index: 100;
  border-bottom: 2px dashed var(--border);
}
.nav-brand { font-size: 1.3rem; color: var(--accent); text-decoration: none; }
.nav-links { display: flex; list-style: none; gap: 1.5rem; align-items: center; }
.nav-links a {
  color: var(--text); font-size: 0.9rem;
  text-decoration: underline; text-decoration-style: wavy; text-decoration-color: var(--primary);
  text-underline-offset: 4px;
}
.nav-links a:hover { color: var(--primary); }
.gbp-button { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--primary) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

/* HERO — sketchy border frame */
.hero-doodle {
  max-width: 900px; margin: 2rem auto; padding: 0 2rem;
}
.hero-frame {
  border: 3px solid var(--accent); outline: 6px solid transparent; outline-offset: 4px;
  position: relative; overflow: hidden;
}
.hero-image-placeholder {
  width: 100%; height: 380px;
  background: linear-gradient(135deg, var(--intro-bg), #E8D5B7);
}
.hero-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.hero-zigzag {
  text-align: center; padding: 0.5rem 0;
  border-bottom: 8px dashed var(--accent);
  color: var(--muted); font-size: 0.8rem; letter-spacing: 0.3em;
}
.hero-title {
  max-width: 900px; margin: 2rem auto; padding: 0 2rem;
}
.hero-title h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--accent); margin-bottom: 0.5rem;
  text-decoration: underline; text-decoration-style: wavy; text-decoration-color: var(--primary);
  text-underline-offset: 6px;
}

.geo-block { max-width: 900px; margin: 2rem auto; padding: 2rem; background: var(--intro-bg); border: 2px dashed var(--accent); }
.geo-block p { margin-bottom: 1rem; }

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

/* BODY — dashed border cards, slightly rotated */
.content-sections { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.content-section {
  border: 2px dashed var(--accent); background: var(--surface); padding: 2rem;
  margin-bottom: 2rem;
}
.content-section:nth-child(even) { transform: rotate(-0.5deg); }
.content-section:nth-child(odd) { transform: rotate(0.5deg); }
.content-section h2 {
  font-size: 1.4rem; color: var(--accent); margin-bottom: 1rem;
  text-decoration: underline; text-decoration-style: wavy; text-decoration-color: var(--primary);
  text-underline-offset: 4px;
}
.content-section p { margin-bottom: 1rem; }
.section-image { width: 100%; margin: 1rem 0; border: 2px solid var(--accent); }

.explore-section {
  max-width: 900px; margin: 2rem auto; padding: 2rem;
  border: 2px dashed var(--accent); background: var(--intro-bg);
}
.explore-section h2 { font-size: 1.4rem; color: var(--accent); margin-bottom: 1.5rem; }
.explore-section iframe { width: 100%; margin-bottom: 1.5rem; border: 2px dashed var(--border); }

.serving-area { max-width: 900px; margin: 2rem auto; padding: 2rem; }
.serving-area h2 { font-size: 1.3rem; color: var(--accent); margin-bottom: 1rem; }

.gallery-section { max-width: 900px; margin: 2rem auto; padding: 0 2rem; }
.gallery-section h2 { font-size: 1.4rem; color: var(--accent); margin-bottom: 1.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-grid img {
  width: 100%; height: 200px; object-fit: cover;
  border: 2px solid var(--accent); box-shadow: 3px 3px 0 var(--accent);
  transform: rotate(-1deg);
}
.gallery-grid img:nth-child(even) { transform: rotate(1deg); }

.faq-section { max-width: 900px; margin: 2rem auto; padding: 0 2rem; }
.faq-section h2 { font-size: 1.4rem; color: var(--accent); margin-bottom: 1.5rem; }
.faq-card { border-bottom: 2px dashed var(--border); }
.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;
  color: var(--accent); cursor: pointer; text-align: left; padding: 1rem 0;
}
.faq-question i { transition: transform 0.3s; }
.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.5rem 0 1rem; }

.site-footer {
  border-top: 3px dashed var(--accent); padding: 2rem; margin-top: 3rem; text-align: center;
}
.footer-brand { font-size: 1.3rem; color: var(--accent); 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: var(--text); text-decoration: underline; text-decoration-style: wavy; text-decoration-color: var(--primary); text-underline-offset: 3px; }
.footer-contact { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.5rem; }
.footer-social a { color: var(--primary); margin: 0 0.5rem; }
.footer-bottom { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

.footer-quick-links { max-width: 900px; margin: 2rem auto; padding: 2rem; border-top: 2px dashed var(--border); }
.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; }

.privacy-content { max-width: 720px; margin: 0 auto; padding: 3rem 2rem; }
.privacy-content h1 { font-size: 2rem; color: var(--accent); margin-bottom: 2rem; }
.privacy-content h2 { font-size: 1.3rem; color: var(--accent); margin: 2rem 0 1rem; }
.privacy-content p { margin-bottom: 1rem; }

.about-embed { max-width: 900px; margin: 2rem auto; padding: 0 2rem; }
.address-block { padding: 1.5rem; border: 2px dashed var(--accent); text-align: center; margin-bottom: 1.5rem; }

.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: var(--surface); padding: 1rem; border-bottom: 2px dashed var(--border); gap: 0.8rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-image-placeholder { height: 250px; }
  .content-section:nth-child(even), .content-section:nth-child(odd) { transform: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
