/* ============================================
   Muziek Centraal VZW — Stylesheet
   Palette:
     Primary:    #2E2A5C (Indigo profond)
     Secondary:  #4A5A7A (Bleu-gris)
     Accent:     #E8934A (Orange chaud)
     Background: #F5F5F0 (Blanc cassé)
     Text:       #2B2B2B (Gris anthracite)
   ============================================ */

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

:root {
  --primary: #2E2A5C;
  --primary-light: #3d3770;
  --secondary: #4A5A7A;
  --secondary-light: #5a6a8a;
  --accent: #E8934A;
  --accent-hover: #d4803a;
  --bg: #F5F5F0;
  --bg-white: #FFFFFF;
  --text: #2B2B2B;
  --text-light: #555555;
  --text-muted: #777777;
  --border: #e0e0e0;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--accent);
}

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

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  color: var(--primary);
  line-height: 1.3;
}

h1 { font-size: 2.8rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
  color: var(--text);
}

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.section-subtitle {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232,147,74,0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-secondary:hover {
  background-color: #fff;
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background-color: #fff;
  color: var(--accent);
  border-color: #fff;
}
.btn-white:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 10px rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.navbar-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}
.navbar-brand:hover {
  color: var(--primary);
}

.navbar-brand svg {
  width: 36px;
  height: 36px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar-menu a {
  padding: 0.5rem 1rem;
  color: var(--text);
  font-weight: 500;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--primary);
  background-color: rgba(46,42,92,0.06);
}

.navbar-donate {
  background-color: var(--accent) !important;
  color: #fff !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  margin-left: 0.5rem;
}
.navbar-donate:hover {
  background-color: var(--accent-hover) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(232,147,74,0.35);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.navbar-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 3px;
  transition: all var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,147,74,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  color: #fff;
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.hero-text p,
.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

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

.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration svg,
.hero-svg {
  width: 100%;
  max-width: 450px;
}

/* ---------- Page Header ---------- */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 0.8rem;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Content Sections ---------- */
.content-section {
  padding: 5rem 0;
}

.content-section h2 {
  margin-bottom: 1rem;
}

.content-section h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.content-section p, .content-section li {
  color: var(--text);
  line-height: 1.8;
}

.content-section ul {
  padding-left: 1.5rem;
}

.content-section ul li {
  padding: 0.3rem 0;
  padding-left: 0.5rem;
  position: relative;
  list-style: disc;
}

.content-section ul li::marker {
  color: var(--accent);
}

/* ---------- Section Containers ---------- */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- About / Mission Sections ---------- */
.about-section,
.mission-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.about-section h2,
.mission-section h2 {
  margin-bottom: 1rem;
}

.about-section .section-text,
.mission-section .section-text {
  margin-bottom: 1.5rem;
}

/* ---------- Two Column Layout ---------- */
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ---------- Values Cards ---------- */
.values-section {
  padding: 5rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
}

.value-icon svg {
  width: 64px;
  height: 64px;
}

.value-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- Stats ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

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

.stat-number {
  display: block;
  color: var(--accent);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.stat-label {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

/* ---------- Activities Cards ---------- */
.activities-section {
  padding: 5rem 0;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.activity-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.activity-illustration {
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-illustration svg {
  width: 100%;
  height: 100%;
}

.activity-card h3 {
  padding: 1.2rem 1.5rem 0.3rem;
}

.activity-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- News Cards ---------- */
.news-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.news-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-date {
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.news-date svg {
  flex-shrink: 0;
}

.news-card h3 {
  padding: 0 1.5rem;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.news-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ---------- Donate CTA Section ---------- */
.donate-section {
  background: linear-gradient(135deg, var(--accent) 0%, #d4803a 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}

.donate-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.donate-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #d4803a 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ---------- Board Members ---------- */
.board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.board-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.board-card .avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.board-card .avatar span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.board-card h4 {
  margin-bottom: 0.15rem;
  font-size: 1.05rem;
}

.board-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46,42,92,0.1);
}

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

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

.contact-info-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-info-card h3 {
  margin-bottom: 1.2rem;
}

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

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: rgba(46,42,92,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .icon svg {
  width: 20px;
  height: 20px;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.15rem;
}

.contact-item span,
.contact-item a {
  color: var(--text-light);
  font-size: 0.95rem;
}

#map {
  height: 300px;
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

/* ---------- Donate ---------- */
.donate-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.donate-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}

.donate-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.donate-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.donate-card .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}

.bank-details {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  border-left: 4px solid var(--accent);
}

.bank-details h4 {
  margin-bottom: 0.8rem;
}

.bank-details p {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

/* ---------- Join / Membership ---------- */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.membership-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  transition: all var(--transition);
}

.membership-card:hover {
  border-color: var(--accent);
}

.membership-card.featured {
  border-color: var(--accent);
  position: relative;
}

.membership-card.featured::after {
  content: 'Populair';
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.membership-card h3 {
  margin-bottom: 0.5rem;
}

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

.membership-card ul {
  margin: 1.5rem 0;
}

.membership-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  list-style: none;
  color: var(--text-light);
}

.membership-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Legal / Privacy ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.legal-content ol {
  padding-left: 1.5rem;
}

.legal-content ol li {
  list-style: decimal;
  padding: 0.3rem 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

.footer p, .footer a, .footer li {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--accent);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
}

.footer-logo:hover {
  color: #fff;
}

.footer-brand p {
  line-height: 1.6;
}

.footer-nav a,
.footer-legal a,
.footer-contact a {
  display: block;
  padding: 0.25rem 0;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-illustration {
    display: none;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .navbar-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    gap: 0;
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .navbar-menu.active {
    transform: translateY(0);
  }

  .navbar-menu a {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .navbar-donate {
    margin-left: 0 !important;
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
  }

  .navbar-toggle {
    display: flex;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .activities-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .board-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .membership-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  section,
  .about-section,
  .mission-section,
  .values-section,
  .activities-section,
  .news-section,
  .content-section {
    padding: 3.5rem 0;
  }

  .page-header {
    padding: 6rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
  }

  .stat-number {
    font-size: 1.6rem;
  }
}
