/* ============================================================
   Lotus Oosterse Artikelen – style.css
   Kleuren en sfeer gebaseerd op de oorspronkelijke website:
   crème achtergrond, terracotta knoppen, klassieke serif-koppen
   ============================================================ */

:root {
  --kleur-creme: #f7f4ee;        /* achtergrond */
  --kleur-wit: #ffffff;
  --kleur-donker: #191713;       /* tekstkleur */
  --kleur-grijs: #6d675e;        /* zachtere tekst */
  --kleur-terracotta: #d69d72;   /* knoppen */
  --kleur-terracotta-donker: #c2865a; /* knoppen hover */
  --kleur-goud: #b98d5f;         /* actieve menulink / accenten */
  --kleur-bruin: #4b3a2f;        /* logo-bruin */
  --kleur-zwart: #0d0c0b;        /* donkere contactsectie */
  --font-kop: "Playfair Display", Georgia, serif;
  --font-tekst: "Poppins", "Segoe UI", Arial, sans-serif;
}

/* ---------- Basis ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-tekst);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--kleur-donker);
  background-color: var(--kleur-creme);
}

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

h1, h2, h3 {
  font-family: var(--font-kop);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

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

a:hover,
a:focus {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--kleur-goud);
  outline-offset: 3px;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

section {
  padding: 4.5rem 0;
}

.sectie-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* ---------- Knoppen ---------- */

.knop {
  display: inline-block;
  background-color: var(--kleur-terracotta);
  color: var(--kleur-donker);
  font-family: var(--font-kop);
  font-size: 1.05rem;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.knop:hover,
.knop:focus {
  background-color: var(--kleur-terracotta-donker);
  text-decoration: none;
}

/* ---------- Header en menu ---------- */

.site-header {
  background-color: var(--kleur-creme);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-binnen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  font-family: var(--font-kop);
  color: var(--kleur-bruin);
  line-height: 1.1;
}

.logo a {
  color: var(--kleur-bruin);
  text-decoration: none;
}

.logo .logo-naam {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.logo .logo-sub {
  display: block;
  font-size: 0.8rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

.logo img {
  height: 64px;
  width: auto;
}

.hoofdmenu ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
}

.hoofdmenu a {
  font-family: var(--font-kop);
  font-size: 1.15rem;
  color: var(--kleur-donker);
}

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

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

.menu-knop {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.menu-knop span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--kleur-donker);
  margin: 6px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 0;
  background-color: #dcd9d2;
  background-image: linear-gradient(rgba(247, 244, 238, 0.35), rgba(247, 244, 238, 0.15)), url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-klein {
  min-height: 45vh;
}

/* Homepage: inhoud bovenin de foto, zodat de knop niet over de boot valt */
.hero-boven {
  align-items: flex-start;
  padding-top: clamp(4rem, 12vh, 7rem);
}

.hero-inhoud {
  max-width: 780px;
  padding: 0 1rem;
}

.hero-inhoud p {
  font-size: 1.05rem;
  margin: 1.5rem auto 2rem;
  max-width: 640px;
}

/* Andere hero-afbeeldingen per pagina */
.hero-overons     { background-image: linear-gradient(rgba(247, 244, 238, 0.35), rgba(247, 244, 238, 0.15)), url("../images/hero-overons.jpg"); }
.hero-assortiment { background-image: linear-gradient(rgba(247, 244, 238, 0.35), rgba(247, 244, 238, 0.15)), url("../images/hero-assortiment.jpg"); }

/* ---------- Webshopblokken ---------- */

.shop-blok {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.shop-blok:last-child {
  margin-bottom: 0;
}

.shop-blok.omgekeerd .shop-tekst {
  order: -1;
}

.shop-afbeelding img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.shop-afbeelding figcaption {
  font-size: 0.85rem;
  color: var(--kleur-grijs);
  margin-top: 0.5rem;
}

.shop-tekst .knop {
  margin-top: 0.5rem;
}

/* ---------- Louisa-blok ---------- */

.louisa {
  background-color: var(--kleur-wit);
}

.louisa-binnen {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: center;
}

.louisa-binnen img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ---------- Assortimentslijsten ---------- */

.assortiment-lijst {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.assortiment-lijst li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.assortiment-lijst li::before {
  content: "\2726";           /* klein sterretje als opsommingsteken */
  color: var(--kleur-terracotta);
  margin-right: 0.7rem;
}

/* ---------- Donkere contactsectie ---------- */

.contact-donker {
  background-color: var(--kleur-zwart);
  color: var(--kleur-creme);
}

.contact-donker h2 {
  color: var(--kleur-wit);
}

.contact-binnen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-gegevens p {
  margin-bottom: 0.6rem;
}

.contact-gegevens a {
  color: var(--kleur-terracotta);
}

.contact-gegevens .knop {
  margin-top: 1.2rem;
}

.contact-afbeelding img {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- Tekstpagina's (privacybeleid) ---------- */

.tekst-pagina {
  max-width: 760px;
  margin: 0 auto;
}

.tekst-pagina h2 {
  margin-top: 2.2rem;
}

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

.site-footer {
  background-color: var(--kleur-creme);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 3.5rem 0 2rem;
}

.footer-binnen {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-binnen h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.footer-binnen ul {
  list-style: none;
}

.footer-binnen li {
  margin-bottom: 0.4rem;
}

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

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

.footer-onder {
  text-align: center;
  color: var(--kleur-grijs);
  font-size: 0.85rem;
  margin-top: 2.5rem;
}

/* ---------- Mobiel ---------- */

@media (max-width: 820px) {
  .menu-knop {
    display: block;
  }

  .hoofdmenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--kleur-creme);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 0 1.5rem;
  }

  .hoofdmenu.open {
    display: block;
  }

  .hoofdmenu ul {
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
  }

  .menu-knop.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-knop.open span:nth-child(2) { opacity: 0; }
  .menu-knop.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .shop-blok,
  .louisa-binnen,
  .contact-binnen,
  .footer-binnen {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .shop-blok.omgekeerd .shop-tekst {
    order: 0;
  }

  .louisa-binnen img {
    max-width: 260px;
    margin: 0 auto;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 62vh;
  }

  /* Op smalle schermen het beeld naar rechts ankeren,
     zodat de grote lotusbloem in beeld blijft */
  .hero-boven {
    background-position: 76% center;
  }
}

/* ---------- Toegankelijkheid: minder beweging ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
