/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;600;700;800&family=Oswald:wght@350;400;500;600;700&display=swap');

/* Custom Font: Sink */
@font-face {
  font-family: 'Sink';
  src: url('../assets/Sink.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
  --off-white: #fdf6f0;
  --black: #000000;
  --white: #ffffff;
  --cream: #ffe9e9;
  --light-red: #ff3e3e;
  --rd-red: #ff0037;
  --rd-pink: #ff40b0;
  --rd-green: #31db8e;
  --rd-green-dark: #12844d;
  --rd-purple: #9747ff;
  --neon-yellow: #f4ff4d;
  --vibrant-purple: #7e3ff2;
  --circuit-green: #00d68f;
  --font-heading: "Sink", "Oswald", sans-serif;
  --font-body: "Mulish", sans-serif;
  --font-main: "Oswald", sans-serif;
  --font-text: "Mulish", sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  min-height: 100%;
}

/* SVG background decorations (disabled for redesign) */
/*
body::before,
body::after {
  content: "";
  position: absolute;
  top: 0;
  width: 400px;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-repeat: repeat-y;
  background-size: 100% 2500px;
}
*/

h1 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  margin: 0;
}

h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

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

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

.font-titles {
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.text-stroke {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--white);
}

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

.logo-container a {
  display: flex;
  align-items: center;
}

.logo-container .logo {
  height: 45px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  list-style: none;
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
  white-space: nowrap;
}

.navbar-links a:hover {
  color: var(--neon-yellow);
}

.navbar-links a.active {
  color: var(--neon-yellow);
}

.btn-join-nav {
  padding: 8px 20px;
  background: var(--neon-yellow);
  color: var(--black) !important;
  border: 3px solid var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--black);
  transition: 0.1s;
}

.btn-join-nav:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--black);
  color: var(--black) !important;
}


/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

