@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+Pro:wght@300;400;600&display=swap");

:root {
  --green: #A9BD93;
  --green-dark: #7a9a68;
  --green-light: #c8dbb5;
  --green-pale: #f0f5ec;
  --terracotta: #c8956b;
  --cream: #faf8f5;
  --white: #ffffff;
  --dark: #1d1d1b;
  --text: #3d3d3d;
  --text-muted: #7a7a7a;
  --border: #e4e4e0;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans Pro', sans-serif;

  --nav-h: 72px;
  --max-w: 1160px;
  --section-py: 5rem;

  --shadow-sm: 0 2px 10px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.11);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --radius: 10px;
  --ease: 0.25s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--terracotta); }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); }
p { margin-bottom: 1.15em; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 600; color: var(--dark); }
small { font-size: 0.87em; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--section-py) 1.5rem; }
.section-cream { background: var(--cream); }
.section-pale  { background: var(--green-pale); }
.section-dark  { background: var(--dark); }

/* ── Section labels & headers ────────────────────────────── */
.label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.65rem;
}
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.section-head h2 { margin-bottom: 0.65rem; }
.section-head p  { color: var(--text-muted); font-size: 1.05rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--ease);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
}
.btn-primary  { background: var(--green);      color: var(--white); }
.btn-primary:hover  { background: var(--green-dark); color: var(--white); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.8); }
.btn-outline:hover  { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-dark     { background: var(--dark);        color: var(--white); }
.btn-dark:hover     { background: #333;         color: var(--white); }
.btn-bordered { background: transparent; color: var(--green-dark); border-color: var(--green); }
.btn-bordered:hover { background: var(--green); color: var(--white); }
.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.82rem; }

/* ── Navigation ──────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 38px !important; width: auto !important; max-width: none !important; }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.87rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  border-bottom: none;
  transition: all var(--ease);
}
.nav-links a:hover { color: var(--green-dark); background: var(--green-pale); }
.nav-links a.active { color: var(--green-dark); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 0.5rem 1.35rem !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--dark);
  line-height: 1;
  flex-shrink: 0;
}
.nav-toggle svg { width: 24px; height: 24px; display: block; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  margin-top: var(--nav-h);
}
.hero-bg {
  width: 100%;
  height: auto;
  display: block;
}
.hero-intro {
  background: var(--cream);
  padding: 3rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero-intro h1 {
  font-family: 'Source Sans Pro', sans-serif;
  font-style: normal;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1rem;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-weight: 400;
  line-height: 1.65;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-outline-muted {
  background: transparent;
  color: var(--text-muted) !important;
  border-color: var(--border) !important;
  opacity: 0.7;
  cursor: default;
}

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  margin-top: var(--nav-h);
  background: var(--green-pale);
  border-bottom: 1px solid var(--green-light);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: var(--text-muted); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* ── Shop page header ────────────────────────────────────── */
.shop-head {
  margin-top: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.shop-head h1 { margin-bottom: 0.65rem; }
.shop-head p  { color: var(--text-muted); max-width: 500px; margin: 0 auto; font-size: 1.05rem; }

/* ── Feature cards ───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-img  { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 0.65rem; }
.card-body p  { color: var(--text-muted); font-size: 0.96rem; flex: 1; margin-bottom: 1.5rem; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--green);
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-banner .label { color: rgba(255,255,255,0.75); }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  {
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
}

/* ── Opening hours ───────────────────────────────────────── */
.hours-section {
  background: var(--dark);
  padding: 5rem 1.5rem;
  text-align: center;
}
.hours-section h2 { color: var(--white); margin-bottom: 2.25rem; }
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.6rem;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}
.hours-row .day  { font-weight: 600; color: var(--green-light); font-size: 0.92rem; }
.hours-row .time { color: rgba(255,255,255,0.82); font-size: 0.88rem; text-align: right; }
.hours-note { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; }

/* ── Schedule table ──────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
  background: var(--white);
}
.schedule-table thead tr { background: var(--green); }
.schedule-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}
.schedule-table tbody tr { border-bottom: 1px solid var(--border); }
.schedule-table tbody tr:last-child { border-bottom: none; }
.schedule-table tbody tr:hover { background: var(--green-pale); }
.schedule-table td {
  padding: 1.1rem 1.25rem;
  vertical-align: middle;
  color: var(--text);
}
.schedule-table td:first-child { font-weight: 600; color: var(--dark); }
.badge {
  display: inline-block;
  padding: 0.22em 0.75em;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
.badge-paid { background: var(--green-pale); color: var(--green-dark); }
.badge-free { background: #e8f5e9; color: #2e7d32; }

/* ── Voucher card ────────────────────────────────────────── */
.voucher-card {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  color: var(--white);
}
.voucher-card h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.voucher-card p { color: rgba(255,255,255,0.9); margin-bottom: 1.75rem; }

/* ── Bookeo widget wrapper ───────────────────────────────── */
.booking-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
}
.booking-wrap h2 { text-align: center; margin-bottom: 0.5rem; }
.booking-wrap > p { text-align: center; color: var(--text-muted); margin-bottom: 1.75rem; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 5rem 1.5rem 2.5rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}
.footer-about img { height: 56px; width: auto; margin-bottom: 1.1rem; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; flex-wrap: wrap; }
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: all var(--ease);
  border-bottom: none;
}
.social-btn:hover { background: var(--green); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.77rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; font-size: 0.9rem; }
.footer-col a { color: rgba(255,255,255,0.65); transition: color var(--ease); border-bottom: none; }
.footer-col a:hover { color: var(--green-light); }
.contact-list { list-style: none; }
.contact-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}
.contact-list i { color: var(--green); margin-top: 0.22rem; flex-shrink: 0; width: 14px; }
.footer-map { margin-top: 1.25rem; border-radius: var(--radius); overflow: hidden; }
.footer-map iframe { width: 100%; height: 180px; border: 0; display: block; opacity: 0.8; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.84rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); border-bottom: none; }
.footer-bottom a:hover { color: var(--green-light); }

/* ── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* ── Media queries ───────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: span 2; }
}

@media (max-width: 860px) {
  :root { --section-py: 3.5rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 0;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    border-radius: 0;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border) !important;
  }
  .nav-links li:last-child { margin: 19px 0; }
  .nav-links li:last-child a { border-bottom: none !important; }
  .nav-cta {
    text-align: center;
    border-radius: 50px !important;
    padding: 0.85rem 1.5rem !important;
    font-size: 1rem !important;
  }
  .nav-toggle { display: block; margin-left: auto; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; text-align: center; max-width: 320px; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-about { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .schedule-table, .schedule-table thead,
  .schedule-table tbody, .schedule-table th,
  .schedule-table td, .schedule-table tr { display: block; }
  .schedule-table thead { display: none; }
  .table-wrap { border-radius: 0; box-shadow: none; }
  .schedule-table tbody tr {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    padding: 1rem;
  }
  .schedule-table td { padding: 0.3rem 0; }
  .schedule-table td:first-child { font-size: 1.05rem; margin-bottom: 0.4rem; }

  .hours-grid { grid-template-columns: 1fr; }
  .voucher-card { padding: 2rem 1.25rem; }
  .booking-wrap { padding: 1.25rem 1rem; }
}

/* ── Announcement Banner ──────────────────────────────────── */
.announcement-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 3rem;
  text-align: center;
  position: relative;
}


.announcement-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.announcement-text {
  flex: 1;
}
.announcement-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  opacity: 0.8;
  transition: opacity var(--ease);
}
.announcement-close:hover { opacity: 1; }

/* ── Contact form ────────────────────────────────────────── */
.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}
.form-group .optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--ease);
  appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--green);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}
.contact-form .btn { align-self: flex-start; }
.contact-email-fallback { text-align: center; padding: 2rem 0; }
.contact-email-fallback .btn { margin: 1.25rem auto; display: inline-block; }
.contact-email-address { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.75rem; }

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form .btn { width: 100%; }
}
