/* --------------------------------------------------
   Luminate Weld - Vintage Retro CSS Theme
   Brand: Professioneel, internationaal, retro-vintage
   -------------------------------------------------- */

/* 1. FONT IMPORTS (Vintage/Retro-inspired) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&family=Quicksand:wght@700&family=DM+Serif+Display&display=swap');

:root {
  /* Brand Colors */
  --primary: #185C6E;
  --secondary: #F1F7FA;
  --accent: #9C7A43;
  --retro-orange: #EBA94C;
  --retro-red: #C1440E;
  --retro-blue: #3B7EA1;
  --retro-green: #A3B18A;
  --retro-bg: #F8F5E9;
  --retro-brown: #7C5E3C;
  --retro-cream: #FFF8E1;
  --text-dark: #2C2C2C;
  --text-light: #fff;
  --shadow: 0 4px 24px 0 rgba(60, 40, 20, 0.08);
  --border-radius: 14px;
  --border-radius-sm: 8px;
  --pattern-url: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="40" height="40" fill="%23F8F5E9"/><circle cx="20" cy="20" r="2" fill="%239C7A43"/><circle cx="0" cy="0" r="2" fill="%23EBA94C"/><circle cx="40" cy="40" r="2" fill="%23A3B18A"/></svg>');
  /* Typography */
  --font-display: 'DM Serif Display', 'Montserrat', serif;
  --font-body: 'Roboto', 'Quicksand', Arial, sans-serif;
  --font-accent: 'Quicksand', 'Montserrat', sans-serif;
}

html {
  box-sizing: border-box;
  font-size: 18px;
  background: var(--retro-bg);
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--pattern-url), var(--retro-bg);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

/* ----------------------
   HEADER & NAVIGATION
----------------------- */
header {
  background: var(--retro-cream);
  border-bottom: 4px solid var(--accent);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
  height: 72px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.05rem;
}
header nav img {
  height: 48px;
  margin-right: 18px;
}
header nav a {
  color: var(--primary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--border-radius-sm);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  background: var(--accent);
  color: var(--text-light);
  box-shadow: 0 2px 8px 0 rgba(156, 122, 67, 0.12);
}
header nav .cta-primary {
  background: var(--primary);
  color: var(--text-light);
  border-radius: var(--border-radius);
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px 0 rgba(24,92,110,0.10);
  margin-left: 12px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
header nav .cta-primary:hover,
header nav .cta-primary:focus {
  background: var(--retro-orange);
  color: var(--primary);
  box-shadow: 0 4px 16px 0 rgba(235,169,76,0.18);
}

/* Hamburger Button */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--text-light);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 12px;
  z-index: 120;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(156, 122, 67, 0.10);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active {
  background: var(--retro-red);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-cream);
  box-shadow: 0 8px 32px 0 rgba(24,92,110,0.18);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--retro-red);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 32px;
  padding-left: 32px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-accent);
  font-size: 1.3rem;
  text-decoration: none;
  padding: 10px 0;
  border-radius: var(--border-radius-sm);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: var(--text-light);
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ----------------------
   LAYOUT CONTAINERS
----------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 0 auto;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-cream);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
}

/* Cards & Grids */
.card-container, .card-grid, .feature-grid, .gallery-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .course-card {
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  min-width: 260px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .course-card:hover {
  box-shadow: 0 8px 32px 0 rgba(156, 122, 67, 0.16);
  transform: translateY(-4px) scale(1.02);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  background: var(--retro-bg);
  border-radius: var(--border-radius-sm);
  padding: 18px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(156, 122, 67, 0.06);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--secondary);
  border-left: 6px solid var(--accent);
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(24,92,110,0.08);
  font-family: var(--font-accent);
  color: var(--text-dark);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  border-color: var(--retro-orange);
  box-shadow: 0 6px 24px 0 rgba(235,169,76,0.13);
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 4px 0;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--retro-brown);
  font-weight: 700;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--retro-bg);
  border-radius: var(--border-radius-sm);
  padding: 18px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(156, 122, 67, 0.06);
}

/* ----------------------
   TYPOGRAPHY
----------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  margin: 0 0 12px 0;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  font-weight: 700;
  text-shadow: 1px 2px 0 var(--accent), 0 2px 12px rgba(24,92,110,0.08);
  margin-bottom: 18px;
}
h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 14px;
  border-bottom: 2px dashed var(--accent);
  padding-bottom: 6px;
}
h3 {
  font-size: 1.2rem;
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--retro-brown);
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.05rem;
  font-family: var(--font-accent);
  color: var(--retro-brown);
}
p, ul, ol, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
strong {
  color: var(--retro-red);
  font-weight: 700;
}

/* ----------------------
   BUTTONS & CTA
----------------------- */
.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px 0 rgba(156, 122, 67, 0.10);
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 12px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--primary);
  color: var(--retro-orange);
  box-shadow: 0 6px 24px 0 rgba(24,92,110,0.13);
  transform: translateY(-2px) scale(1.03);
}

