/* ============================================================
   Het Whisky Collectief Gouda — styles.css
   Palette: amber/goud, diepbruin, crème — whisky & Gouda
   ============================================================ */

:root {
  --amber: #d99a2b;
  --amber-deep: #b57a14;
  --gold: #f0b429;
  --gold-light: #f5c95a;
  --brown: #2b1d12;
  --brown-deep: #1d130a;
  --brown-soft: #4a3526;
  --cream: #faf5ec;
  --cream-2: #f3ead8;
  --ink: #2a2018;
  --muted: #6f5f4e;
  --line: #e5d9c3;
  --white: #fffdf8;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(45, 29, 10, 0.12);
  --shadow-sm: 0 4px 14px rgba(45, 29, 10, 0.08);
  --font-body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Georgia", "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

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

a { color: var(--amber-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; color: var(--brown); }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--brown);
  text-decoration: none;
}

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

.hero-visual {
  margin: 3rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .hero-visual { border-radius: var(--radius-sm); }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.main-nav a {
  color: var(--brown);
  font-weight: 600;
  font-size: 0.98rem;
}

.main-nav a:hover { color: var(--amber-deep); text-decoration: none; }

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--brown);
  color: var(--gold-light) !important;
  transition: background 0.2s ease;
}

.nav-cta:hover { background: var(--amber-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle-bar {
  width: 24px;
  height: 2.5px;
  background: var(--brown);
  border-radius: 2px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(240, 180, 41, 0.22), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(217, 154, 43, 0.18), transparent 55%),
    linear-gradient(160deg, #1d130a 0%, #2b1d12 55%, #3a281a 100%);
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

.hero-inner { max-width: 720px; }

.hero-kicker {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fffdf8;
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
}

.hero-text {
  margin: 0 0 2rem;
  font-size: 1.08rem;
  color: rgba(250, 245, 236, 0.88);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  color: rgba(250, 245, 236, 0.75);
}

.hero-usps li { display: flex; align-items: center; gap: 0.45rem; }
.hero-usps li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--amber-deep));
  color: var(--brown-deep);
}

.btn-primary:hover { filter: brightness(1.06); }

.btn-ghost {
  border-color: rgba(240, 180, 41, 0.6);
  color: var(--gold-light);
}

.btn-ghost:hover { background: rgba(240, 180, 41, 0.12); }

.btn-block { width: 100%; }

/* ---------- Sections ---------- */

.section { padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.section-alt { background: var(--cream-2); }
.section-dark {
  background:
    radial-gradient(800px 400px at 110% 0%, rgba(240, 180, 41, 0.15), transparent 60%),
    linear-gradient(150deg, #1d130a, #2b1d12);
  color: rgba(250, 245, 236, 0.9);
}

.section-dark h2, .section-dark h3 { color: #fffdf8; }
.section-dark a { color: var(--gold); }

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.section-copy h2 { margin: 0 0 1rem; font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
.section-copy p { margin: 0 0 1rem; }

.section-kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--amber-deep);
}

.section-dark .section-kicker { color: var(--gold); }

.section-head { max-width: 720px; margin-inline: auto; text-align: center; }
.section-head h2 { margin: 0 0 0.75rem; font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
.section-head p { color: var(--muted); }

.note {
  padding: 0.85rem 1.1rem;
  border-left: 3px solid var(--amber);
  background: rgba(217, 154, 43, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
}

.lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light) !important;
}

.signature { margin-top: 1.5rem; line-height: 1.5; }
.signature strong { color: #fffdf8; font-size: 1.05rem; }
.signature span { color: rgba(250, 245, 236, 0.65); font-size: 0.9rem; }

/* ---------- Facts ---------- */

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.fact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.fact-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-deep);
  line-height: 1.1;
}

.fact-label { font-size: 0.88rem; color: var(--muted); }

/* ---------- Media frame ---------- */

.media-frame { position: relative; }

.media-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Join form ---------- */

.join-form form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
}

.join-form h3 { margin: 0 0 0.35rem; font-size: 1.5rem; }
.form-note { margin: 0 0 1.4rem; color: var(--muted); font-size: 0.92rem; }

.form-row { margin-bottom: 1.1rem; }

.form-row label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brown);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.25);
}

.form-row input.invalid,
.form-row textarea.invalid {
  border-color: #c0392b;
}

.form-status {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  min-height: 1.2em;
}

.form-status.ok { color: #1e7d4f; font-weight: 600; }
.form-status.err { color: #c0392b; font-weight: 600; }

/* ---------- Agenda ---------- */

.agenda-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.25rem;
}

.agenda-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.agenda-date {
  display: grid;
  place-items: center;
  gap: 0.1rem;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, var(--gold), var(--amber-deep));
  color: var(--brown-deep);
  text-align: center;
}

.agenda-day {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}

.agenda-month {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.agenda-body h3 { margin: 0 0 0.3rem; font-size: 1.2rem; }

.agenda-meta {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-deep);
}

.agenda-body p:not(.agenda-meta) { margin: 0; color: var(--muted); font-size: 0.95rem; }

.agenda-more {
  margin: 1.6rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}

.btn-ghost-dark {
  border-color: var(--amber-deep);
  color: var(--amber-deep);
}

.btn-ghost-dark:hover { background: rgba(217, 154, 43, 0.1); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--brown-deep);
  color: rgba(250, 245, 236, 0.75);
  padding-block: 1.6rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p { margin: 0; font-size: 0.9rem; }
.footer-tag { color: var(--gold); font-family: var(--font-display); font-style: italic; }

/* ---------- Utilities ---------- */

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .media-left { order: 2; }
  .agenda-item { grid-template-columns: auto 1fr; }
  .agenda-cta { grid-column: 2; }
}


@media (max-width: 640px) {
  .agenda-item { grid-template-columns: 1fr; }
  .agenda-cta { grid-column: auto; }
  .agenda-cta .btn { width: 100%; text-align: center; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    padding-block: 0.5rem;
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    padding: 0.85rem 1.4rem;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child { border-bottom: none; }

  .nav-cta {
    border-radius: var(--radius-sm);
    margin: 0.5rem 1.4rem 0.75rem;
    text-align: center;
  }

  .nav-toggle { display: flex; }

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

  .hero-actions .btn { width: 100%; text-align: center; }
}
