/* ===== Kleurenpalet Porsche 991 Speedster ===== */
:root {
  --deep-teal: #025e73;
  --midnight: #011f26;
  --sage: #a5a692;
  --khaki: #bfb78f;
  --amber: #f2a71b;
  --amber-dark: #d9950f;
  --white: #fafaf8;
  --font-family: "Aptos", "Nunito", system-ui, -apple-system, sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--white);
  color: var(--midnight);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition);
}

.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
  transition: var(--transition);
}

.nav.scrolled .nav-logo {
  color: var(--deep-teal);
}

.nav.scrolled .nav-logo img {
  height: 40px;
  width: 40px;
}

.footer-logo-img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.whatsapp-widget {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  background: #25d366;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.whatsapp-widget:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-widget svg {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  transition: var(--transition);
}

.nav.scrolled .nav-links a {
  color: var(--midnight);
}

.nav-links a:hover {
  color: var(--amber);
}

.nav.scrolled .nav-links a:hover {
  color: var(--amber);
}

.nav-cta {
  background: var(--amber) !important;
  color: var(--midnight) !important;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--amber-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 167, 27, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

.nav.scrolled .nav-toggle span {
  background: var(--midnight);
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--midnight);
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 167, 27, 0.4);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--deep-teal);
  color: var(--deep-teal);
  padding: 0.75rem 1.625rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--deep-teal);
  color: #fff;
}

.btn-white {
  border-color: #fff;
  color: #fff;
}

.btn-white:hover {
  background: #fff;
  color: var(--midnight);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--deep-teal) 0%,
    var(--midnight) 100%
  );
  position: relative;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.hero-content {
  max-width: 800px;
}

.hero-emoji {
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.hero-logo {
  height: 200px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

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

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}

.mouse::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== Page Hero (smaller) ===== */
.page-hero {
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(
    135deg,
    var(--deep-teal) 0%,
    var(--midnight) 100%
  );
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
  background: var(--white);
}

.section.bg-sage {
  background: rgba(165, 166, 146, 0.15);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--sage);
  margin-bottom: 3rem;
}

.section p {
  color: #4a5568;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--deep-teal);
}

/* ===== Grid ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ===== Image Cards ===== */
.image-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, var(--sage) 0%, var(--khaki) 100%);
}

.image-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(2, 94, 115, 0.25);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card.aspect-4-3 {
  aspect-ratio: 4/3;
}

.image-card.aspect-square {
  aspect-ratio: 1/1;
}

.grid-2 .image-card.aspect-square {
  max-width: 400px;
  margin: 0 auto;
}

/* ===== Quote ===== */
.quote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--amber);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--midnight);
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

.card {
  background: #fff;
  border: 1px solid rgba(191, 183, 143, 0.3);
  border-left: 4px solid var(--khaki);
  border-radius: 1rem;
  padding: 2rem;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2, 94, 115, 0.15);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(242, 167, 27, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--amber);
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 1rem;
}

.card p {
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.card-link {
  color: var(--deep-teal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.card-link:hover {
  color: var(--amber);
}

/* ===== Quote Section ===== */
.section-quote {
  padding: 5rem 0;
  background: var(--midnight);
  text-align: center;
}

.quote-icon {
  color: var(--amber);
  opacity: 0.5;
  margin-bottom: 2rem;
}

.section-quote blockquote {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.section-quote cite {
  color: var(--amber);
  font-size: 1.125rem;
  font-weight: 500;
  font-style: normal;
}

/* ===== CTA Section ===== */
.section-cta {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--deep-teal) 0%,
    var(--midnight) 100%
  );
}

.section-cta h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.section-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Footer ===== */
.footer {
  background: var(--midnight);
  color: #fff;
  padding: 4rem 0 2rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-col h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col h4 {
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col p {
  color: var(--sage);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a,
.footer-col ul li {
  color: var(--sage);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--sage);
  font-size: 0.875rem;
}

/* ===== Content Sections ===== */
.content-section {
  padding: 4rem 0;
  background: var(--white);
}

.content-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 1rem;
}

.content-section p {
  color: #4a5568;
  margin-bottom: 1rem;
}

.highlight-box {
  padding: 1.5rem;
  border-left: 4px solid var(--amber);
  background: rgba(165, 166, 146, 0.1);
  border-radius: 0 0.5rem 0.5rem 0;
}

.highlight-box p {
  color: #4a5568;
}

/* ===== Timeline ===== */
.timeline {
  max-width: 900px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.timeline-phase {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(191, 183, 143, 0.2);
  transition: var(--transition);
}

.timeline-phase:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(2, 94, 115, 0.15);
}

.timeline-phase-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(191, 183, 143, 0.2);
}

.timeline-phase-number {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--amber);
  color: var(--midnight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.timeline-phase-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin: 0;
}

.timeline-phase-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline-phase-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #4a5568;
  line-height: 1.5;
}

.timeline-phase-content ul li:last-child {
  margin-bottom: 0;
}

.timeline-phase-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.timeline-phase-image {
  margin-bottom: 1.25rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.timeline-phase-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* ===== Price Section ===== */
.price-section {
  padding: 4rem 0;
  background: var(--deep-teal);
  text-align: center;
}

.price-section h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.25rem;
}

.price-note {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

/* ===== Benefits List ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  color: var(--midnight);
}

.benefit-check {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-check svg {
  width: 1rem;
  height: 1rem;
  color: #fff;
}

/* ===== Workshop Cards ===== */
.workshop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .workshop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.workshop-card {
  background: #fff;
  border: 1px solid rgba(191, 183, 143, 0.3);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.workshop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(2, 94, 115, 0.15);
  border-color: var(--amber);
}

.workshop-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 1rem;
}

.workshop-card p {
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.workshop-card-image {
  position: relative;
  margin: -2rem -2rem 1.5rem -2rem;
  overflow: hidden;
}

.workshop-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.workshop-card:hover .workshop-card-image img {
  transform: scale(1.08);
}

.workshop-features {
  list-style: none;
}

.workshop-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.workshop-features li svg {
  width: 1rem;
  height: 1rem;
  color: var(--amber);
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: #4a5568;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(242, 167, 27, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}

.contact-item h3 {
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  color: #4a5568;
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--deep-teal);
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--amber);
}

/* ===== Form ===== */
.contact-form {
  background: #fff;
  border: 1px solid rgba(191, 183, 143, 0.3);
  border-radius: 1rem;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--midnight);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(191, 183, 143, 0.3);
  border-radius: 0.5rem;
  font-family: var(--font-family);
  font-size: 1rem;
  transition: var(--transition);
  background: #fff;
  color: var(--midnight);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--deep-teal);
  box-shadow: 0 0 0 3px rgba(2, 94, 115, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* ===== Mobile Menu ===== */
@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--midnight);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.5rem;
    color: #fff !important;
  }

  .nav-links a:hover {
    color: var(--amber) !important;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .order-1-mobile {
    order: 1;
  }
  .order-2-mobile {
    order: 2;
  }
}

