/* Schmit Jongbloed Advies — rebuild trouw aan het originele Weebly "Paris"-thema */

:root {
  --groen: #45b33d;
  --groen-donker: #3ea037;
  --zwart: #222121;
  --kop: #3b3b3b;
  --tekst: #666666;
  --knop: #cccbc6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--tekst);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  color: var(--kop);
  font-family: 'Fjalla One', sans-serif;
  font-weight: normal;
  font-size: 36px;
  line-height: 1.2em;
  padding-bottom: 15px;
}
h3 {
  color: var(--kop);
  font-family: 'Fjalla One', sans-serif;
  font-weight: normal;
  font-size: 24px;
  line-height: 1.25em;
  padding-bottom: 10px;
}

p { padding-bottom: 20px; line-height: 1.5em; }

a { color: var(--groen-donker); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }

hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 40px 0;
}

/* ---------- navigatie (zwarte balk, groene accentrand) ---------- */

.paris-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(0, 0, 0, 0.92);
  border-top: 5px solid var(--groen);
}

.paris-header .binnen {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.paris-header .logo-tekst {
  color: #ffffff;
  font-family: 'Fjalla One', sans-serif;
  font-size: 22px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 0;
  white-space: nowrap;
}
.paris-header .logo-tekst:hover { text-decoration: none; color: #ffffff; }

nav.hoofdmenu ul { list-style: none; display: flex; }
nav.hoofdmenu > ul > li { position: relative; }
nav.hoofdmenu a {
  display: block;
  color: #ffffff;
  padding: 22px 20px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
}
nav.hoofdmenu a:hover, nav.hoofdmenu a.actief { background: var(--groen); text-decoration: none; }

/* submenu Publicaties */
nav.hoofdmenu li.heeft-sub > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  min-width: 220px;
}
nav.hoofdmenu li.heeft-sub:hover > ul,
nav.hoofdmenu li.heeft-sub:focus-within > ul { display: flex; }
nav.hoofdmenu li.heeft-sub ul a {
  background: rgba(0, 0, 0, 0.92);
  padding: 10px 16px;
  font-weight: normal;
  border-bottom: 1px solid #303030;
  border-left: 5px solid transparent;
}
nav.hoofdmenu li.heeft-sub ul a:hover { background: rgba(0, 0, 0, 0.92); border-left-color: var(--groen); }

.menu-knop {
  display: none;
  background: none;
  border: 1px solid #555;
  border-radius: 3px;
  color: #fff;
  font-size: 20px;
  padding: 6px 12px;
  margin: 10px 0;
  cursor: pointer;
}

@media (max-width: 760px) {
  .menu-knop { display: block; }
  nav.hoofdmenu { display: none; width: 100%; }
  nav.hoofdmenu.open { display: block; }
  nav.hoofdmenu ul { flex-direction: column; }
  nav.hoofdmenu a { padding: 12px 16px; }
  nav.hoofdmenu li.heeft-sub > ul { display: flex; position: static; }
  nav.hoofdmenu li.heeft-sub ul a { padding-left: 32px; }
}

/* ---------- header-sectie met logo/banner als achtergrond ---------- */

.header-sectie {
  width: 100%;
  background: #ffffff center center no-repeat;
  background-size: contain;
}
.header-sectie.logo-hero {
  background-image: url('/assets/img/logo.png');
  height: min(58vh, 500px);
  background-size: contain;
  margin: 30px 0 0;
}
.header-sectie.banner-reisgids {
  background-image: url('/assets/img/banner-reisgids.png');
  background-size: cover;
  height: min(40vh, 340px);
}
.header-sectie.banner-promotie {
  background-image: url('/assets/img/banner-promotie.png');
  background-size: cover;
  background-position: center 35%;
  height: min(58vh, 520px);
}

/* ---------- inhoud ---------- */

main { padding: 50px 0 60px; }

.centreer { text-align: center; }

.rij-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) { .rij-2 { grid-template-columns: 1fr; } }

.rij-foto-tekst {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}
.rij-foto-tekst.rij-zin { grid-template-columns: 400px 1fr; }
@media (max-width: 760px) { .rij-foto-tekst, .rij-foto-tekst.rij-zin { grid-template-columns: 1fr; } }

/* video-embed 16:9 */
.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-xl { max-width: 760px; margin: 0 auto; }

/* boekenblok op home */
.boek {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.boek > a {
  height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 30px;
}
.boek .omslagfoto {
  max-height: 340px;
  width: auto;
  display: block;
}
.boek h2 {
  font-size: 18px;
  text-align: center;
  padding-bottom: 12px;
}
.boek .knop-wrap {
  text-align: center;
  margin-top: auto;
  padding-bottom: 0;
}

/* knoppen in Weebly-stijl */
.knop {
  display: inline-block;
  padding: 12px 16px;
  background: var(--knop);
  color: #333333;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 14px;
  font-weight: 700;
  transition: all 400ms ease;
}
.knop:hover { background: var(--groen); color: #ffffff; text-decoration: none; }

/* citaten (recensies) — cursief met vette naam, zoals het origineel */
blockquote {
  margin: 0 0 1.5em;
  color: var(--tekst);
  font-style: italic;
  line-height: 1.5em;
}
blockquote footer { font-weight: bold; font-style: normal; padding-top: 2px; }
blockquote p { padding-bottom: 0; }

ul.opsomming { margin: 0 0 20px 1.4em; }
ul.opsomming li { margin-bottom: 4px; }

/* rode paginatitel (Zin in pensioneren) */
.titel-rood { color: #e8112d; }

/* groene knopvariant (Promotie) */
.knop-groen { background: var(--groen); color: #ffffff; }
.knop-groen:hover { background: var(--groen-donker); color: #ffffff; }

/* twee kolommen met verticale scheidslijn (Reisgids) */
@media (min-width: 761px) {
  .rij-2.met-divider > div + div {
    border-left: 1px solid #ddd;
    padding-left: 40px;
  }
}

/* publicatielijst */
ul.publicaties { margin: 0 0 20px 1.6em; }
ul.publicaties li { padding: 4px 0; }
ul.publicaties .bron { font-style: italic; }

/* omslagen op boekpagina's */
.omslag-schaduw { box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* portret */
.portret { width: 100%; max-width: 300px; }

.knmg-logo { max-width: 320px; margin: 10px 0 30px; display: block; }

/* contact */
.contact-gegevens h3 {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: var(--kop);
  padding-bottom: 2px;
}
.contact-gegevens p { padding-bottom: 16px; }

.kaart iframe { width: 100%; height: 300px; border: 0; margin: 10px 0 20px; }

/* ---------- footer (donker, zoals origineel) ---------- */

.footer-wrap {
  width: 100%;
  background: var(--zwart);
  color: #ffffff;
  font-size: 13px;
}
.footer-wrap .binnen {
  max-width: 960px;
  margin: 0 auto;
  padding: 35px 20px 25px;
}
.footer-wrap p { font-size: 13px; padding: 0 0 5px; line-height: 1.7em; }
.footer-wrap a { color: var(--groen); }