@media (max-width: 1100px) {
  .hamburger {
    display: flex;
  }

  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    flex-direction: column;
    background: var(--black);
    border-left: 3px solid var(--white);
    padding: 80px 30px 30px;
    gap: 16px;
    z-index: 1000;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-links a {
    font-size: 1.2rem;
  }
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
#app {
  margin-top: 150px;
  min-height: calc(100vh - 150px);
  position: relative;
  z-index: 1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-brutal {
  padding: 12px 24px;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: none;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
  background: var(--cream);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.btn-brutal:active {
  transform: none;
  box-shadow: none;
}

.btn-brutal:hover {
  opacity: 0.85;
  transform: none;
  box-shadow: none;
}

.btn-yellow { background: var(--cream); color: var(--black); }
.btn-red { background: var(--rd-red); color: var(--white); }
.btn-purple { background: var(--rd-purple); color: var(--white); }
.btn-green { background: var(--rd-green); color: #111; }
.btn-white { background: var(--cream); color: #111; }

.shadow-yellow {
  border-left: 5px solid var(--cream) !important;
}
.shadow-red {
  border-left: 5px solid var(--rd-red) !important;
}
.shadow-purple {
  border-left: 5px solid var(--rd-purple) !important;
}
.shadow-green {
  border-left: 5px solid var(--rd-green) !important;
}
.shadow-black {
  border-left: 5px solid rgba(255, 233, 233, 0.3) !important;
}
.shadow-white {
  border-left: 5px solid var(--cream) !important;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: rgba(255, 233, 233, 0.05);
  color: var(--cream);
  border: 1px solid rgba(255, 233, 233, 0.15);
  padding: 30px;
  margin-bottom: 30px;
}

.card h2 {
  margin-bottom: 16px;
}

.card p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.card-media {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-type {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(255, 233, 233, 0.3);
  background: rgba(255, 233, 233, 0.1);
  color: var(--cream);
  position: absolute;
  top: 12px;
  left: 12px;
}

.badge-black {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 233, 233, 0.1);
  color: var(--cream);
  border: 1px solid rgba(255, 233, 233, 0.2);
}

.badge-yellow { background: var(--neon-yellow); color: var(--black); }
.badge-red { background: var(--light-red); color: var(--white); }
.badge-purple { background: var(--vibrant-purple); color: var(--white); }
.badge-green { background: var(--circuit-green); color: var(--black); }

.tagline-badge {
  display: inline-block;
  padding: 6px 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 233, 233, 0.08);
  color: var(--cream);
  border: 1px solid rgba(255, 233, 233, 0.2);
  margin-top: 12px;
}

.highlight-black {
  background: var(--black);
  color: var(--white);
  padding: 2px 8px;
}

/* ============================================
   HOME V2 — Hero + Stats + Marquee + Sections
   ============================================ */

/* --- HERO --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -150px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.hero-title {
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: 8px;
  color: var(--white);
  -webkit-text-stroke: 3px var(--white);
  text-transform: uppercase;
  margin: 0;
}

.hero-sub {
  font-family: var(--font-text);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--white);
  opacity: 0.85;
  margin: 16px 0 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .btn-brutal {
  min-width: 200px;
  text-align: center;
  font-size: 1rem;
}

.btn-white {
  background: var(--cream);
  color: #111;
  border: none;
}

.btn-white:hover {
  background: rgba(255, 233, 233, 0.15);
  color: var(--cream);
}

/* --- MARQUEE --- */
.marquee-strip {
  background: var(--black);
  border-top: 4px solid var(--neon-yellow);
  border-bottom: 4px solid var(--neon-yellow);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neon-yellow);
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* --- STATS --- */
.stats-section {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-block {
  background: rgba(255, 233, 233, 0.05);
  color: var(--cream);
  border: 1px solid rgba(255, 233, 233, 0.15);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.2s;

}

.stat-block:hover {
  transform: translateY(-4px);
}

.stat-number {
  display: block;
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 0.6;
}

/* --- WAT IS CIRCUIT --- */
.wat-section {
  position: relative;
  z-index: 2;
  background: var(--black);
  border-top: 4px solid var(--white);
  border-bottom: 4px solid var(--white);
  padding: 60px 20px;
}

.wat-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.wat-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 20px;
}

.wat-tekst {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.85;
}

.wat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wat-item {
  background: rgba(255,255,255,0.05);
  border: 3px solid rgba(255,255,255,0.15);
  padding: 30px 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.wat-item:hover {
  border-color: var(--neon-yellow);
  transform: translateY(-4px);
}

.wat-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.wat-item h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* --- FEATURED WORKSHOP --- */
.featured-ws-section {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 30px;
}

.featured-ws {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.featured-ws-img {
  overflow: hidden;
  border-right: 6px solid var(--black);
}

.featured-ws-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.featured-ws-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 233, 233, 0.05);
  color: var(--cream);
}

.featured-ws-body h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.featured-ws-body p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.featured-ws-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.btn-red {
  background: var(--light-red);
  color: var(--white);
  border: 4px solid var(--light-red);
}

/* --- HOME FEED SECTION --- */
.home-feed-section {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-ws {
    grid-template-columns: 1fr;
  }
  .featured-ws-img {
    border-right: none;
    border-bottom: 6px solid var(--black);
  }
}

@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-block {
    padding: 20px 12px;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .wat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hero {
    height: 80vh;
  }
  .hero-title {
    -webkit-text-stroke: 2px var(--white);
  }
}

/* ============================================
   HOME PAGE (original)
   ============================================ */
.home-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.top-banner {
  width: 100%;
  max-height: calc(70vh - 20px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.top-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-section {
  text-align: left;
  padding: 20px 0 20px 0;
}

.intro-section .main-title {
  font-size: clamp(4rem, 12vw, 7rem);
  letter-spacing: 6px;
  margin-bottom: 0;
  line-height: 0.9;
}

.intro-section .sub-title {
  font-family: var(--font-text);
  font-size: 1.1rem;
  letter-spacing: 1px;
  opacity: 0.7;
  font-weight: 300;
}

.content-feed {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px 0;
}

.home-card {
  background: rgba(255, 233, 233, 0.05);
  color: var(--cream);
  border: 1px solid rgba(255, 233, 233, 0.15);
  overflow: hidden;
  transition: transform 0.2s;

}

.home-card:hover {
  transform: translateY(-4px);
}

.home-card .card-media {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.home-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-card .card-body {
  padding: 24px;
}

.home-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.home-card .card-header h2 {
  font-size: 1.4rem;
  margin: 0;
}

.home-card .date-info {
  font-family: var(--font-body);
  font-size: 0.8rem;
  opacity: 0.6;
  white-space: nowrap;
}

.home-card .text-content {
  font-size: 1rem;
  line-height: 1.6;
}

.home-card-badge {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(255, 233, 233, 0.3);
  color: var(--cream);
  margin-bottom: 10px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.about-header {
  background: none;
  color: var(--cream);
  border: none;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.about-header h1 {
  font-size: 3rem;
  letter-spacing: 4px;
}

.about-header .text-stroke {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}

/* About carousel */
.about-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16/7;
}

.about-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.about-carousel-slide {
  min-width: 100%;
  height: 100%;
}

.about-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.about-carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

.about-carousel-prev {
  left: 12px;
}

.about-carousel-next {
  right: 12px;
}

.about-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.about-carousel-dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.about-carousel-dot.active {
  background: var(--rd-pink);
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-card {
  background: rgba(255, 233, 233, 0.05);
  color: var(--cream);
  border: 1px solid rgba(255, 233, 233, 0.15);
  padding: 30px;
}

.about-card h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.about-card p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-footer {
  background: rgba(255, 233, 233, 0.05);
  color: var(--cream);
  border: 1px solid rgba(255, 233, 233, 0.15);
  padding: 40px;
  text-align: center;
  margin-top: 30px;
}

.about-footer h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

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

/* ============================================
   OPEN CIRCUIT PAGE
   ============================================ */
.open-circuit-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.oc-header {
  background: none;
  color: var(--cream);
  border: none;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.oc-header h1 {
  font-size: 3rem;
  letter-spacing: 4px;
}

.oc-header .text-stroke {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}

.oc-badge {
  display: inline-block;
  padding: 6px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--rd-green);
  color: #111;
  border: none;
  margin-top: 12px;

}

.oc-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.oc-text-side,
.oc-info-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.cta-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .oc-content-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.contact-header {
  background: none;
  color: var(--cream);
  border: none;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h1 {
  font-size: 3rem;
  letter-spacing: 4px;
}

.contact-header .text-stroke {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

.contact-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.contact-list li {
  padding: 10px 0;
  border-bottom: 2px solid #eee;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list li span {
  font-size: 1.2rem;
}

.contact-sidebar .info-card {
  position: sticky;
  top: 90px;
}

.info-group {
  margin-bottom: 20px;
}

.info-group label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  color: rgba(255, 233, 233, 0.6);
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 4px;
  opacity: 0.6;
}

.info-group p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.info-group a {
  color: var(--white);
  text-decoration: underline;
}

.info-card {
  background: rgba(255, 233, 233, 0.05) !important;
  color: var(--cream) !important;
  border: 1px solid rgba(255, 233, 233, 0.15);
}

.info-card h2 {
  color: var(--rd-green);
  margin-bottom: 20px;
}

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

/* ============================================
   WORKSHOPS PAGE
   ============================================ */
.workshops-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.ws-header {
  text-align: center;
  margin-bottom: 60px;
}

.ws-header .main-title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  margin: 0;
  line-height: 0.85;
  text-transform: uppercase;
}

.ws-header .sub-title {
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  font-weight: 700;
  margin: 15px 0 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ws-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.ws-card {
  overflow: hidden;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}

.ws-card:hover {
  transform: translateY(-4px);
}

.ws-card-image {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  display: flex;
}

.ws-card-image img {
  flex: 1;
  min-width: 0;
  height: 100%;
  object-fit: cover;
}

.ws-card-accent {
  width: 52px;
  flex-shrink: 0;
}

.ws-card-body {
  background: var(--cream);
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ws-card-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--black);
  margin: 0 0 8px;
  line-height: 1.1;
  text-transform: uppercase;
}

.ws-card-datum {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 10px;
}

.ws-card-tekst {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--black);
}

.ws-card-btn--disabled {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #999;
  margin-top: auto;
}

.ws-card-body .rd-btn {
  margin-top: auto;
}

.ws-card-body .ws-status {
  color: var(--black);
}

.ws-card-body .ws-status.full {
  color: var(--rd-red);
}

.ws-card-body .ws-status.available {
  color: var(--rd-green);
}

.ws-status {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ws-status.full {
  color: var(--light-red);
}

.ws-status.available {
  color: var(--circuit-green);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #4f4;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: inline-block;
}

.status-dot.is-full {
  background: #f44;
}

.btn-action {
  display: block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 233, 233, 0.25);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  background: rgba(255, 233, 233, 0.08);
  color: var(--cream);
  margin-top: 4px;

}

.btn-action:hover {
  background: var(--cream);
  color: #111;
}

.btn-full {
  background: var(--light-red);
  color: var(--white);
  cursor: not-allowed;
  border-color: var(--light-red);
}

.btn-closed {
  background: #999;
  color: var(--white);
  cursor: not-allowed;
  border-color: #999;
}

.ws-card-afgesloten {
  opacity: 0.5;
}

/* ============================================
   MAKERS / PROJECTEN PAGE
   ============================================ */
.makers-page {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 3rem;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.page-header .sub-title {
  font-size: 1.1rem;
  letter-spacing: 2px;
  opacity: 0.7;
  font-family: var(--font-body);
  text-transform: uppercase;
}

.projects-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.project-block {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.project-block:hover {
  transform: translateY(-4px);
}

.project-media {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  display: flex;
}

.project-media img {
  flex: 1;
  min-width: 0;
  height: 100%;
  object-fit: cover;
}

.project-accent {
  width: 52px;
  flex-shrink: 0;
}

.project-body {
  background: var(--cream);
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--black);
  margin: 0 0 8px;
  line-height: 1.1;
  text-transform: uppercase;
}

.project-jaar-tag {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  opacity: 0.5;
  margin: 0 0 10px;
}

.project-body .project-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--black);
}

.project-body .rd-btn {
  margin-top: auto;
}

.project-body .makers-section {
  margin-bottom: 16px;
}

.project-body .makers-toggle {
  color: var(--black);
}

.project-body .maker-chip {
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--black);
}

.project-body .maker-chip:hover {
  background: rgba(0, 0, 0, 0.15);
}

.project-body .maker-role {
  color: var(--black);
  opacity: 0.5;
}

.makers-section label {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.5;
}

.makers-toggle {
  background: none;
  border: none;
  color: inherit;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.5;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.makers-toggle:hover,
.makers-toggle.open {
  opacity: 1;
}

.makers-count {
  display: inline-block;
  background: rgba(255, 233, 233, 0.15);
  color: var(--cream);
  font-size: 0.6rem;
  padding: 1px 5px;
  margin-left: 4px;
  vertical-align: middle;
}

.makers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.makers-list.hidden {
  display: none;
}

.maker-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 233, 233, 0.12);
  border: 1px solid rgba(255, 233, 233, 0.3);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
  color: var(--cream);

}

.maker-chip:hover {
  background: var(--neon-yellow);
}

.maker-chip .maker-img-small {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.maker-role {
  font-size: 0.7rem;
  font-weight: 300;
  text-transform: lowercase;
  opacity: 0.6;
  margin-left: 2px;
}

/* ============================================
   TAG FILTER BAR
   ============================================ */
.tags-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  justify-content: center;
}

.tag-filter-btn {
  padding: 4px 12px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: 0.2s;
  letter-spacing: 1px;
}

.tag-filter-btn:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.tag-filter-btn.active {
  background: var(--cream);
  color: #111;
  border-color: var(--cream);
}

/* ============================================
   PROJECTEN MULTI-FILTER BAR
   ============================================ */
.projecten-filters {
  margin-bottom: 24px;
  text-align: center;
}

.filter-toggle {
  padding: 5px 16px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-toggle:hover,
.filter-toggle.active {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}

.filter-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 12px;
}

.filter-groups.hidden {
  display: none;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-group label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  opacity: 0.4;
  white-space: nowrap;
}

.filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.project-cat {
  background: var(--vibrant-purple) !important;
  color: var(--white) !important;
}

.project-jaar {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-left: 8px;
  font-family: var(--font-body);
  font-weight: 400;
}

/* ============================================
   PROJECT TAG BADGES
   ============================================ */
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.project-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--vibrant-purple);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   MAKERS GRID (profielkaarten)
   ============================================ */
.makers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.maker-profile-card {
  display: block;
  overflow: hidden;
  transition: transform 0.2s;
  text-decoration: none;
}

.maker-profile-card:hover {
  transform: translateY(-4px);
}

.maker-profile-image {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
}

.maker-profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.maker-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.maker-photo-placeholder span {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: inherit;
  opacity: 0.8;
}

.maker-profile-info {
  background: var(--cream);
  padding: 20px;
}

.maker-profile-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: var(--black);
  margin: 0 0 6px;
  line-height: 1.1;
  text-transform: uppercase;
}

.maker-profile-bio {
  color: var(--black);
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.7;
}

/* Rol badges op makerkaarten */
.maker-rol-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.maker-rol-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--rd-purple);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.6rem;
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

/* Maker in de kijker — fotobalk-stijl */
.maker-spotlight-section {
  display: grid;
  grid-template-columns: 496fr 807fr;
  max-width: 1303px;
  margin: 0 auto 48px;
}

.maker-spotlight-image {
  position: relative;
  overflow: hidden;
}

.maker-spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.maker-spotlight-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 52px;
  display: flex;
}

