/* --- BASIS STIJLEN (Algemeen) --- */
body { box-sizing: border-box; }
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Base colors (bestaan al) */
  --bg-dark: #0f0f0f;
  --bg-charcoal: #1a1a1a;
  --accent-gold: #D4AF37;
  --text-white: #ffffff;
  --text-muted: #a8a8a8;
  --border-gold: rgba(212, 175, 55, 0.3);

  /* Gradient background colors (bestaan al) */
  --bg-grad-1: #0a0a0a;
  --bg-grad-2: #1a1520;
  --bg-grad-3: #1a1a28;
  --bg-grad-4: #0f1419;
  --bg-grad-5: #0a0a0a;

  /* Accent variants (nu hardcoded in scrollbar/gradients/404) */
  --accent-gold-dark: #b8941f;
  --accent-gold-light: #e5c158;

  /* Second accent (nu in body::before) */
  --accent-2: #6a5acd;

  /* Neutral blacks / overlays */
  --black: #000000;
  --overlay-strong: rgba(0, 0, 0, 0.95);

  /* “Glass” / white overlays (komen extreem vaak voor) */
  --glass-1: rgba(255, 255, 255, 0.02);
  --glass-2: rgba(255, 255, 255, 0.03);
  --glass-3: rgba(255, 255, 255, 0.05);
  --glass-4: rgba(255, 255, 255, 0.06);
  --glass-5: rgba(255, 255, 255, 0.08);
  --white-border-soft: rgba(255, 255, 255, 0.05);
  --white-border: rgba(255, 255, 255, 0.1);

  /* Navbar scrolled background */
  --nav-scrolled-bg: rgba(15, 15, 15, 0.95);

  /* Glow / highlights */
  --glow-gold-weak: rgba(212, 175, 55, 0.03);
  --glow-gold: rgba(212, 175, 55, 0.15);
  --glow-gold-strong: rgba(212, 175, 55, 0.5);
  --glow-accent-2-weak: rgba(106, 90, 205, 0.03);

  /* Shadows */
  --shadow-1: 0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-2: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-3: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-4: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-5: -10px 0 30px rgba(0, 0, 0, 0.8);

  /* Status colors (admin) */
  --danger: #ef4444;
  --success: #4ade80;
  --disabled: #888888;
  --muted-2: #555555;

  /* Special pages */
  --error-bg-1: #1a1a2e;
  --error-bg-2: #0a0a0a;

  /* Typography (bestaat al) */
  --font-body: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
}

:root[data-theme="emerald"] {
  /* Base colors */
  --bg-dark: #0b0f14;
  --bg-charcoal: #121a22;
  --accent-gold: #34d399;
  --text-white: #f8fafc;
  --text-muted: #9aa6b2;
  --border-gold: rgba(52, 211, 153, 0.3);

  /* Gradient background colors */
  --bg-grad-1: #070b10;
  --bg-grad-2: #0b1420;
  --bg-grad-3: #0f1f1f;
  --bg-grad-4: #0b1118;
  --bg-grad-5: #070b10;

  /* Accent variants */
  --accent-gold-dark: #10b981;
  --accent-gold-light: #6ee7b7;

  /* Second accent */
  --accent-2: #22d3ee;
  
  /* Neutral blacks / overlays */
  --black: #000000;
  --overlay-strong: rgba(0, 0, 0, 0.95);

  /* “Glass” / white overlays */
  --glass-1: rgba(248, 250, 252, 0.02);
  --glass-2: rgba(248, 250, 252, 0.03);
  --glass-3: rgba(248, 250, 252, 0.05);
  --glass-4: rgba(248, 250, 252, 0.06);
  --glass-5: rgba(248, 250, 252, 0.08);
  --white-border-soft: rgba(248, 250, 252, 0.05);
  --white-border: rgba(248, 250, 252, 0.1);

  /* Navbar scrolled background */
  --nav-scrolled-bg: rgba(11, 15, 20, 0.95);

  /* Glow / highlights */
  --glow-gold-weak: rgba(52, 211, 153, 0.03);
  --glow-gold: rgba(52, 211, 153, 0.15);
  --glow-gold-strong: rgba(52, 211, 153, 0.5);
  --glow-accent-2-weak: rgba(34, 211, 238, 0.03);

  /* Shadows */
  --shadow-1: 0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-2: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-3: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-4: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-5: -10px 0 30px rgba(0, 0, 0, 0.8);

  /* Status colors (admin) */
  --danger: #f43f5e;
  --success: #34d399;
  --disabled: #7b8694;
  --muted-2: #4b5563;

  /* Special pages */
  --error-bg-1: #0b1b2a;
  --error-bg-2: #070b10;

  /* Typography */
  --font-body: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
}

