/* ===== KLEUREN ===== */
:root {
  --bordeaux: #6d1a2a;
  --bordeaux-dark: #4e1020;
  --bordeaux-light: #8b2239;
  --roos: #e8a0b0;
  --roos-licht: #f5d0da;
  --roos-zacht: #fdf0f3;
  --roos-medium: #d4607e;
  --tekst: #2d1a20;
  --wit: #ffffff;
  --grijs-licht: #f8f2f4;
}

/* ===== BASIS ===== */
body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--grijs-licht);
  color: var(--tekst);
}

/* ===== NAVIGATIE ===== */
.amber-navbar {
  background-color: var(--bordeaux) !important;
  box-shadow: 0 3px 10px rgba(109, 26, 42, 0.4);
}

.amber-brand {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem !important;
  color: var(--roos-licht) !important;
  letter-spacing: 0.5px;
}

.amber-navbar .nav-link {
  color: var(--roos-licht) !important;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

.amber-navbar .nav-link:hover,
.amber-navbar .nav-link.active {
  background-color: var(--roos-medium);
  color: var(--wit) !important;
}

.navbar-toggler {
  border-color: var(--roos) !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ===== HERO SECTIE ===== */
.amber-hero {
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 50%, var(--roos-medium) 100%);
  color: var(--wit);
  position: relative;
  overflow: hidden;
}

.amber-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(232,160,176,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-deco {
  font-size: 4rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.amber-title {
  font-family: 'Pacifico', cursive;
  color: var(--roos-licht);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.amber-hero .amber-title {
  color: var(--roos-licht);
}

.amber-hero .lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
}

/* ===== PAGE HEADER ===== */
.amber-page-header {
  background: linear-gradient(135deg, var(--bordeaux-dark) 0%, var(--bordeaux) 100%);
  color: var(--wit);
}

.amber-page-header .amber-title {
  color: var(--roos-licht);
}

.amber-page-header .lead {
  color: rgba(255,255,255,0.85);
}

/* ===== KNOPPEN ===== */
.amber-btn-primary {
  background-color: var(--roos-medium);
  border-color: var(--roos-medium);
  color: var(--wit);
  font-weight: 700;
  border-radius: 25px;
  padding: 0.6rem 1.8rem;
  transition: all 0.25s;
}

.amber-btn-primary:hover {
  background-color: var(--roos);
  border-color: var(--roos);
  color: var(--bordeaux-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 96, 126, 0.4);
}

.amber-btn-outline {
  background-color: transparent;
  border: 2px solid var(--roos-licht);
  color: var(--roos-licht);
  font-weight: 700;
  border-radius: 25px;
  padding: 0.6rem 1.8rem;
  transition: all 0.25s;
}

.amber-btn-outline:hover {
  background-color: var(--roos-licht);
  color: var(--bordeaux-dark);
  transform: translateY(-2px);
}

.amber-btn-outline-donker {
  background-color: transparent;
  border: 2px solid var(--bordeaux);
  color: var(--bordeaux);
  font-weight: 700;
  border-radius: 25px;
  padding: 0.6rem 1.8rem;
  transition: all 0.25s;
}

.amber-btn-outline-donker:hover {
  background-color: var(--bordeaux);
  color: var(--roos-licht);
  transform: translateY(-2px);
}

.amber-btn-download {
  background-color: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--roos-licht);
  font-weight: 700;
  border-radius: 20px;
  transition: all 0.25s;
  display: inline-block;
}

.amber-btn-download:hover {
  background-color: var(--bordeaux-dark);
  border-color: var(--bordeaux-dark);
  color: var(--roos-licht);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(109, 26, 42, 0.35);
}

/* ===== SECTIETITELS ===== */
.amber-section-title {
  font-family: 'Pacifico', cursive;
  color: var(--bordeaux);
  position: relative;
  display: inline-block;
}

.amber-section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--roos-medium);
  border-radius: 2px;
}