.maker-spotlight-accent-square {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.maker-spotlight-accent-wide {
  flex: 1;
  height: 52px;
}

.maker-spotlight-info {
  background: var(--cream);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--black);
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.spotlight-title a {
  color: inherit;
  text-decoration: none;
}

.spotlight-subtitle-wrap {
  margin-top: 12px;
  margin-bottom: 20px;
}

.spotlight-subtitle {
  display: inline-block;
  background: var(--rd-purple);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  letter-spacing: 1px;
}

.spotlight-numbers {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.spotlight-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spotlight-num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  color: var(--black);
  line-height: 1;
}

.spotlight-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.5;
  margin-top: 4px;
}

.spotlight-rollen {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.spotlight-rol-item {
  padding: 3px 10px;
  border: 1px solid rgba(0,0,0,0.15);
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--black);
  text-transform: lowercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

.spotlight-projecten {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.spotlight-project-thumb {
  width: 56px;
  height: 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.spotlight-project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-project-thumb span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--black);
  opacity: 0.3;
}

.spotlight-project-thumb:hover {
  border-color: var(--rd-purple);
}

@media (max-width: 768px) {
  .maker-spotlight-section {
    grid-template-columns: 1fr;
  }
  .maker-spotlight-image {
    aspect-ratio: 16/9;
  }
  .maker-spotlight-info {
    padding: 32px 24px;
  }
}

/* Project count op makerkaart */
.maker-project-count {
  color: var(--black);
  font-size: 0.75rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.5;
  margin-top: 8px;
}

/* Rol beschrijving onder filter */
.rol-beschrijving {
  text-align: center;
  font-size: 0.8rem;
  color: var(--white);
  opacity: 0.6;
  margin-top: 8px;
  min-height: 1.2em;
  font-style: italic;
}

/* Community section op home */
.community-section {
  max-width: 1303px;
  margin: 0 auto;
  padding: 120px 40px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.community-left {
  flex-shrink: 0;
}

.community-title {
  font-family: var(--font-heading);
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 400;
  color: var(--cream);
  line-height: 0.9;
  margin: 0;
  text-transform: none;
}

.community-subtitle-wrap {
  margin-top: 16px;
}

.community-subtitle {
  display: inline-block;
  background: var(--rd-green);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.community-right {
  flex: 1;
  padding-top: 0;
}

.community-numbers {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.community-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
  line-height: 1;
}

.community-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-top: 6px;
}

.community-rollen {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.community-rol-item {
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

/* ============================================
   MAKER ROLE IN DETAIL
   ============================================ */
.maker-role-detail {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  background: var(--vibrant-purple);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: lowercase;
  letter-spacing: 1px;
}

/* ============================================
   PROJECT DETAIL PAGE
   ============================================ */
.project-detail-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.project-detail-card {
  overflow: hidden;
}

.pd-image {
  width: 100%;
  aspect-ratio: 16/5;
  overflow: hidden;
  display: flex;
}

.pd-image img {
  flex: 1;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-accent {
  width: 52px;
  flex-shrink: 0;
  background: var(--rd-purple);
}

.pd-body {
  background: var(--cream);
  padding: 32px 28px;
}

.pd-body h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--black);
  margin: 0 0 10px;
  line-height: 1.1;
}

.pd-jaar {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  opacity: 0.5;
  margin: 0 0 16px;
}

.pd-inhoud {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 30px;
}

.pd-makers-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pd-makers-section h2 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  opacity: 0.5;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pd-body .maker-chip {
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--black);
}

.pd-body .maker-chip:hover {
  background: rgba(0, 0, 0, 0.15);
}

.pd-body .maker-role {
  color: var(--black);
  opacity: 0.5;
}

.pd-galerij-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pd-galerij-section h2 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  opacity: 0.5;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pd-galerij {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.pd-galerij-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s;
}

.pd-galerij-item img:hover {
  transform: scale(1.03);
}

/* Lightbox */
.pd-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pd-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* Admin galerij preview */
.pr-galerij-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.pr-galerij-thumb {
  position: relative;
  width: 80px;
  height: 80px;
}

.pr-galerij-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 233, 233, 0.15);

}