:root[data-theme="copper"] {
  /* Base colors */
  --bg-dark: #0f0b0b;
  --bg-charcoal: #1a1212;
  --accent-gold: #b8572a; /* primary accent (copper-red) */
  --text-white: #faf7f5;
  --text-muted: #b3a6a1;
  --border-gold: rgba(184, 87, 42, 0.28);

  /* Gradient background colors */
  --bg-grad-1: #0b0707;
  --bg-grad-2: #1a0f10;
  --bg-grad-3: #221314;
  --bg-grad-4: #140a0b;
  --bg-grad-5: #0b0707;

  /* Accent variants */
  --accent-gold-dark: #8f3f1e;
  --accent-gold-light: #e59a6c;

  /* Second accent */
  --accent-2: #f0d6c4; /* warm rosé sand */

  /* Neutral blacks / overlays */
  --black: #000000;
  --overlay-strong: rgba(0, 0, 0, 0.95);

  /* “Glass” / white overlays */
  --glass-1: rgba(250, 247, 245, 0.02);
  --glass-2: rgba(250, 247, 245, 0.03);
  --glass-3: rgba(250, 247, 245, 0.05);
  --glass-4: rgba(250, 247, 245, 0.06);
  --glass-5: rgba(250, 247, 245, 0.08);
  --white-border-soft: rgba(250, 247, 245, 0.05);
  --white-border: rgba(250, 247, 245, 0.1);

  /* Navbar scrolled background */
  --nav-scrolled-bg: rgba(15, 11, 11, 0.95);

  /* Glow / highlights */
  --glow-gold-weak: rgba(184, 87, 42, 0.03);
  --glow-gold: rgba(184, 87, 42, 0.15);
  --glow-gold-strong: rgba(184, 87, 42, 0.5);
  --glow-accent-2-weak: rgba(240, 214, 196, 0.03);

  /* Shadows */
  --shadow-1: 0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-2: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-3: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-4: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-5: -10px 0 30px rgba(0, 0, 0, 0.8);

  /* Status colors (admin) */
  --danger: #ef4444;
  --success: #22c55e;
  --disabled: #7d7d7d;
  --muted-2: #525252;

  /* Special pages */
  --error-bg-1: #1b1414;
  --error-bg-2: #0b0707;

  /* Typography */
  --font-body: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
}

:root[data-theme="silver"] {
  /* Base colors */
  --bg-dark: #0e1013;
  --bg-charcoal: #181c22;
  --accent-gold: #c0c6cf; /* primary accent (silver) */
  --text-white: #f1f4f8;
  --text-muted: #9aa3af;
  --border-gold: rgba(192, 198, 207, 0.28);

  /* Gradient background colors */
  --bg-grad-1: #0a0c0f;
  --bg-grad-2: #151920;
  --bg-grad-3: #1c2129;
  --bg-grad-4: #12161c;
  --bg-grad-5: #0a0c0f;

  /* Accent variants */
  --accent-gold-dark: #9aa3af;
  --accent-gold-light: #e2e8f0;

  /* Second accent */
  --accent-2: #d6dbe3; /* soft platinum */

  /* Neutral blacks / overlays */
  --black: #000000;
  --overlay-strong: rgba(0, 0, 0, 0.95);

  /* “Glass” / white overlays */
  --glass-1: rgba(241, 244, 248, 0.02);
  --glass-2: rgba(241, 244, 248, 0.03);
  --glass-3: rgba(241, 244, 248, 0.05);
  --glass-4: rgba(241, 244, 248, 0.06);
  --glass-5: rgba(241, 244, 248, 0.08);
  --white-border-soft: rgba(241, 244, 248, 0.05);
  --white-border: rgba(241, 244, 248, 0.1);

  /* Navbar scrolled background */
  --nav-scrolled-bg: rgba(14, 16, 19, 0.95);

  /* Glow / highlights */
  --glow-gold-weak: rgba(192, 198, 207, 0.03);
  --glow-gold: rgba(192, 198, 207, 0.14);
  --glow-gold-strong: rgba(192, 198, 207, 0.4);
  --glow-accent-2-weak: rgba(214, 219, 227, 0.03);

  /* Shadows */
  --shadow-1: 0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-2: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-3: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-4: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-5: -10px 0 30px rgba(0, 0, 0, 0.8);

  /* Status colors (admin) */
  --danger: #ef4444;
  --success: #22c55e;
  --disabled: #6b7280;
  --muted-2: #4b5563;

  /* Special pages */
  --error-bg-1: #161a20;
  --error-bg-2: #0a0c0f;

  /* Typography */
  --font-body: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
}

:root[data-theme="ivory"] {
  /* Base colors */
  --bg-dark: #0f0e0c;
  --bg-charcoal: #191613;
  --accent-gold: #c9b8a3; /* primary accent (warm stone / taupe) */
  --text-white: #fbf7f0;
  --text-muted: #b2a79c;
  --border-gold: rgba(201, 184, 163, 0.28);

  /* Gradient background colors (warm, rustig, geen blauw) */
  --bg-grad-1: #0b0a08;
  --bg-grad-2: #151210;
  --bg-grad-3: #1f1a16;
  --bg-grad-4: #120f0d;
  --bg-grad-5: #0b0a08;

  /* Accent variants */
  --accent-gold-dark: #a79682;
  --accent-gold-light: #e6dacb;

  /* Second accent */
  --accent-2: #efe5d6; /* soft ivory */

  /* Neutral blacks / overlays */
  --black: #000000;
  --overlay-strong: rgba(0, 0, 0, 0.95);

  /* “Glass” / white overlays */
  --glass-1: rgba(251, 247, 240, 0.02);
  --glass-2: rgba(251, 247, 240, 0.03);
  --glass-3: rgba(251, 247, 240, 0.05);
  --glass-4: rgba(251, 247, 240, 0.06);
  --glass-5: rgba(251, 247, 240, 0.08);
  --white-border-soft: rgba(251, 247, 240, 0.05);
  --white-border: rgba(251, 247, 240, 0.1);

  /* Navbar scrolled background */
  --nav-scrolled-bg: rgba(15, 14, 12, 0.95);

  /* Glow / highlights */
  --glow-gold-weak: rgba(201, 184, 163, 0.03);
  --glow-gold: rgba(201, 184, 163, 0.14);
  --glow-gold-strong: rgba(201, 184, 163, 0.38);
  --glow-accent-2-weak: rgba(239, 229, 214, 0.03);

  /* Shadows */
  --shadow-1: 0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-2: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-3: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-4: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-5: -10px 0 30px rgba(0, 0, 0, 0.8);

  /* Status colors (admin) */
  --danger: #ef4444;
  --success: #22c55e;
  --disabled: #8a817a;
  --muted-2: #5e564f;

  /* Special pages */
  --error-bg-1: #1b1714;
  --error-bg-2: #0b0a08;

  /* Typography */
  --font-body: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
}