/* ===== Books Section ===== */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.book-card {
  text-align: center;
}

.book-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.5rem;
}

.book-card p {
  color: #4a5568;
  font-size: 0.9rem;
}

.book-cover {
  position: relative;
  aspect-ratio: 3/4;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f5f5f0;
}

/* ===== Opleiding kleurstelling (lichtgeel) ===== */
.page-hero--opleiding {
  background: linear-gradient(135deg, #b8960c 0%, #8b6914 100%);
}

.page-hero--opleiding h1,
.page-hero--opleiding p {
  color: #fff;
}

body.page-opleiding .section-title {
  color: #8b6914;
}

body.page-opleiding .content-section h2 {
  color: #8b6914;
}

body.page-opleiding .highlight-box {
  border-left-color: var(--amber);
  background: rgba(242, 167, 27, 0.08);
}

body.page-opleiding .highlight-box h2 {
  color: #8b6914 !important;
}

/* ===== Workshop kleurstelling (lichtblauw) ===== */
.page-hero--workshop {
  background: linear-gradient(135deg, #2e86ab 0%, #1b4965 100%);
}

.page-hero--workshop h1,
.page-hero--workshop p {
  color: #fff;
}

body.page-workshop .section-title {
  color: #1b4965;
}

/* ===== Kaarten op homepage met kleuraccent ===== */
.card--opleiding {
  border-left-color: #d4a017;
  background: rgba(242, 167, 27, 0.06);
}

.card--workshop {
  border-left-color: #2e86ab;
  background: rgba(46, 134, 171, 0.06);
}

/* ===== Scrollende banner ===== */
.banner-slider {
  background: rgba(2, 94, 115, 0.05);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

.banner-slider-track {
  display: flex;
  animation: slide 25s linear infinite;
  width: max-content;
}

.banner-slider-item {
  flex-shrink: 0;
  padding: 0 3rem;
  font-size: 1.125rem;
  color: var(--deep-teal);
  font-weight: 500;
  font-style: italic;
  white-space: nowrap;
  opacity: 0.8;
}

.banner-slider-item::after {
  content: "•";
  margin-left: 3rem;
  color: var(--amber);
}

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

/* ===== Workshop detail cards ===== */
.workshop-detail-card {
  background: #fff;
  border: 1px solid rgba(191, 183, 143, 0.3);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.workshop-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2, 94, 115, 0.15);
}

.workshop-detail-card-image {
  overflow: hidden;
}

.workshop-detail-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.workshop-detail-card:hover .workshop-detail-card-image img {
  transform: scale(1.05);
}

.workshop-detail-card-body {
  padding: 1.5rem 2rem 2rem;
}

.workshop-detail-card-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.75rem;
}

.workshop-detail-card-body > p {
  color: #4a5568;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.workshop-detail-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.workshop-detail-card-body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #4a5568;
  line-height: 1.5;
}

.workshop-detail-card-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.workshop-detail-card .workshop-price {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-teal);
}

.workshop-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .workshop-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workshop-detail-card-image img {
    height: 300px;
  }
}

/* ===== Compactere benefits grid ===== */
.benefits-grid--compact .benefit-item {
  padding: 0.5rem 0.75rem;
}

.benefits-grid--compact {
  gap: 0.5rem;
}