.pr-galerij-thumb button {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: var(--light-red);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 0.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

@media (max-width: 600px) {
  .pd-body .main-title {
    font-size: 1.8rem;
  }

  .pd-galerij {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   MAKER DETAIL PAGE
   ============================================ */
.maker-detail-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.maker-detail-card {
  background: rgba(255, 233, 233, 0.05);
  color: var(--cream);
  border: 1px solid rgba(255, 233, 233, 0.15);
  padding: 30px;

}

.header-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.image-side .profile-pic {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 233, 233, 0.15);

}

.content-side .main-title {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.tag-row {
  margin-bottom: 20px;
}

.bio-section {
  margin-bottom: 16px;
}

.bio-section h2 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--vibrant-purple);
}

.bio-section .text-content {
  font-size: 1rem;
  line-height: 1.6;
}

.work-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 4px solid var(--black);
}

.work-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.project-card {
  background: rgba(255, 233, 233, 0.05);
  border: 1px solid rgba(255, 233, 233, 0.15);
  overflow: hidden;

  color: var(--cream);
}

.project-card .project-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.project-card .project-info {
  padding: 12px;
}

.project-card .project-info h3 {
  font-size: 0.95rem;
}

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

@media (max-width: 600px) {
  .header-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .image-side {
    display: flex;
    justify-content: center;
  }

  .image-side .profile-pic {
    width: 200px;
  }
}

/* ============================================
   JOIN PAGE
   ============================================ */