:root[data-theme="green"] {
  /* Base */
  --bg-dark: #0b0f0d;
  --bg-charcoal: #101815;

  --accent-gold: #2fbf71; /* hergebruikt als primary accent (emerald) */
  --accent-gold-dark: #1f8a52;
  --accent-gold-light: #7cebb3;

  --text-white: #f3f2ee;
  --text-muted: #b7b3aa;
  --border-gold: rgba(47, 191, 113, 0.28);

  /* Gradients */
  --bg-grad-1: #070a09;
  --bg-grad-2: #0d1411;
  --bg-grad-3: #0f1b16;
  --bg-grad-4: #0b1210;
  --bg-grad-5: #070a09;

  /* Extra accents */
  --accent-2: #d6a85c; /* warm sand */
  --accent-3: #e07a5f; /* terracotta */
  --accent-4: #c7f9cc; /* mint highlight */

  /* Neutral */
  --black: #000000;
  --overlay-strong: rgba(0, 0, 0, 0.92);

  /* Glass */
  --glass-1: rgba(255, 255, 255, 0.02);
  --glass-2: rgba(255, 255, 255, 0.03);
  --glass-3: rgba(255, 255, 255, 0.05);
  --glass-4: rgba(255, 255, 255, 0.06);
  --glass-5: rgba(255, 255, 255, 0.08);
  --white-border-soft: rgba(255, 255, 255, 0.05);
  --white-border: rgba(255, 255, 255, 0.1);

  --nav-scrolled-bg: rgba(11, 15, 13, 0.94);

  /* Glow */
  --glow-gold-weak: rgba(47, 191, 113, 0.04);
  --glow-gold: rgba(47, 191, 113, 0.18);
  --glow-gold-strong: rgba(47, 191, 113, 0.55);
  --glow-accent-2-weak: rgba(214, 168, 92, 0.04);

  /* Shadows */
  --shadow-1: 0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-2: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-3: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-4: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-5: -10px 0 30px rgba(0, 0, 0, 0.8);

  /* Status */
  --danger: #ef4444;
  --success: #4ade80;
  --disabled: #888888;
  --muted-2: #555555;

  /* Special pages */
  --error-bg-1: #16201b;
  --error-bg-2: #070a09;

  /* Typography */
  --font-body: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
}

:root[data-theme="purple"] {
  /* Base colors (warm + vintage dark) */
  --bg-dark: #0f0d10;        /* near-black with a warm/purple undertone */
  --bg-charcoal: #171319;    /* deep plum charcoal */

  /* Primary accent (lavender) */
  --accent-gold: #966B9D;        /* Vintage Lavender */
  --accent-gold-dark: #7a5482;   /* deeper lavender */
  --accent-gold-light: #b08fbd;  /* lighter lavender */

  /* Text */
  --text-white: #FFF4EC;     /* Seashell */
  --text-muted: #E7CFBC;     /* Powder Petal */

  /* Borders */
  --border-gold: rgba(150, 107, 157, 0.28);

  /* Gradient background colors (subtle warm/lavender wash) */
  --bg-grad-1: #0f0d10;
  --bg-grad-2: #19131d;
  --bg-grad-3: #17101a;
  --bg-grad-4: #141116;
  --bg-grad-5: #0f0d10;

  /* Additional accents (from your palette) */
  --accent-2: #C98686; /* Dusty Rose */
  --accent-3: #F2B880; /* Light Caramel */
  --accent-4: #E7CFBC; /* Powder Petal */

  /* Neutral blacks / overlays */
  --black: #000000;
  --overlay-strong: rgba(10, 8, 12, 0.94);

  /* Glass overlays (warm, not icy) */
  --glass-1: rgba(255, 244, 236, 0.02);
  --glass-2: rgba(255, 244, 236, 0.03);
  --glass-3: rgba(255, 244, 236, 0.05);
  --glass-4: rgba(255, 244, 236, 0.06);
  --glass-5: rgba(255, 244, 236, 0.08);
  --white-border-soft: rgba(255, 244, 236, 0.06);
  --white-border: rgba(255, 244, 236, 0.12);

  /* Navbar scrolled background */
  --nav-scrolled-bg: rgba(15, 13, 16, 0.95);

  /* Glow / highlights (lavender + rose + caramel) */
  --glow-gold-weak: rgba(150, 107, 157, 0.04);
  --glow-gold: rgba(150, 107, 157, 0.18);
  --glow-gold-strong: rgba(150, 107, 157, 0.55);
  --glow-accent-2-weak: rgba(201, 134, 134, 0.05);

  /* Shadows */
  --shadow-1: 0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-2: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-3: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-4: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-5: -10px 0 30px rgba(0, 0, 0, 0.8);

  /* Status colors (laat ik staan) */
  --danger: #ef4444;
  --success: #4ade80;
  --disabled: #888888;
  --muted-2: #555555;

  /* Special pages */
  --error-bg-1: #19131d;
  --error-bg-2: #0f0d10;

  /* Typography */
  --font-body: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
}


