:root {
  /* Design kleuren volgens huisstijl */
  --orange: #f55400;
  --green: #4b9c3d;
  --purple: #3100a2;
  --beige: #faedd1;
  --white: #FFFFFF;
  --dark: #2C2C2C;
  
  /* Algemene variabelen */
  --primary: var(--orange);
  --secondary: var(--green);
  --accent: var(--purple);
  --text: var(--dark);
  --text-light: #666666;
  --bg: var(--white);
  --bg-light: var(--beige);
}

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

/* Fonts: Poppins (local) */
@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins 300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

/* Logo styling - oranje blob met witte tekst */
.logo {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.9;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

h1 { 
  font-size: 3.5rem; 
  font-weight: 800;
}

h2 { 
  font-size: 2.5rem; 
  font-weight: 700;
}

h3 { 
  font-size: 1.75rem; 
  font-weight: 600;
}

h4 { 
  font-size: 1.25rem; 
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--orange);
}

/* Layout */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: var(--orange);
  text-decoration: none;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
  background: var(--beige);
  color: var(--text);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-tagline {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .orange {
  color: var(--orange);
}

.hero h1 .purple {
  color: var(--purple);
}

.hero-intro {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--text);
}

/* Testimonials */
.testimonials {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.testimonial {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 300px;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: var(--green);
  position: absolute;
  top: -10px;
  left: 10px;
  font-family: serif;
  line-height: 1;
}

.testimonial p {
  margin-top: 1rem;
  font-style: italic;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  text-decoration: none;
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.btn-secondary:hover {
  background: var(--purple);
  color: var(--white);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-beige {
  background: var(--beige);
}

.section-green {
  background: var(--green);
  color: var(--white);
}

.section-green h2,
.section-green h3 {
  color: var(--white);
}

.section-orange {
  background: var(--orange);
  color: var(--white);
}

.section-orange h2,
.section-orange h3 {
  color: var(--white);
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.card h3 {
  color: var(--orange);
  margin-bottom: 1rem;
}

/* Cultural Icons */
.cultural-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

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

.cultural-icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
  border: 3px solid var(--orange);
}

.cultural-icon span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* Sponsors */
.sponsors {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.sponsor-logo {
  opacity: 0.7;
  transition: opacity 0.3s ease;
  max-height: 60px;
}

.sponsor-logo:hover {
  opacity: 1;
}

/* Video Section */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* News Cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* News Carousel */
.news-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.news-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}

.news-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-nav {
  background: transparent;
  border: none;
  color: var(--purple);
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.carousel-nav:hover {
  color: var(--orange);
}

.carousel-prev {
  order: -1;
}

.carousel-next {
  order: 1;
}

.news-card {
  background: var(--beige);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 280px;
  flex-shrink: 0;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.news-card-image-wrapper {
  background: var(--white);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card-image-wrapper img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.news-card-content {
  padding: 1.5rem;
  background: var(--beige);
}

.news-card .category {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

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

.news-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
footer {
  background: var(--green);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

footer a {
  color: rgba(255,255,255,0.9);
}

footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  color: var(--white);
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  padding: 12px;
  border: 2px solid var(--beige);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--orange);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--orange), var(--green), var(--purple));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid var(--white);
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.timeline-content {
  width: calc(50% - 40px);
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  text-align: left;
}

.timeline-year {
  display: inline-block;
  background: var(--beige);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 1rem;
}

.timeline-content h3 {
  color: var(--purple);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.timeline-content p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 60px;
  }
  
  .timeline-marker {
    left: 20px;
  }
  
  .timeline-content {
    width: 100%;
    text-align: left !important;
    margin: 0 !important;
  }
}

/* Module Labels for Designer */
.module-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(49, 0, 162, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  z-index: 1000;
  pointer-events: none;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  max-width: 300px;
  line-height: 1.4;
}

.module-label::before {
  content: '📦 ';
}

section {
  position: relative;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    gap: 0;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  nav a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--beige);
  }

  nav a::after {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-intro {
    font-size: 1rem;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .testimonials {
    flex-direction: column;
  }

  .cultural-icons {
    gap: 1rem;
  }
}