.join-page {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.join-header {
  text-align: center;
  margin-bottom: 30px;
}

.join-info {
  padding: 30px;
  margin-bottom: 30px;
}

.join-info h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.join-info p {
  font-size: 1rem;
  line-height: 1.6;
}

.join-header h1 {
  font-size: 3rem;
  letter-spacing: 4px;
}

.join-header .text-stroke {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.join-form {
  background: rgba(255, 233, 233, 0.05);
  color: var(--cream);
  border: 1px solid rgba(255, 233, 233, 0.15);
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.brutal-input {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 233, 233, 0.25);
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(255, 233, 233, 0.06);
  color: var(--cream);
  outline: none;

}

.brutal-input:focus {
  border-color: var(--rd-green);
}

.brutal-input::placeholder {
  color: rgba(255, 233, 233, 0.4);
}

textarea.brutal-input {
  min-height: 100px;
  resize: vertical;
}

.upload-zone {
  border: 2px dashed rgba(255, 233, 233, 0.25);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  background: rgba(255, 233, 233, 0.04);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: background 0.2s;
  position: relative;
  color: var(--cream);

}

.upload-zone:hover {
  background: rgba(255, 233, 233, 0.1);
}

.upload-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-zone .preview-img {
  max-width: 200px;
  max-height: 200px;
  margin-top: 10px;
  border: 1px solid rgba(255, 233, 233, 0.2);

}

.upload-placeholder {
  padding: 20px;
}

.join-form .btn-brutal {
  margin-top: 24px;
  width: 100%;
  font-size: 1.1rem;
}

.success-screen {
  text-align: center;
  padding: 60px 20px;
}

.success-screen .card {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
}

.success-screen h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .field.full {
    grid-column: 1;
  }
}

/* ============================================
   FORMS (shared for admin forms etc.)
   ============================================ */
.form-brutal {
  background: rgba(255, 233, 233, 0.05);
  color: var(--cream);
  border: 1px solid rgba(255, 233, 233, 0.15);
  padding: 40px;

}

.form-brutal label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 6px;
  margin-top: 20px;
}

.form-brutal label:first-child {
  margin-top: 0;
}

.form-brutal input,
.form-brutal textarea,
.form-brutal select {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 233, 233, 0.25);
  background: rgba(255, 233, 233, 0.06);
  color: var(--cream);

  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

.form-brutal input::placeholder,
.form-brutal textarea::placeholder {
  color: rgba(255, 233, 233, 0.4);
}

.form-brutal input:focus,
.form-brutal textarea:focus,
.form-brutal select:focus {
  border-color: var(--rd-green);
}

.form-brutal textarea {
  min-height: 100px;
  resize: vertical;
}

.form-brutal .btn-brutal {
  margin-top: 24px;
  width: 100%;
  font-size: 1.1rem;
}

.form-message {
  padding: 16px;
  margin-top: 16px;
  font-family: var(--font-body);
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}

.form-message.success {
  background: rgba(49, 219, 142, 0.15);
  color: var(--rd-green);
  border: 1px solid var(--rd-green);

}

.form-message.error {
  background: rgba(255, 0, 55, 0.15);
  color: var(--rd-red);
  border: 1px solid var(--rd-red);

}

/* Upload area (admin) */
.upload-area {
  border: 2px dashed rgba(255, 233, 233, 0.25);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  background: rgba(255, 233, 233, 0.04);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--cream);

  transition: background 0.2s;
}

.upload-area:hover {
  background: rgba(255, 233, 233, 0.1);
}

.upload-area img {
  max-width: 200px;
  max-height: 200px;
  margin-top: 10px;
  border: 1px solid rgba(255, 233, 233, 0.2);

}

/* ============================================
   INSCHRIJVING PAGE
   ============================================ */
.inschrijf-wrapper {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.inschrijf-card {
  overflow: hidden;
}

.inschrijf-image {
  width: 100%;
  aspect-ratio: 16/5;
  overflow: hidden;
  display: flex;
}

.inschrijf-image img {
  flex: 1;
  min-width: 0;
  height: 100%;
  object-fit: cover;
}

.inschrijf-accent {
  width: 52px;
  flex-shrink: 0;
  background: var(--rd-green);
}

.inschrijf-body {
  background: var(--cream);
  padding: 32px 28px;
}

.inschrijf-body h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--black);
  margin: 0 0 10px;
  line-height: 1.1;
}

.inschrijf-datum {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 10px;
}

.inschrijf-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--black);
  margin: 0 0 24px;
}

.inschrijf-field {
  margin-bottom: 16px;
}

.inschrijf-field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 6px;
}

.inschrijf-field input,
.inschrijf-field textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.03);
  color: var(--black);
  outline: none;
  box-sizing: border-box;
}

.inschrijf-field input:focus,
.inschrijf-field textarea:focus {
  border-color: var(--rd-green);
}

.inschrijf-field input::placeholder,
.inschrijf-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.inschrijf-field textarea {
  min-height: 80px;
  resize: vertical;
}

.rd-btn--full {
  width: 100%;
  margin-top: 8px;
}

.inschrijf-back {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.5;
  text-decoration: underline;
}

.inschrijf-back:hover {
  opacity: 1;
}

.brutal-form .form-group {
  margin-bottom: 16px;
}

.brutal-form label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.brutal-form .btn-brutal {
  width: 100%;
  margin-top: 16px;
}

.inschrijf-wrapper h1 {
  font-size: 2.5rem;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 8px;
}

.inschrijf-workshop-info {
  text-align: center;
  margin-bottom: 30px;
}

.inschrijf-workshop-info h2 {
  font-size: 1.5rem;
  color: var(--neon-yellow);
}

.inschrijf-workshop-info p {
  opacity: 0.8;
}

/* ============================================
   ADMIN
   ============================================ */
.admin-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.admin-login {
  max-width: 400px;
  margin: 80px auto;
  text-align: center;
}

.admin-login h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.admin-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  border-bottom: 4px solid var(--white);
  flex-wrap: wrap;
}

.admin-tab {
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--white);
  border: none;
  border-bottom: 4px solid transparent;
  margin-bottom: -4px;
  transition: 0.2s;
  letter-spacing: 1px;
}

.admin-tab:hover {
  color: var(--neon-yellow);
}