html,
body {
  height: 100%;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(
    135deg,
    var(--bg-grad-1) 0%,
    var(--bg-grad-2) 25%,
    var(--bg-grad-3) 50%,
    var(--bg-grad-4) 75%,
    var(--bg-grad-5) 100%
  );
  color: var(--text-white);
  overflow-x: hidden;
  position: relative;
}

@view-transition { navigation: auto; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, var(--glow-gold-weak) 0%, transparent 30%),
    radial-gradient(circle at 80% 50%, var(--glow-accent-2-weak) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}

/* Navbar styling */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  padding: 2rem 5%;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 9999; transition: all 0.4s ease;
}
.navbar.scrolled {
  backdrop-filter: blur(20px);
  padding: 1.5rem 5%;
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(var(--nav-scrolled-blur));
  box-shadow: var(--shadow-1);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--accent-gold);
  font-style: italic; letter-spacing: 3px;
  text-shadow: 0 0 30px var(--glow-gold-strong);
  z-index: 10001; position: relative;
}
.nav-links {
  display: flex; gap: 3rem; list-style: none; align-items: center;
}
.nav-links a {
  color: var(--text-white); text-decoration: none;
  font-weight: 400; font-size: 0.9rem;
  letter-spacing: 1.5px; transition: all 0.3s ease;
  position: relative; text-transform: uppercase;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 50%;
  transform: translateX(-50%); width: 0; height: 1px;
  background: var(--accent-gold); transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-gold); }

/* Mobiel Menu componenten */
.mobile-menu-logo {
  display: none; position: absolute; top: 2rem; left: 2rem;
  font-family: 'Playfair Display', serif; font-size: 2.2rem;
  font-weight: 700; color: var(--accent-gold); font-style: italic;
  letter-spacing: 3px; line-height: 1;
}
.menu-close {
  display: none; position: absolute; top: 2rem; right: 2rem;
  font-size: 2.5rem; color: var(--accent-gold); cursor: pointer;
  transition: all 0.3s ease; line-height: 1;
}
.mobile-toggle {
  display: none; flex-direction: column; gap: 6px; cursor: pointer;
  z-index: 10002; position: relative; transition: opacity 0.3s ease;
}
.mobile-toggle span {
  width: 28px; height: 2px; background: var(--accent-gold); transition: all 0.3s ease;
}

/* Main Container & Scrollbar */
.main-container {
  width: 100%; height: 100%;
  overflow-y: auto; overflow-x: hidden;
  position: relative; z-index: 2; scroll-behavior: smooth;
  padding-top: 120px; 
}

.main-container::-webkit-scrollbar { width: 6px; }
.main-container::-webkit-scrollbar-track { background: rgba(26, 26, 26, 0.5); }
.main-container::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border-radius: 6px;
}
.main-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  box-shadow: 0 0 10px var(--glow-gold-strong);
}

/* =========================================
   HOME PAGINA STIJLEN (NIEUW)
   ========================================= */
.hero-section {
  min-height: calc(100vh - 120px);
  display: grid; grid-template-columns: 45% 55%;
  gap: 3rem; padding: 2rem 5% 3rem 5%;
  align-items: center;
}
.content-side {
  display: flex; flex-direction: column;
  justify-content: center; gap: 2rem; padding-right: 2rem;
}
.welcome-heading {
  font-family: 'Playfair Display', serif; font-size: 4.5rem;
  font-weight: 800; line-height: 1.1; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.portfolio-description {
  font-size: 1.15rem; line-height: 1.8; color: var(--text-muted);
  font-weight: 300; margin-bottom: 1.5rem; max-width: 500px;
}
.cta-button {
  align-self: flex-start; padding: 1.2rem 3rem;
  background: transparent; border: 2px solid var(--accent-gold);
  color: var(--accent-gold); font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.cta-button::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: -1;
}
.cta-button:hover::before { left: 0; }
.cta-button:hover {
  color: var(--bg-dark); box-shadow: 0 8px 30px var(--glow-gold-strong);
  transform: translateY(-2px);
}

/* Weather Widget */
.weather-widget {
  margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.weather-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-muted); margin-bottom: 0.8rem; font-weight: 500;
}
.weather-search { display: flex; gap: 0.5rem; max-width: 380px; }
.weather-input {
  flex: 1; padding: 0.85rem 1.2rem;
  background: var(--glass-2); 
  border: 1px solid var(--border-gold);
  color: var(--text-white); font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; outline: none; transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.weather-input::placeholder { color: rgba(168, 168, 168, 0.5); }
.weather-input:focus {
  border-color: var(--accent-gold); background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px var(--glow-gold);
}
.weather-btn {
  padding: 0.85rem 1.5rem; background: var(--glow-gold);
  border: 1px solid var(--accent-gold); color: var(--accent-gold);
  font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 0.8rem;
  letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s ease;
}
.weather-btn:hover {
  background: var(--accent-gold); color: var(--bg-dark);
  box-shadow: 0 4px 20px var(--glow-gold);
}
.weather-result {
  margin-top: 1rem; margin-bottom: 2rem; padding: 1rem;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-gold);
  border-radius: 4px; display: none; backdrop-filter: blur(10px);
  position: relative;
}
.weather-result.active { display: block; }
.weather-close {
  position: absolute; top: 0.5rem; right: 0.5rem; width: 24px; height: 24px;
  cursor: pointer; color: var(--text-muted); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; line-height: 1;
}
.weather-close:hover { color: var(--accent-gold); transform: rotate(90deg); }
.weather-info { display: flex; align-items: center; gap: 1rem; }
.weather-icon { font-size: 2.5rem; }
.weather-city {
  font-size: 1.1rem; font-weight: 600; color: var(--accent-gold);
  margin-bottom: 0.3rem;
}
.weather-stats { display: flex; gap: 1.5rem; font-size: 0.85rem; color: var(--text-muted); }
.weather-stat { display: flex; align-items: center; gap: 0.3rem; }
.weather-stat-label { font-weight: 500; color: var(--text-white); }

