/* ===========================
   Ginproever.be — Hoofdstijl
   =========================== */

:root {
  --kleur-donkergroen: #1a3a2a;
  --kleur-goud: #c8a84b;
  --kleur-gebroken-wit: #f7f4ef;
  --kleur-tekst: #2c2c2a;
  --kleur-lichtgrijs: #ece9e3;
  --kleur-donker: #111111;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--kleur-tekst);
  background: var(--kleur-gebroken-wit);
}

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

a { color: var(--kleur-goud); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
}

/* === Navigatie === */
.nav {
  background: var(--kleur-donkergroen);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--kleur-goud);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav__logo:hover { text-decoration: none; opacity: 0.9; }

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  color: var(--kleur-gebroken-wit);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--kleur-goud); text-decoration: none; }
.nav__links a.actief { color: var(--kleur-goud); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--kleur-gebroken-wit);
  border-radius: 2px;
  transition: 0.3s;
}

.nav__mobile {
  display: none;
  background: var(--kleur-donkergroen);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(200,168,75,0.2);
}
.nav__mobile.open { display: block; }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.nav__mobile a {
  color: var(--kleur-gebroken-wit);
  font-size: 1.05rem;
  display: block;
  padding: 0.25rem 0;
}
.nav__mobile a:hover { color: var(--kleur-goud); text-decoration: none; }

/* === Hero === */
.hero {
  background: var(--kleur-donkergroen);
  color: var(--kleur-gebroken-wit);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
}

.hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--kleur-gebroken-wit);
  margin-bottom: 1rem;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--kleur-goud);
  margin-bottom: 2rem;
  font-style: italic;
}

.btn {
  display: inline-block;
  background: var(--kleur-goud);
  color: var(--kleur-donkergroen);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: #d4b45e; text-decoration: none; transform: translateY(-1px); }

/* === Uitgelichte gin (Sisu) === */
.uitgelicht {
  background: var(--kleur-donker);
  color: var(--kleur-gebroken-wit);
  padding: 4rem 1.5rem;
  text-align: center;
}

.uitgelicht__inner {
  max-width: 720px;
  margin: 0 auto;
}

.badge-beste {
  display: inline-block;
  color: var(--kleur-goud);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--kleur-goud);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.uitgelicht h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--kleur-gebroken-wit);
  margin-bottom: 0.5rem;
}

.score-groot {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  color: var(--kleur-goud);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.score-groot span {
  font-size: 1.5rem;
  color: rgba(200,168,75,0.6);
}

.uitgelicht__quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(247,244,239,0.85);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
  border-left: 3px solid var(--kleur-goud);
  padding-left: 1.25rem;
  text-align: left;
}

/* === Gin-kaartengrid === */
.gin-grid {
  padding: 4rem 1.5rem;
  background: var(--kleur-lichtgrijs);
}

.gin-grid__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gin-grid h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 2.5rem;
  color: var(--kleur-donkergroen);
}

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

.kaart {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  text-decoration: none;
  color: var(--kleur-tekst);
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--kleur-goud);
}
.kaart:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); text-decoration: none; }

.kaart__badge {
  display: inline-block;
  background: var(--kleur-donkergroen);
  color: var(--kleur-goud);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  margin-bottom: 0.75rem;
}

.kaart h3 {
  font-size: 1.4rem;
  color: var(--kleur-donkergroen);
  margin-bottom: 0.4rem;
}

.kaart__score {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--kleur-goud);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.kaart p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* === Review pagina === */
.review-header {
  background: var(--kleur-donkergroen);
  color: var(--kleur-gebroken-wit);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.review-header__badge {
  display: inline-block;
  color: var(--kleur-goud);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--kleur-goud);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.review-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--kleur-gebroken-wit);
  margin-bottom: 0.5rem;
}

.review-header__meta {
  color: rgba(247,244,239,0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.review-score {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem;
  color: var(--kleur-goud);
  font-weight: 700;
  line-height: 1;
}
.review-score span { font-size: 2rem; opacity: 0.6; }

/* === Review inhoud === */
.review-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.review-content h2 {
  font-size: 1.5rem;
  color: var(--kleur-donkergroen);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--kleur-lichtgrijs);
}

.smaak-tabel {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.smaak-tabel th, .smaak-tabel td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--kleur-lichtgrijs);
  font-size: 0.95rem;
}