/* ===== CATEGORIE KAARTEN ===== */
.amber-cat-card {
  background: var(--wit);
  border: 2px solid var(--roos-licht);
  border-radius: 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.amber-cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--bordeaux), var(--roos-medium));
}

.amber-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(109, 26, 42, 0.2);
  border-color: var(--roos-medium);
}

.cat-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.cat-title {
  font-family: 'Pacifico', cursive;
  color: var(--bordeaux);
  font-size: 1.3rem;
}

.cat-desc {
  color: #666;
  font-size: 0.95rem;
}

.amber-badge {
  background-color: var(--roos-licht);
  color: var(--bordeaux-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ===== BOEK KAARTEN ===== */
.amber-book-card {
  background: var(--wit);
  border-radius: 15px;
  border: 1px solid var(--roos-licht);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.amber-book-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(109, 26, 42, 0.18);
}

.book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--bordeaux), var(--bordeaux-light));
  border-radius: 15px 0 0 15px;
}

.poem-spine {
  background: linear-gradient(180deg, var(--roos-medium), var(--roos));
}

.book-title {
  font-family: 'Pacifico', cursive;
  color: var(--bordeaux);
  font-size: 1.1rem;
  margin-left: 0.5rem;
  line-height: 1.3;
}

.amber-book-card-lg .book-title {
  font-size: 1.3rem;
}

.book-teaser {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-left: 0.5rem;
}

.amber-poem-card {
  border-color: var(--roos);
  background: linear-gradient(135deg, var(--wit) 0%, var(--roos-zacht) 100%);
}

/* ===== CATEGORIE BANNER ===== */
.amber-cat-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(90deg, var(--roos-licht), var(--roos-zacht));
  border-left: 5px solid var(--bordeaux);
  border-radius: 0 12px 12px 0;
}

.amber-cat-banner h2 {
  font-family: 'Pacifico', cursive;
  color: var(--bordeaux);
  margin: 0;
  font-size: 1.5rem;
}

.amber-cat-more {
  color: var(--bordeaux);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.amber-cat-more:hover {
  color: var(--roos-medium);
  text-decoration: underline;
}

.amber-cat-heading {
  font-family: 'Pacifico', cursive;
  color: var(--bordeaux);
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--roos-licht);
}

/* ===== WAVE SECTIE ===== */
.amber-wave-section {
  background-color: var(--roos-zacht);
}

/* ===== FOOTER ===== */
.amber-footer {
  background: var(--bordeaux-dark);
  color: var(--roos-licht);
  font-size: 0.9rem;
}

.amber-footer strong {
  color: var(--roos);
}

/* ===== LENTE BLOEMEN ===== */
@keyframes bloem-wiegen {
  0%, 100% { transform: rotate(var(--rotatie)) translateY(0); }
  50%       { transform: rotate(calc(var(--rotatie) * -0.6)) translateY(-7px); }
}

.pagina-wrapper {
  position: relative;
  overflow-x: hidden;
}

.bloemen-links,
.bloemen-rechts {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  pointer-events: none;
  z-index: 0;
  padding: 80px 0 60px;
}

.bloemen-links  { left:  16px; }
.bloemen-rechts { right: 16px; }

.bloem {
  width: 52px;
  height: auto;
  display: block;
  animation: bloem-wiegen 3.5s ease-in-out infinite;
  animation-delay: var(--vertraging);
  transform-origin: center bottom;
  filter: drop-shadow(1px 3px 4px rgba(80,40,20,0.18));
}

@media (min-width: 1200px) {
  .bloemen-links,
  .bloemen-rechts { display: flex; }
}

@media (min-width: 1500px) {
  .bloemen-links,
  .bloemen-rechts { width: 72px; }
  .bloem { width: 64px; }
}

/* ===== RESPONSIVE AANPASSINGEN ===== */
@media (max-width: 576px) {
  .amber-brand {
    font-size: 1.2rem !important;
  }

  .hero-deco {
    font-size: 3rem;
  }

  .amber-title {
    font-size: 2rem;
  }

  .amber-cat-card {
    margin-bottom: 0.5rem;
  }
}