/* Image Side (Floating) */
.image-side {
  display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.featured-frame {
  position: relative; width: 100%; max-width: 650px; aspect-ratio: 4 / 3;
  padding: 1.5rem; background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: floatImage 6s ease-in-out infinite;
}
@keyframes floatImage {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}
.featured-image {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.image-caption {
  position: absolute; bottom: -2.5rem; left: 50%; transform: translateX(-50%);
  font-family: 'Playfair Display', serif; font-size: 0.9rem;
  color: var(--text-muted); font-style: italic; letter-spacing: 1px;
  white-space: nowrap;
}

/* =========================================
   OVER PAGINA STYLING
   ========================================= */
.about-section {
  display: grid; grid-template-columns: 40% 55%; 
  gap: 5%; padding: 4rem 10% 6rem 10%;
  align-items: flex-start; max-width: 1600px; margin: 0 auto;
}
.profile-frame-wrapper { position: relative; width: 100%; }
.profile-frame {
  position: relative; width: 100%; aspect-ratio: 1 / 1;
  padding: 1rem; background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.profile-image {
  width: 100%; height: 100%; object-fit: cover;
  display: block; filter: brightness(0.9);
}
.about-content { display: flex; flex-direction: column; gap: 1.5rem; }
.about-heading {
  font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700;
  color: var(--accent-gold); margin-bottom: 0.5rem; line-height: 1.1;
}
.about-intro { font-size: 1.1rem; line-height: 1.8; color: var(--text-white); }
.about-intro span { color: var(--accent-gold); font-weight: 500; }
.mobile-break { display: none; }
.about-description {
  font-size: 1rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 2rem;
}
.tabs-container { margin-top: 1rem; width: 100%; }
.tabs-header {
  display: flex; gap: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem; padding-bottom: 1rem;
}
.tab-btn {
  background: none; border: none; font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; position: relative; transition: all 0.3s ease;
  white-space: nowrap; padding: 0.5rem 0;
}
.tab-btn:hover { color: var(--text-white); }
.tab-btn.active { color: var(--accent-gold); }
.tab-btn.active::after {
  content: ''; position: absolute; bottom: -17px; left: 0;
  width: 100%; height: 2px; background: var(--accent-gold);
  box-shadow: 0 -2px 10px var(--glow-gold-strong);
}
.tab-pane { display: none; animation: fadeIn 0.5s ease; }
.tab-pane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.skill-item, .list-item { margin-bottom: 1.5rem; }
.item-title { font-size: 1.1rem; font-weight: 600; color: var(--text-white); margin-bottom: 0.3rem; display: block; }
.item-desc { font-size: 0.95rem; color: var(--text-muted); font-weight: 300; }

/* =========================================
   CONTACT PAGINA STYLING
   ========================================= */
.contact-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; padding: 4rem 10% 6rem 10%;
  max-width: 1600px; margin: 0 auto; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-heading {
  font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700;
  color: var(--accent-gold); line-height: 1.1; margin-bottom: 1rem;
}
.contact-intro { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); max-width: 500px; }
.info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1rem; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon { width: 24px; height: 24px; color: var(--accent-gold); flex-shrink: 0; margin-top: 3px; }
.info-text { color: var(--text-white); font-size: 1rem; line-height: 1.6; }
.info-text a { color: var(--text-white); text-decoration: none; transition: color 0.3s ease; }
.info-text a:hover { color: var(--accent-gold); }
.socials-container { margin-top: 2rem; }
.socials-label {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text-muted);
  margin-bottom: 1rem; display: block;
}
.social-icons { display: flex; gap: 1rem; }
.social-icon {
  width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-gold);
  border-radius: 8px; color: var(--text-white); transition: all 0.3s ease; cursor: pointer;
}
.social-icon svg { width: 22px; height: 22px; fill: currentColor; }
.social-icon:hover {
  background: var(--accent-gold); color: var(--bg-dark);
  transform: translateY(-3px); box-shadow: 0 5px 15px var(--glow-gold);
}
.contact-form-wrapper {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
  padding: 2.5rem; border: 1px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); position: relative;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted); margin-bottom: 0.5rem;
}
.form-input, .form-textarea, select.form-input {
  width: 100%; padding: 1rem;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white); font-family: 'Montserrat', sans-serif; font-size: 0.95rem;
  outline: none; transition: all 0.3s ease; border-radius: 0;
}
::placeholder { color: rgba(168, 168, 168, 0.6); opacity: 1; }
select.form-input:invalid { color: rgba(168, 168, 168, 0.6); }
select.form-input option {
  background: var(--bg-charcoal);
  color: var(--text-white);
}.form-input:focus, .form-textarea:focus {
  border-color: var(--accent-gold); background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px var(--glow-gold);
}
.form-textarea { min-height: 150px; resize: vertical; }
.submit-btn {
  width: 100%; padding: 1.2rem;
  background: transparent; border: 1px solid var(--accent-gold);
  color: var(--accent-gold); font-family: 'Montserrat', sans-serif;
  font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
  cursor: pointer; transition: all 0.3s ease;
}
.submit-btn:hover {
  background: var(--accent-gold); color: var(--bg-dark);
  box-shadow: 0 5px 20px var(--glow-gold);
}