.admin-tab.active {
  color: var(--neon-yellow);
  border-bottom-color: var(--neon-yellow);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-header h2 {
  font-size: 1.8rem;
}

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-item {
  background: rgba(255, 233, 233, 0.05);
  color: var(--cream);
  border: 1px solid rgba(255, 233, 233, 0.15);
  padding: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-item h3 {
  font-size: 1.1rem;
}

.admin-item-actions {
  display: flex;
  gap: 8px;
}

.btn-edit {
  padding: 8px 16px;
  background: var(--rd-green);
  color: #111;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;

}

.btn-delete {
  padding: 8px 16px;
  background: var(--rd-red);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;

  cursor: pointer;
}

.btn-logout {
  padding: 8px 16px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-logout:hover {
  background: var(--light-red);
  border-color: var(--light-red);
}

/* Admin form modal/panel */
.admin-form-panel {
  background: rgba(255, 233, 233, 0.05);
  color: var(--cream);
  border: 1px solid rgba(255, 233, 233, 0.15);
  padding: 30px;
  margin-bottom: 30px;

}

.admin-form-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.admin-form-panel label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 4px;
  margin-top: 16px;
}

.admin-form-panel input,
.admin-form-panel textarea,
.admin-form-panel select {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 233, 233, 0.25);
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(255, 233, 233, 0.06);
  color: var(--cream);

}

.admin-form-panel textarea {
  min-height: 80px;
  resize: vertical;
}

.admin-form-panel .form-row {
  display: flex;
  gap: 16px;
}

.admin-form-panel .form-row > div {
  flex: 1;
}

.admin-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.admin-registrations {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 233, 233, 0.04);
  border: 1px solid rgba(255, 233, 233, 0.15);
  color: var(--cream) !important;

}

.admin-registrations * {
  color: var(--cream);
}

.admin-registrations h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.admin-registrations ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-registrations li {
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
  font-size: 0.9rem;
}

.admin-page-editor {
  background: rgba(255, 233, 233, 0.05);
  color: var(--cream);
  border: 1px solid rgba(255, 233, 233, 0.15);
  padding: 30px;
  margin-bottom: 30px;

}

.admin-page-editor h3 {
  font-family: var(--font-body);
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--black);
  letter-spacing: 1px;
}

.admin-page-editor label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 6px;
  color: rgba(255, 233, 233, 0.6);
}

.admin-page-editor label:first-of-type {
  margin-top: 0;
}

.admin-page-editor input,
.admin-page-editor textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 233, 233, 0.25);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255, 233, 233, 0.06);
  color: var(--cream);

  box-sizing: border-box;
}

.admin-page-editor textarea {
  min-height: 80px;
  resize: vertical;
}

.admin-page-editor .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.admin-page-section {
  margin-bottom: 16px;
  padding: 20px;
  background: rgba(255, 233, 233, 0.04);
  border: 1px solid rgba(255, 233, 233, 0.15);
  position: relative;

  color: var(--cream);
}

.admin-page-section label {
  color: #333;
}

.admin-page-section input,
.admin-page-section textarea {
  background: rgba(255, 233, 233, 0.06);
  color: var(--cream);
  border-color: rgba(255, 233, 233, 0.25);
}

.admin-page-section h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

@media (max-width: 700px) {
  .admin-page-editor .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ADMIN COMPACT — chips, inline-add, sections
   ============================================ */
.admin-compact-section {
  background: rgba(255, 233, 233, 0.05);
  color: var(--cream);
  border: 1px solid rgba(255, 233, 233, 0.15);
  padding: 16px 20px;
  margin-bottom: 16px;

}

.admin-compact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .admin-compact-row {
    grid-template-columns: 1fr;
  }
}

.admin-compact-col label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.admin-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.admin-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(255, 233, 233, 0.06);
  border: 1px solid rgba(255, 233, 233, 0.2);
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--cream);

}

.admin-chip button {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  opacity: 0.5;
}

.admin-chip button:hover {
  opacity: 1;
  color: var(--light-red);
}

.admin-inline-add {
  display: flex;
  gap: 6px;
}

.admin-inline-add input {
  flex: 1;
  padding: 5px 8px;
  border: 1px solid rgba(255, 233, 233, 0.25);
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: rgba(255, 233, 233, 0.06);
  color: var(--cream);

}

.btn-sm {
  padding: 5px 12px !important;
  font-size: 0.85rem !important;
}

/* Admin project — maker zoek + koppeling */
.pr-maker-search-wrap {
  position: relative;
  margin-bottom: 8px;
}

.pr-maker-search-wrap input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(255, 233, 233, 0.25);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255, 233, 233, 0.06);
  color: var(--cream);

}

.pr-maker-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 233, 233, 0.2);
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
}

.pr-dropdown-item {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.9rem;
}

.pr-dropdown-item:hover {
  background: rgba(255, 233, 233, 0.1);
}

.pr-gekoppelde-makers {
  margin-bottom: 12px;
}

.pr-maker-entry {
  background: rgba(255, 233, 233, 0.04);
  border: 1px solid rgba(255, 233, 233, 0.15);
  padding: 8px 12px;
  margin-bottom: 6px;

  color: var(--cream);
}

.pr-maker-entry-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.pr-maker-entry-top strong {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.pr-rol-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.pr-rol-chip {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid rgba(255, 233, 233, 0.25);
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  cursor: pointer;
  background: rgba(255, 233, 233, 0.06);
  color: var(--cream);
  transition: 0.15s;
}

.pr-rol-chip:hover {
  background: #eee;
}

.pr-rol-chip.active {
  background: var(--vibrant-purple);
  color: var(--white);
  border-color: var(--vibrant-purple);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  position: relative;
  z-index: 10;
  background-color: var(--black) !important;
  padding: 40px 30px 20px;
  margin-top: 60px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--neon-yellow);
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
  margin: 4px 0;
}

.partner-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.p-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
  background: transparent;
  padding: 4px 8px;

}

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