.smaak-tabel th {
  background: var(--kleur-donkergroen);
  color: var(--kleur-goud);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 160px;
}

.smaak-tabel tr:nth-child(even) td { background: var(--kleur-lichtgrijs); }

.franko-noot {
  background: var(--kleur-donkergroen);
  color: var(--kleur-gebroken-wit);
  border-radius: var(--radius);
  padding: 2rem 2rem 2rem 2.5rem;
  margin: 2rem 0;
  border-left: 4px solid var(--kleur-goud);
}

.franko-noot p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.franko-noot p:last-child { margin-bottom: 0; }

.serveer-blok {
  background: var(--kleur-lichtgrijs);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
}

.serveer-blok h2 { margin-top: 0; }

/* === Over mij === */
.over-hero {
  background: var(--kleur-donkergroen);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  color: var(--kleur-gebroken-wit);
}

.portret {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--kleur-goud);
  margin: 0 auto 1.5rem;
  background: var(--kleur-lichtgrijs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}

.over-hero h1 {
  font-size: 2.5rem;
  color: var(--kleur-gebroken-wit);
  margin-bottom: 0.4rem;
}

.over-hero__tagline {
  color: var(--kleur-goud);
  font-style: italic;
  font-size: 1.1rem;
}

.over-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.over-content h2 {
  font-size: 1.5rem;
  color: var(--kleur-donkergroen);
  margin: 2rem 0 1rem;
}

.over-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.sisu-highlight {
  background: var(--kleur-donker);
  color: var(--kleur-gebroken-wit);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.sisu-highlight h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--kleur-goud);
  margin-bottom: 1rem;
}

.sisu-highlight p { margin-bottom: 1.5rem; color: rgba(247,244,239,0.85); }

/* === Footer === */
.footer {
  background: var(--kleur-donkergroen);
  color: var(--kleur-gebroken-wit);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.88rem;
  opacity: 0.9;
}

.footer a { color: var(--kleur-goud); }

/* === Breadcrumb === */
.breadcrumb {
  background: var(--kleur-lichtgrijs);
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  color: #777;
}

.breadcrumb__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.breadcrumb a { color: var(--kleur-donkergroen); }
.breadcrumb a:hover { color: var(--kleur-goud); }

/* === Terug-link === */
.terug-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--kleur-donkergroen);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.terug-link:hover { color: var(--kleur-goud); text-decoration: none; }

