/* ============================================
   MAAKATELIER PAGE
   ============================================ */

/* ---------- Hero band ---------- */
.atelier-hero {
  background: var(--mustard);
  color: var(--dark-brown);
  padding: 4rem 0 3.5rem;
}

.atelier-hero h1 {
  font-size: clamp(2.4rem, 6vw + 1rem, 4rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.atelier-subtitle {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.atelier-hero p {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.atelier-startdate {
  display: inline-block;
  background: var(--dark-brown);
  color: var(--cream);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  margin: 0.75rem 0 1.75rem;
}

.atelier-hero-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.atelier-hero-text {
  flex: 1;
}

.atelier-proefles {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  background: var(--cream);
  color: var(--clay);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.3;
  text-align: center;
  text-transform: lowercase;
  transform: rotate(-8deg);
  box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.15);
  clip-path: polygon(
    50% 6%,
    58% 15%,
    69% 11%,
    73% 22%,
    84% 23%,
    83% 34%,
    93% 40%,
    86% 50%,
    93% 60%,
    83% 66%,
    84% 77%,
    73% 78%,
    69% 89%,
    58% 85%,
    50% 94%,
    42% 85%,
    31% 89%,
    27% 78%,
    16% 77%,
    17% 66%,
    7% 60%,
    14% 50%,
    7% 40%,
    17% 34%,
    16% 23%,
    27% 22%,
    31% 11%,
    42% 15%
  );
}

@media (max-width: 600px) {
  .atelier-hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .atelier-hero-text {
    flex: 1;
    min-width: 0;
  }
  .atelier-proefles {
    width: 140px;
    height: 140px;
    font-size: 0.85rem;
    flex-shrink: 0;
    align-self: center;
    margin-top: 0;
  }
}

@media (max-width: 400px) {
  .atelier-proefles {
    width: 110px;
    height: 110px;
    font-size: 0.75rem;
  }
}

.btn-atelier {
  display: inline-block;
  background: var(--dark-brown);
  color: var(--cream);
  padding: 0.9rem 1.75rem;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.btn-atelier:hover {
  filter: brightness(0.88);
}

/* ---------- Scrolling technique strip ---------- */
.tech-strip {
  background: var(--dark-brown);
  color: var(--cream);
  overflow: hidden;
  padding: 0.75rem 0;
  white-space: nowrap;
}

.tech-track {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  animation: techscroll 22s linear infinite;
}

.tech-strip:hover .tech-track {
  animation-play-state: paused;
}

.tech-track .tag {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.tech-track .sep {
  color: var(--mustard);
  font-weight: 700;
  font-size: 1.1rem;
}

@keyframes techscroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---------- Practical info tiles ---------- */
.atelier-info-section {
  padding: 3.5rem 0;
  background: var(--cream);
}

.atelier-info-section h2 {
  text-align: center;
  color: var(--clay);
  font-size: 1.8rem;
  margin: 0 0 2rem;
}

.info-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.info-tile {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.info-tile .tile-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.info-tile .tile-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clay);
}

.info-tile .tile-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.2;
}

.info-tile .tile-note {
  font-size: 0.85rem;
  color: #8a6e60;
}

.tile-badge-gratis {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--mustard);
  color: var(--dark-brown);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .info-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .info-tiles {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

/* ---------- About (what is it) ---------- */
.atelier-about {
  background: var(--clay);
  color: var(--cream);
  padding: 4rem 0;
}

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

.atelier-about h2 {
  font-size: clamp(1.6rem, 3vw + 0.5rem, 2.2rem);
  margin: 0 0 1.25rem;
}

.atelier-about p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}

.atelier-about-img {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  max-height: 420px;
  display: block;
}

@media (max-width: 768px) {
  .atelier-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .atelier-about-img {
    max-height: 300px;
  }
}

/* ---------- Lessereeksen accordion ---------- */
.atelier-reeksen {
  background: var(--cream);
  padding: 4rem 0;
}

.atelier-reeksen h2 {
  color: var(--clay);
  font-size: clamp(1.6rem, 3vw + 0.5rem, 2.2rem);
  margin: 0 0 0.75rem;
}

.reeksen-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  max-width: 60ch;
  margin: 0 0 2.5rem;
}

.reeks-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reeks-card {
  background: var(--mustard);
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.reeks-card--clay {
  background: var(--clay);
}
.reeks-card--dark {
  background: var(--dark-brown);
}
.reeks-card--sage {
  background: var(--sage);
}
.reeks-card--lavender {
  background: var(--lavender);
}

.reeks-summary {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.reeks-summary::-webkit-details-marker {
  display: none;
}

.reeks-summary:hover {
  background: rgba(0, 0, 0, 0.08);
}

.reeks-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  opacity: 0.6;
  min-width: 2.5rem;
  line-height: 1;
}

.reeks-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.reeks-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
}

.reeks-tagline {
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.85;
}

.reeks-chev {
  font-size: 1.2rem;
  color: var(--cream);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

details[open] .reeks-chev {
  transform: rotate(180deg);
}

.reeks-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.reeks-card--dark .reeks-body p,
.reeks-card--dark .reeks-leeftijd-list li {
  color: var(--cream);
}

.reeks-card--dark .leeftijd-label {
  background: var(--clay);
  color: var(--cream);
}

.reeks-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 1rem 0 0.75rem;
}

.reeks-leeftijd-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
}

@media (max-width: 560px) {
  .reeks-leeftijd-list {
    flex-direction: column;
  }
}

.reeks-leeftijd-list li {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.reeks-les-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 0.75rem;
  margin-top: 0.25rem;
}

.leeftijd-label {
  display: inline-block;
  align-self: flex-start;
  background: var(--clay);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-reeks {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--dark-brown);
  color: var(--cream);
  padding: 0.7rem 1.4rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.btn-reeks:hover {
  filter: brightness(0.88);
}

.reeksen-cta-hint {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.reeksen-cta-hint a {
  color: var(--clay);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--mustard);
}

.reeksen-cta-hint a:hover {
  color: var(--dark-brown);
}

.reeksen-cta-hint .btn-atelier {
  color: var(--cream);
  border-bottom: none;
}

.reeksen-cta-hint .btn-atelier:hover {
  color: var(--cream);
}

@media (max-width: 480px) {
  .reeks-summary {
    gap: 0.75rem;
    padding: 1rem 1.1rem;
  }
  .reeks-num {
    display: none;
  }
  .reeks-body {
    padding: 0 1.1rem 1.25rem;
  }
}

/* ---------- Schedule ---------- */
.atelier-schedule {
  padding: 3.5rem 0;
  background: var(--clay);
}

.atelier-schedule h2 {
  color: var(--cream);
  font-size: 1.8rem;
  margin: 0 0 2rem;
  text-align: center;
}

.agenda-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.agenda-item {
  background: var(--cream);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.agenda-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.agenda-date-icon {
  font-size: 1.1rem;
  opacity: 0.5;
}

.agenda-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clay);
  line-height: 1;
}

.agenda-day-month {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.agenda-day-month .agenda-weekday {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.2;
}

.agenda-day-month .agenda-month {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dark-brown);
  opacity: 0.55;
  text-transform: lowercase;
  line-height: 1.2;
}

.agenda-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.agenda-title {
  font-weight: 700;
  color: var(--dark-brown);
  font-size: 1.1rem;
}

.agenda-time {
  color: var(--dark-brown);
  opacity: 0.6;
  font-size: 0.88rem;
}

.agenda-btn {
  display: inline-block;
  background: var(--dark-brown);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1.1rem;
  border-radius: 0.6rem;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}

.agenda-btn:hover {
  background: var(--clay);
}

@media (max-width: 520px) {
  .agenda-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- About Louise ---------- */
/* ---------- Aanmelden ---------- */
.atelier-aanmelden {
  background: var(--cream);
  padding: 4rem 0;
}

.atelier-aanmelden h2 {
  font-size: 1.8rem;
  color: var(--dark-brown);
  margin: 0 0 0.75rem;
}

.aanmelden-intro {
  color: var(--dark-brown);
  max-width: 600px;
  margin: 0 0 2rem;
}

.tally-wrapper {
  border-radius: 1rem;
  overflow: hidden;
}

/* ---------- Over Louise ---------- */
.atelier-louise {
  background: var(--cream);
  padding: 4rem 0;
}

.atelier-louise-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
}

.louise-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.atelier-louise h2 {
  color: var(--clay);
  font-size: 1.8rem;
  margin: 0 0 1rem;
}

.atelier-louise p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0 0 1rem;
}

.atelier-louise p a {
  color: var(--clay);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--mustard);
  text-decoration-thickness: 2px;
}

.atelier-louise p a:hover {
  color: var(--dark-brown);
  text-decoration-color: var(--clay);
}

@media (max-width: 600px) {
  .atelier-louise-grid {
    grid-template-columns: 1fr;
  }
  .louise-photo {
    width: 130px;
    height: 130px;
  }
}

/* ---------- Registration band ---------- */
.atelier-register {
  background: var(--mustard);
  color: var(--dark-brown);
  padding: 4rem 0;
  text-align: center;
}

.atelier-register h2 {
  font-size: clamp(1.6rem, 3vw + 0.5rem, 2.2rem);
  margin: 0 0 1rem;
}

.atelier-register p {
  font-size: 1.1rem;
  margin: 0 0 2rem;
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.atelier-register .luma-wrap {
  margin-top: 1.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.atelier-register .luma-wrap iframe {
  width: 100%;
  height: 450px;
}

/* ---------- Footer (override voor project pages) ---------- */