/* --- GALERIJ & DETAIL STYLING --- */
.gallery-section, .detail-section { padding: 2rem 5% 6rem 5%; max-width: 1600px; margin: 0 auto; }
.detail-section { display: flex; flex-direction: column; align-items: center; max-width: 1200px; }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-heading, .detail-heading {
  font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700;
  color: var(--accent-gold); margin-bottom: 0.5rem;
}
.detail-heading { margin-bottom: 2rem; text-align: center; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; }
.gallery-card {
  background: var(--bg-charcoal); border: 1px solid var(--border-gold);
  overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; display: flex; flex-direction: column; cursor: pointer;
}
.gallery-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-color: var(--accent-gold); }
.card-image-wrapper { width: 100%; height: 250px; overflow: hidden; position: relative; }
.gallery-image {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-card:hover .gallery-image { transform: scale(1.1); }
.card-content {
  padding: 1.5rem; text-align: center; flex-grow: 1; display: flex;
  flex-direction: column; justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
}
.card-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text-white); margin-bottom: 0.5rem; }
.card-location {
  font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center;
  justify-content: center; gap: 0.4rem; text-decoration: none; transition: color 0.3s ease;
}
.card-location svg { width: 14px; height: 14px; fill: currentColor; }
.card-location:hover { color: var(--accent-gold); text-decoration: underline; }

/* Detail specifieke styles */
.main-image-wrapper {
  width: 100%; max-width: 900px; border: 1px solid var(--border-gold);
  background: var(--bg-charcoal); padding: 0.5rem; box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  margin-bottom: 2rem; overflow: hidden; cursor: pointer;
}
.main-image { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.main-image-wrapper:hover .main-image { transform: scale(1.02); }
.info-container { max-width: 900px; text-align: center; margin-bottom: 3rem; }
.location-tag {
  display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-muted);
  font-size: 1.1rem; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px;
}
.location-tag svg { width: 18px; height: 18px; fill: var(--accent-gold); }
.description-text { font-size: 1rem; line-height: 1.8; color: var(--text-white); margin-bottom: 2rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; width: 100%; }
.related-card {
  border: 1px solid rgba(255,255,255,0.1); aspect-ratio: 16 / 9;
  overflow: hidden; cursor: pointer; position: relative; transition: all 0.3s ease;
}
.related-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.related-card:hover { border-color: var(--accent-gold); box-shadow: 0 5px 20px rgba(212,175,55,0.2); }
.related-card:hover .related-image { transform: scale(1.1); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; z-index: 20000; top: 0; left: 0;
  width: 100%; height: 100%; 
  background-color: var(--overlay-strong);
  justify-content: center; align-items: center;
}
.lightbox-content {
  max-width: 90%; max-height: 90%; box-shadow: 0 0 30px var(--glow-gold);
  border: 2px solid var(--accent-gold); animation: zoomIn 0.3s ease;
}
@keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
.close-btn, .nav-btn {
  position: absolute; color: var(--accent-gold); font-size: 3rem; font-weight: bold;
  cursor: pointer; transition: color 0.3s ease, transform 0.2s ease;
  user-select: none; padding: 10px;
}
.close-btn:hover { color: var(--text-white); transform: scale(1.1); }
.nav-btn:hover { color: var(--text-white); transform: translateY(-50%) scale(1.1); }
.close-btn { top: 20px; right: 30px; z-index: 20002; }
.prev-btn { left: 30px; top: 50%; transform: translateY(-50%); z-index: 20001; }
.next-btn { right: 30px; top: 50%; transform: translateY(-50%); z-index: 20001; }

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
  .hero-section { grid-template-columns: 1fr; gap: 4rem; padding: 7rem 5% 3rem 5%; }
  .content-side { padding-right: 0; text-align: center; align-items: center; }
  .welcome-heading { font-size: 3.5rem; }
  .portfolio-description { max-width: 600px; }
  .weather-widget { align-items: center; display: flex; flex-direction: column; }
  .weather-search { max-width: 450px; }
  .image-side { order: -1; }
  .featured-frame { max-width: 550px; }
  .cta-button { align-self: center; }
}