.agency-credits {
  max-width: 1728px;
  margin: 40px auto 0;
  padding-top: 16px;
  padding-left: calc(50% + 30px);
  border-top: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.agency-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--cream);
  opacity: 0.4;
}

.agency-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
  transition: opacity 0.2s;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--cream);
}

.agency-link:hover {
  opacity: 0.8;
}

.agency-logo {
  height: 20px;
  width: auto;
}

.footer-bottom {
  max-width: 1728px;
  margin: 12px auto 0;
  padding-top: 0;
  padding-left: calc(50% + 30px);
  text-align: left;
  font-family: var(--font-body);
  font-size: 13px;
  opacity: 0.3;
  color: var(--cream);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .partner-grid {
    justify-content: center;
  }
}

/* ============================================
   REDESIGN — Global page title overrides
   ============================================ */

/* All page headers: use Sink font + cream color */
.about-header,
.oc-header,
.contact-header {
  background: none;
  border: none;
  color: var(--cream);
}

.about-header h1,
.oc-header h1,
.contact-header h1,
.join-header h1 {
  font-family: var(--font-heading);
  color: var(--cream);
  font-weight: 400;
}

.about-header .text-stroke,
.oc-header .text-stroke,
.contact-header .text-stroke,
.join-header .text-stroke {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}

.ws-header .main-title {
  font-family: var(--font-heading);
  color: var(--cream);
  font-weight: 400;
}

.ws-header .sub-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 1px;
  opacity: 1;
}

/* Responsive: navbar height compensation on smaller screens */
@media (max-width: 900px) {
  #app {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
  }
}

/* ============================================
   REDESIGN — HOME PAGE (Figma exact)
   ============================================ */

/* --- Navbar Redesign --- */
.rd-navbar {
  background: var(--black);
  border-bottom: none;
}

.rd-navbar .nav-container {
  max-width: 1728px;
  padding: 0 40px;
  height: 150px;
}

.rd-navbar .logo-container .logo {
  height: 103px;
}

.rd-navbar .logo-container {
  padding-left: 40px;
}

.rd-navbar .navbar-links {
  gap: 32px;
}

.rd-navbar .navbar-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 6px;
  color: var(--cream);
}

/* Red dot (default state) */
.rd-navbar .navbar-links a:not(.rd-btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3px;
  height: 3px;
  background: var(--rd-red);
  transition: width 0.3s ease;
}

/* Animated underline on hover — expands left to right */
.rd-navbar .navbar-links a:not(.rd-btn):hover::after,
.rd-navbar .navbar-links a:not(.rd-btn).active::after {
  width: 100%;
  height: 3px;
}

.rd-navbar .navbar-links a:hover,
.rd-navbar .navbar-links a.active {
  color: var(--cream);
}

.rd-navbar .navbar-links {
  padding-right: 60px;
}

/* --- Button Component (matches Figma) --- */
.rd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.rd-btn__label {
  padding: 10px 20px;
  background: var(--cream);
  color: var(--black);
  display: flex;
  align-items: center;
  height: 38px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: padding 0.3s ease-in-out;
}

.rd-btn:hover .rd-btn__label {
  padding-right: 30px;
}

.rd-btn--dark .rd-btn__label {
  background: var(--black);
  color: var(--cream);
}

.rd-btn__arrow {
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-btn__arrow svg {
  width: 17px;
  height: 17px;
  transition: transform 0.3s ease-in-out;
}

.rd-btn:hover .rd-btn__arrow svg {
  transform: rotate(45deg);
}

.rd-btn__arrow--red {
  background: var(--rd-red);
  color: var(--white);
}

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

.rd-btn--nav {
  margin-left: 8px;
  position: relative;
  top: 4px;
  flex-shrink: 0;
}

/* Reserve space so button hover doesn't push other items */
.rd-navbar .navbar-links li:last-child {
  min-width: 200px;
}

.rd-btn--nav .rd-btn__label {
  background: var(--cream);
  color: var(--black);
  height: 38px;
  padding: 10px 16px;
}

/* --- Header Section --- */
.rd-header {
  position: relative;
  max-width: 1728px;
  margin: -150px auto 0;
  padding-top: 150px;
  min-height: clamp(600px, 55vw, 941px);
  overflow: visible;
}

.rd-header__collage {
  position: absolute;
  top: 0;
  left: 0;
  width: 44%;
  height: 100%;
  overflow: hidden;
}

.rd-header__collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* --- Right side: Medialab title + description --- */
.rd-header__right {
  position: relative;
  margin-left: 60%;
  padding: 68px 60px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.rd-medialab-title {
  font-family: var(--font-heading);
  font-size: clamp(56px, 7.5vw, 128px);
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 12px;
  line-height: 0.95;
  text-transform: none;
}

.rd-medialab-subtitle-wrap {
  margin-bottom: 32px;
}

.rd-medialab-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 1px;
}

.rd-header__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream);
  max-width: 470px;
  margin: 0 0 32px;
  opacity: 0.9;
}

/* --- Overlapping card --- */
.rd-header__card {
  position: absolute;
  top: 218px;
  left: 30%;
  width: 360px;
  z-index: 10;
}

.rd-header__card-image {
  display: flex;
  height: 131px;
  position: relative;
}

.rd-header__card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 52px);
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.rd-header__card-img {
  flex: 1;
  object-fit: cover;
  width: calc(100% - 52px);
}

.rd-header__card-img--bw {
  filter: grayscale(100%) contrast(1.4) brightness(0.9);
}

.rd-header__card-pink {
  width: 52px;
  background: var(--rd-pink);
  flex-shrink: 0;
}

.rd-header__card-content {
  background: var(--cream);
  padding: 32px 28px;
}

.rd-card-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 400;
  color: var(--black);
  margin: 0 0 10px;
  line-height: 1;
  text-transform: uppercase;
}

.rd-card-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 10px;
}

.rd-card-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.6;
  margin: 0 0 20px;
}