/* === Top 3 === */
.top3 {
  background: var(--kleur-donkergroen);
  padding: 4rem 1.5rem;
}
.top3__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.top3 h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--kleur-goud);
  text-align: center;
  margin-bottom: 0.5rem;
}
.top3__intro {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.top3__tegels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.top3__tegel {
  display: block;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  text-align: center;
}
.top3__tegel:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}
.top3__rang {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}
.top3__tegel h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.top3__tegel--goud h3 { color: #f0d060; }
.top3__tegel--zilver h3 { color: #c8d0d8; }
.top3__tegel--brons h3 { color: #d4956a; }
.top3__score {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.top3__tegel--goud .top3__score { color: #f0d060; }
.top3__tegel--zilver .top3__score { color: #c8d0d8; }
.top3__tegel--brons .top3__score { color: #d4956a; }
.top3__tegel p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.6;
}
.top3__tegel-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.top3__extern {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.top3__extern:hover {
  color: rgba(255,255,255,0.85);
}

/* === Sponsored Links === */
.sponsored {
  background: var(--kleur-lichtgrijs);
  padding: 3rem 1.5rem;
  border-top: 1px solid #ddd9d2;
}
.sponsored__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sponsored h2 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 1.5rem;
  text-align: center;
}
.sponsored__lijst {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.sponsored__lijst li {
  background: #fff;
  border: 1px solid #e0dbd3;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sponsored__lijst li:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.sponsored__lijst a {
  color: var(--kleur-donkergroen);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.3rem;
}
.sponsored__lijst a:hover {
  color: var(--kleur-goud);
}
.sponsored__lijst span {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.4;
  display: block;
}
@media (max-width: 768px) {
  .sponsored__lijst { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sponsored__lijst { grid-template-columns: 1fr; }
}

/* === Leeftijdswaarschuwing banner === */
.leeftijd-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #f0f0f0;
  z-index: 9999;
  border-top: 3px solid var(--kleur-goud);
}
.leeftijd-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}
.leeftijd-banner__inner strong { color: var(--kleur-goud); }
.leeftijd-banner__inner button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  cursor: pointer;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.leeftijd-banner__inner button:hover { background: rgba(255,255,255,0.1); }
.footer__leeftijd {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
}
.footer__leeftijd em { font-style: normal; }

/* === Externe website link op reviewpagina === */
.extern-link {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--kleur-lichtgrijs);
}
.btn--outline {
  background: transparent;
  color: var(--kleur-donkergroen);
  border: 2px solid var(--kleur-donkergroen);
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn--outline:hover {
  background: var(--kleur-donkergroen);
  color: #fff;
}

/* === Over-mij Top 3 === */
.over-top3 {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.over-top3__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--kleur-lichtgrijs);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--kleur-tekst);
  transition: background 0.2s, transform 0.2s;
  border-left: 3px solid var(--kleur-goud);
}
.over-top3__item:hover {
  background: #e2ddd6;
  transform: translateX(4px);
}
.over-top3__rang {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}
.over-top3__info strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--kleur-donkergroen);
  display: block;
  margin-bottom: 0.2rem;
}
.over-top3__score {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--kleur-goud);
  display: block;
  margin-bottom: 0.4rem;
}
.over-top3__info p {
  font-size: 0.92rem;
  color: #555;
  margin: 0;
  line-height: 1.55;
}

/* === SEO-tekst === */
.seo-tekst {
  background: var(--kleur-gebroken-wit);
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--kleur-lichtgrijs);
}
.seo-tekst__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.seo-tekst__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.seo-tekst__header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  color: var(--kleur-donkergroen);
  margin-bottom: 0.75rem;
}
.seo-tekst__header p {
  font-size: 1.05rem;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.seo-tekst__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.seo-tekst__blok {
  background: #fff;
  border: 1px solid #e0dbd3;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--kleur-goud);
}
.seo-tekst__blok h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--kleur-donkergroen);
  margin-bottom: 0.75rem;
}
.seo-tekst__blok p {
  color: #555;
  font-size: 0.93rem;
  line-height: 1.75;
  margin: 0;
}
.seo-tekst__blok ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.seo-tekst__blok ul li {
  color: #555;
  font-size: 0.93rem;
  line-height: 1.75;
  padding: 0.3rem 0;
  border-bottom: 1px solid #f0ece6;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.seo-tekst__blok ul li:last-child { border-bottom: none; }
.seo-tekst__blok a {
  color: var(--kleur-donkergroen);
  text-decoration: none;
  border-bottom: 1px solid var(--kleur-goud);
}
.seo-tekst__blok a:hover { color: var(--kleur-goud); }
.seo-tekst__blok ul li::before {
  content: '→';
  color: var(--kleur-goud);
  flex-shrink: 0;
  font-weight: 700;
}
.seo-tekst__footer {
  background: var(--kleur-donkergroen);
  border-radius: var(--radius);
  padding: 2.5rem 2.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
  line-height: 1.8;
}
.seo-tekst__footer h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--kleur-goud);
  margin-bottom: 0.75rem;
}
.seo-tekst__footer strong { color: #fff; }
@media (max-width: 900px) {
  .seo-tekst__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .seo-tekst__grid { grid-template-columns: 1fr; }
  .seo-tekst__header h2 { font-size: 1.6rem; }
}

/* === Responsief === */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .kaarten { grid-template-columns: 1fr 1fr; }
  .top3__tegels { grid-template-columns: 1fr; }

  .review-score { font-size: 3.5rem; }

  .smaak-tabel th { width: 110px; }
}

@media (max-width: 480px) {
  .kaarten { grid-template-columns: 1fr; }
  .top3__tegels { grid-template-columns: 1fr; }

  .hero { padding: 3rem 1rem; }
  .uitgelicht { padding: 3rem 1rem; }

  .review-content { padding: 2rem 1rem; }
  .over-content { padding: 2rem 1rem; }

  .smaak-tabel th, .smaak-tabel td { padding: 0.5rem 0.75rem; font-size: 0.85rem; }
}