@media (max-width: 968px) {
  .mobile-toggle { display: flex; }
  .mobile-menu-logo { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh;
    background: var(--bg-dark); flex-direction: column; justify-content: center;
    padding: 2rem; transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    gap: 2.5rem; box-shadow: -10px 0 30px rgba(0,0,0,0.8); z-index: 10005;
  }
  .nav-links.active { right: 0; }
  .menu-close { display: block; z-index: 10006; }

  /* Hero */
  .welcome-heading { font-size: 3rem; }
  .portfolio-description { font-size: 1.05rem; }

  /* Over */
  .about-section { grid-template-columns: 1fr; gap: 2rem; padding-top: 1rem; text-align: center; }
  .profile-frame-wrapper { max-width: 280px; margin: 0 auto; }
  .profile-frame { padding: 0.8rem; }
  .about-heading { font-size: 2.5rem; }
  .mobile-break { display: block; margin-bottom: 0.5rem; }
  .tabs-header { flex-direction: column; gap: 0; border-bottom: none; width: 100%; max-width: 400px; margin: 0 auto 2rem auto; }
  .tab-btn { width: 100%; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .tab-btn.active::after { bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; }
  .tab-pane { text-align: left; width: 100%; max-width: 400px; margin: 0 auto; background: rgba(255,255,255,0.02); padding: 1.5rem; border-radius: 8px; }

  /* Contact */
  .contact-section { grid-template-columns: 1fr; gap: 3rem; padding-top: 2rem; }
  .contact-heading { font-size: 2.5rem; text-align: center; }
  .contact-intro { text-align: center; margin: 0 auto; }
  .info-list { align-items: center; }
  .info-item { text-align: center; flex-direction: column; align-items: center; gap: 0.5rem; }
  .socials-container { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .email-break { display: block; margin-top: 5px; }

  /* Gallery/Detail */
  .gallery-heading, .detail-heading { font-size: 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  .description-text { font-size: 0.95rem; text-align: left; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .close-btn, .nav-btn { font-size: 2rem; }
  .prev-btn { left: 10px; } .next-btn { right: 10px; }
}

@media (max-width: 640px) {
  .navbar { padding: 1.5rem 4%; }
  .hero-section { padding: 6rem 4% 2rem 4%; gap: 3rem; }
  .logo { font-size: 1.8rem; }
  .welcome-heading { font-size: 2.5rem; }
  .portfolio-description { font-size: 1rem; }
  .cta-button { padding: 1rem 2rem; font-size: 0.85rem; width: 100%; text-align: center; }
  .weather-search { flex-direction: column; width: 100%; }
  .weather-btn { width: 100%; }
  .featured-frame { padding: 1rem; }
  .image-caption { font-size: 0.8rem; bottom: -2rem; }
  .about-heading, .contact-heading, .gallery-heading, .detail-heading { font-size: 2rem; }
  .contact-section { padding: 2rem 5% 4rem 5%; }
  .related-grid { grid-template-columns: 1fr; }
  .location-tag { font-size: 0.9rem; }
}

/* Videos pagina */
.video-card-content {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  text-align: center;
}

.video-embed-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: var(--black);
  border-bottom: 1px solid var(--border-gold);
}

.video-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.video-gallery-grid .gallery-card {
  flex: 0 1 calc(50% - 1rem); 
  width: 100%;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .video-gallery-grid .gallery-card {
    flex: 0 1 100%;
  }
}

/* =========================================
   SCROLL REVEAL ANIMATIE
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1); 
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   SIMPLE COPYRIGHT
   ========================================= */
.simple-copyright {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05); 
  margin-top: auto; 
}

/* =========================================
   404 ERROR PAGINA
   ========================================= */
.error-body {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0a 100%);
}

.error-container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  position: relative;
  z-index: 10;
}

.error-code {
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0;
  
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: floatError 6s ease-in-out infinite;
}

.error-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.error-text {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.error-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.error-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: 0 0 20px var(--glow-gold-strong);
  transform: translateY(-3px);
}

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

/* Responsive */
@media (max-width: 600px) {
  .error-code { font-size: 6rem; }
  .error-heading { font-size: 1.2rem; }
}

/* =========================================
   MAINTENANCE / OFFLINE PAGINA
   ========================================= */