/* --- Intro Section --- */
.rd-intro {
  max-width: 1217px;
  margin: 180px auto 0;
  padding: 60px 40px 180px;
  text-align: center;
}

.rd-intro__text {
  font-family: var(--font-body);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1.26;
  color: var(--cream);
  margin: 0;
}

.rd-intro__text strong {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--white);
}

.rd-intro__green {
  color: var(--rd-green);
}

/* --- Photo Section --- */
.rd-photos {
  max-width: 1728px;
  margin: 80px auto 0;
}

.rd-photos__grid {
  display: grid;
  grid-template-columns: 496fr 807fr;
  max-width: 1303px;
  margin: 0 auto;
}

.rd-photos__grid-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rd-photos__grid-cream {
  background: var(--cream);
  display: flex;
  align-items: center;
}

.rd-photos__grid-promo {
  padding: 40px;
}

.rd-photos__grid-promo h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--black);
  margin: 0 0 16px;
  text-transform: uppercase;
}

.rd-photos__grid-promo p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.7;
  margin: 0;
}

.rd-photos--bottom {
  margin-top: 0;
}

.rd-photos__full {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.rd-photos__full img {
  width: 100%;
  height: auto;
  display: block;
}

.rd-photos__full-red {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: var(--rd-red);
  overflow: hidden;
}

.rd-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Dynamic Content Feed --- */
.redesign-feed {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.rd-feed-card {
  background: var(--cream);
  color: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.rd-feed-card__media {
  overflow: hidden;
}

.rd-feed-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd-feed-card__body {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rd-feed-card__title {
  font-family: var(--font-heading);
  font-size: 32px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.rd-feed-card__date {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  opacity: 0.5;
  margin: 0 0 12px;
}

.rd-feed-card__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

/* --- Footer Redesign --- */
.rd-footer {
  position: relative;
  z-index: 10;
  background: var(--black) !important;
  padding: 80px 40px 60px;
  margin-top: 60px;
  border-top: none;
}

.rd-footer__inner {
  max-width: 1728px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  align-items: end;
}

.rd-footer__logo img {
  width: 100%;
  max-width: 472px;
  height: auto;
}

.rd-footer__columns {
  display: flex;
  gap: 80px;
  justify-content: flex-start;
}

.rd-footer__heading {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 20px;
  text-transform: uppercase;
}

.rd-footer__col p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.8;
  margin: 2px 0;
}

.rd-footer__partners {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.rd-footer__partner-logo {
  height: 125px;
  width: auto;
  object-fit: contain;
}

.rd-footer__partner-logo--wide {
  height: 89px;
}

/* ============================================
   REDESIGN — RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .rd-medialab-title {
    font-size: 80px;
  }

  .rd-header__card {
    left: 20%;
    width: 320px;
  }

  .rd-card-title {
    font-size: 36px;
  }

  .rd-intro__text {
    font-size: 28px;
  }

  .rd-photos__full {
    height: 500px;
  }

  .rd-photos__grid {
    height: 300px;
    margin-top: -200px;
  }

  .rd-photos__grid-left img {
    height: 240px;
  }
}

@media (max-width: 900px) {
  .rd-navbar .nav-container {
    height: 80px;
    padding: 0 20px;
  }

  .rd-navbar .logo-container .logo {
    height: 45px;
  }

  .rd-header {
    min-height: auto;
  }

  .rd-header__collage {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
  }

  .rd-header__collage-img {
    object-position: center bottom;
  }

  .rd-header__right {
    margin-left: 0;
    padding: 24px 24px;
  }

  .rd-header__card {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 24px 20px;
  }

  .rd-header__card-content {
    padding: 20px 20px;
  }

  .rd-intro {
    margin-top: 48px;
    padding: 48px 24px 100px;
  }

  .rd-intro__text {
    font-size: 26px;
  }

  .rd-photos:not(.rd-photos--bottom) {
    margin: 0 20px;
  }

  .rd-photos__grid {
    grid-template-columns: 1fr;
    margin-top: 0;
    height: auto;
  }

  .rd-photos__grid-cream {
    height: auto;
  }

  .rd-photos__grid-promo {
    padding: 28px 24px;
  }

  .rd-photos__grid-promo h3 {
    font-size: 18px;
  }

  .rd-photos__grid-promo p {
    font-size: 15px;
  }


  .community-section {
    flex-direction: column;
    gap: 40px;
    padding: 80px 24px;
    align-items: center;
    text-align: center;
  }

  .community-numbers {
    justify-content: center;
  }

  .community-rollen {
    justify-content: center;
  }

  .agency-credits,
  .footer-bottom {
    display: none;
  }

  .rd-photos__full {
    height: auto;
  }

  .rd-photos__full > img {
    display: none;
  }

  .rd-photos__full-red {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
  }

  .rd-feed-card {
    grid-template-columns: 1fr;
  }

  .rd-feed-card__media {
    height: 250px;
  }

  .redesign-feed {
    padding: 40px 24px;
  }

  .rd-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .rd-footer__logo img {
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }

  .rd-footer__columns {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .rd-footer__heading {
    font-size: 32px;
  }

  .rd-footer__partners {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .rd-medialab-title {
    font-size: 52px;
  }

  .rd-card-title {
    font-size: 28px;
  }

  .rd-intro__text {
    font-size: 22px;
  }

  .rd-footer__heading {
    font-size: 24px;
  }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none !important; }

.loading {
  text-align: center;
  padding: 60px 20px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  opacity: 0.6;
}

.empty-state p {
  font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
  .intro-section .main-title {
    font-size: 2.5rem;
  }

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

  .about-header h1,
  .oc-header h1,
  .contact-header h1 {
    font-size: 2rem;
  }

  .form-brutal {
    padding: 24px;
  }

  .admin-form-panel .form-row {
    flex-direction: column;
  }
}

@media (max-width: 1000px) {
  .content-feed {
    gap: 24px;
  }
}