button, .button {
  font-family: var(--font-accent);
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
  border: none;
  padding: 10px 22px;
  background: var(--retro-orange);
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
button:hover, .button:hover {
  background: var(--retro-red);
  color: var(--text-light);
}

/* ----------------------
   FOOTER
----------------------- */
footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 40px 0 20px 0;
  border-top: 6px solid var(--accent);
  font-family: var(--font-body);
}
footer .container {
  padding: 0 18px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  gap: 24px;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--retro-orange);
  text-decoration: none;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s;
}
footer nav a:hover {
  color: var(--accent);
}
footer .social-links {
  display: flex;
  gap: 18px;
  margin-bottom: 8px;
}
footer .social-links a {
  color: var(--retro-green);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s;
}
footer .social-links a:hover {
  color: var(--retro-orange);
}
footer img {
  height: 38px;
  margin: 10px 0 0 0;
}
footer small {
  color: var(--retro-cream);
  font-size: 0.95rem;
  margin-top: 8px;
}

/* ----------------------
   COOKIE CONSENT BANNER
----------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--retro-cream);
  color: var(--primary);
  box-shadow: 0 -2px 16px 0 rgba(24,92,110,0.10);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  animation: cookie-slide-in 0.7s cubic-bezier(.77,0,.18,1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: var(--font-accent);
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
  border: none;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-banner button:hover {
  background: var(--primary);
  color: var(--retro-orange);
}
.cookie-banner .cookie-settings {
  background: var(--retro-orange);
  color: var(--text-light);
}
.cookie-banner .cookie-settings:hover {
  background: var(--retro-red);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,44,44,0.45);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: var(--retro-cream);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px 0 rgba(24,92,110,0.18);
  padding: 38px 32px 28px 32px;
  min-width: 320px;
  max-width: 96vw;
  font-family: var(--font-body);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-pop 0.5s cubic-bezier(.77,0,.18,1);
}
@keyframes modal-pop {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal-content .cookie-toggle {
  width: 38px;
  height: 22px;
  background: var(--accent);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-modal-content .cookie-toggle[aria-checked="true"] {
  background: var(--primary);
}
.cookie-modal-content .cookie-toggle::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: var(--retro-cream);
  border-radius: 50%;
  transition: left 0.2s;
}
.cookie-modal-content .cookie-toggle[aria-checked="true"]::after {
  left: 18px;
}
.cookie-modal-content .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal-content button {
  font-family: var(--font-accent);
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
  border: none;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal-content button:hover {
  background: var(--primary);
  color: var(--retro-orange);
}
.cookie-modal-content .cookie-close {
  background: none;
  color: var(--primary);
  font-size: 1.6rem;
  align-self: flex-end;
  margin-bottom: -18px;
  margin-top: -18px;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal-content .cookie-close:hover {
  color: var(--retro-red);
}

/* ----------------------
   RESPONSIVE DESIGN
----------------------- */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .section {
    padding: 28px 8px;
  }
  .card-container, .card-grid, .feature-grid, .gallery-grid, .team-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .section {
    margin-bottom: 36px;
    padding: 18px 4px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .card, .course-card {
    min-width: 180px;
    padding: 16px 10px;
  }
  .card-container, .card-grid, .feature-grid, .gallery-grid, .team-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 10px;
    padding: 10px 6px;
  }
  .testimonial-card {
    padding: 12px;
    gap: 10px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 8px;
    font-size: 0.98rem;
  }
  .cookie-modal-content {
    padding: 18px 8px 14px 8px;
    min-width: 90vw;
  }
}

/* ----------------------
   RETRO DECORATIVE ELEMENTS
----------------------- */
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  background: var(--pattern-url);
  border-radius: var(--border-radius);
  z-index: 0;
}
.section > * {
  position: relative;
  z-index: 1;
}

/* Retro underline for h2 */
h2 {
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--retro-orange), var(--retro-green));
  border-radius: 2px;
  margin-top: 6px;
}

/* Retro shadow for cards */
.card, .course-card, .testimonial-card {
  box-shadow: 0 4px 24px 0 rgba(156, 122, 67, 0.13);
}

/* ----------------------
   FORM ELEMENTS
----------------------- */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--accent);
  border-radius: var(--border-radius-sm);
  padding: 10px 14px;
  margin-bottom: 14px;
  background: var(--retro-cream);
  color: var(--primary);
  transition: border 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: none;
}
label {
  font-family: var(--font-accent);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}

/* ----------------------
   MISCELLANEOUS
----------------------- */
a {
  transition: color 0.2s, background 0.2s;
}
img {
  max-width: 100%;
  border-radius: var(--border-radius-sm);
}

/* Hide scroll on mobile menu open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Utility classes */
.d-none { display: none !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }

/* ----------------------
   END OF CSS
----------------------- */