.maintenance-body {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.maintenance-content {
  text-align: center;
  padding: 3rem;
  max-width: 600px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 
              0 0 20px var(--glow-gold);
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.maintenance-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.maintenance-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  animation: pulseGold 3s infinite ease-in-out;
}

.maintenance-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.maintenance-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.maintenance-footer {
  font-size: 0.8rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes pulseGold {
  0% { text-shadow: 0 0 0 rgba(212, 175, 55, 0); transform: scale(1); }
  50% { text-shadow: 0 0 20px var(--glow-gold-strong); transform: scale(1.05); }
  100% { text-shadow: 0 0 0 rgba(212, 175, 55, 0); transform: scale(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   ADMIN SPECIFIEKE STIJLEN
   ========================================= */

.login-section-admin {
    min-height: calc(100vh - 120px); 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
}

.login-card-admin {
    width: 100%;
    max-width: 500px;
    animation: fadeIn 0.8s ease-out;
}

.login-heading-admin {
    text-align: center;
    margin-bottom: 2rem;
}

.error-banner-admin {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

select.form-input-admin {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  padding-right: 2.5rem;
}

select.form-input-admin option {
  background-color: #1a1a1a; 
  color: #ffffff;
  padding: 10px;
}

.login-section-admin {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5%;
}

.contact-form-wrapper-admin {
  width: 100%;
  max-width: 600px; 
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
  padding: 3rem;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  position: relative;
}

.contact-heading-admin {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.form-group-admin { margin-bottom: 1.8rem; }

.form-label-admin {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.form-input-admin {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-input-admin:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px var(--glow-gold);
}

input[type="file"].form-input-admin {
  padding: 0.8rem;
  cursor: pointer;
  height: auto;
}

input[type="file"]::file-selector-button {
  background: var(--glow-gold);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 8px 16px;
  margin-right: 15px;
  border-radius: 0;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.form-check-admin.visual-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.form-check-admin.visual-disabled .form-check-label-admin {
    color: #888;
}

.form-check-admin {
    display: flex;        
    align-items: center;   
    gap: 15px;          
    margin-bottom: 1rem;
    cursor: pointer;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.form-check-admin:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.form-check-input-admin {
    -webkit-appearance: none; 
    appearance: none;
    
    background-color: transparent;
    margin: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent-gold);
    border-radius: 2px;
    cursor: pointer;
    
    display: grid;
    place-content: center;
    flex-shrink: 0; 
}

.form-check-input-admin::before {
    content: ""; 
    width: 10px;
    height: 10px;
    background-color: var(--accent-gold);
    transform: scale(0); 
    transition: 0.2s transform ease-in-out;
    box-shadow: 0 0 5px var(--accent-gold); 
}

.form-check-input-admin:checked::before {
    transform: scale(1); 
}

.form-check-input-admin::after {
    content: none;
}

.form-check-label-admin {
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    user-select: none;
}

.submit-btn-admin {
  width: 100%;
  padding: 1.2rem;
  background: var(--accent-gold); 
  border: 1px solid var(--accent-gold);
  color: var(--bg-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.submit-btn-admin:hover {
  background: transparent;
  color: var(--accent-gold);
  box-shadow: 0 5px 20px var(--glow-gold);
}

.link-btn-admin {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.link-btn-admin:hover { color: var(--accent-gold); text-decoration: underline; }

.success-banner-admin, .error-banner-admin {
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  text-align: center;
  border-radius: 2px;
}
.success-banner-admin {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid #4ade80;
  color: #4ade80;
}
.error-banner-admin {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

.image-preview-admin {
  margin-top: 1rem;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 1px solid var(--border-gold);
  display: none;
  background: #000;
}

.header.scroll-header {
  background: rgba(10, 10, 10, 0.98); 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--accent-gold); 
  padding-top: 0;
  padding-bottom: 0;
}

.button-container-admin {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.edit-about-btn {
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.edit-about-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px var(--glow-gold);
}

.grid-2-col-admin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .grid-2-col-admin {
        grid-template-columns: 1fr;
    }
}

.item-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.item-wrapper:hover {
  border-color: var(--glow-gold);
}

.delete-btn-admin {
  background: transparent;
  border: 1px solid var(--danger);
  color: var(--danger);
  padding: 0.8rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: inline-block;
}

.delete-btn-admin:hover {
  background: #ef4444;
  color: white;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.preview-btn {
  width: 100%;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;

  cursor: pointer;
  transition: all 0.3s ease;
}

.preview-btn-save {
  background: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  color: var(--bg-dark);

  font-weight: 700;
  font-size: 0.7rem;
}

.preview-btn-save:hover {
  background: transparent;
  color: var(--accent-gold);
  box-shadow: 0 5px 20px var(--glow-gold);
}

.preview-btn-cancel {
  background: transparent;
  border: 1px solid #ef4444;
  color: #ef4444;

  font-weight: 600;
  font-size: 0.7rem;
}

.preview-btn-cancel:hover {
  background: #ef4444;
  color: white;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.preview-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.add-btn-admin {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed var(--border-gold);
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.add-btn-admin:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.05);
}

.video-grid-admin {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  width: 100%;
}

.video-card-admin {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
  border: 1px solid var(--border-gold);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.video-card-admin:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.video-wrapper-admin {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

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

.top-action-btn {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  background: var(--accent-gold);
  color: var(--bg-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.top-action-btn:hover {
  background: transparent;
  color: var(--accent-gold);
  box-shadow: 0 0 15px var(--glow-gold);
  border: 1px solid var(--accent-gold);
}

.picture-grid-admin {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  width: 100%;
}

.picture-card-admin {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
  border: 1px solid var(--border-gold);
  padding: 0; 
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.picture-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-gold);
}

.picture-card-body {
  padding: 1.5rem;
}

.admin-action-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}








/* Scrollbar styling toepassen op de échte scroller: main-container */
.main-container {
  overflow-y: auto;        /* alleen als dit nog niet zo is */
  height: 100vh;           /* alleen als dit nog niet zo is */
}

/* Chrome / Edge / Safari */
.main-container::-webkit-scrollbar {
  width: 10px;
}

.main-container::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.06);
}

.main-container::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,0.35);
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0);
  background-clip: padding-box;
}

.main-container::-webkit-scrollbar-thumb:hover {
  background: rgba(212,175,55,0.55);
  border: 2px solid rgba(0,0,0,0);
  background-clip: padding-box;
}

/* Firefox */
.main-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,0.45) rgba(255,255,255,0.08);
}

/* =========================
   ADMIN: clicks fix (overlay)
   ========================= */

   .admin-body .main-container,
.admin-body .login-section-admin,
.admin-body .contact-form-wrapper,
.admin-body .login-card-admin,
.admin-body .gallery-section {
  position: relative;
  z-index: 2;
}

/* Navbar altijd boven alles */
.admin-body .navbar {
  position: relative;
  z-index: 50;
}

.admin-body .main-container::before,
.admin-body .main-container::after,
.admin-body .gallery-section::before,
.admin-body .gallery-section::after,
.admin-body .login-section-admin::before,
.admin-body .login-section-admin::after {
  pointer-events: none !important;
}


/* Rotatie van een afbeelding */
.rotating {
  display: inline-block;
  animation: jurRotate 12s linear infinite;
}

@keyframes jurRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
