:root{
  --bg: #201E1F;
  --bg-2: #2A2627;        /* iets lichter voor nav/sections */
  --surface: rgba(255,255,255,.06);   /* glass card */
  --surface-2: rgba(255,255,255,.09);

  --text: #FFFFFF;
  --muted: rgba(255,255,255,.72);

  --red: #A40606;         /* brand */
  --green: #5B9279;       /* secondary accent */
  --gold: #B88B4A;        /* premium CTA */

  --border: rgba(255,255,255,.12);
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.35);

  --radius: 16px;
  --radius-lg: 22px;
  --focus: 0 0 0 3px rgba(184,139,74,.25);
}

*{ box-sizing:border-box; }
html,body{ height:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans";
  color: var(--text);

  /* Luxe gradient achtergrond met jouw kleuren */
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(164, 6, 6, .22), transparent 60%),
    radial-gradient(900px 520px at 82% 18%, rgba(184, 139, 74, .20), transparent 62%),
    radial-gradient(900px 520px at 70% 78%, rgba(91, 146, 121, .16), transparent 60%),
    linear-gradient(180deg, #151314 0%, #201E1F 35%, #1B1D1C 70%, #151314 100%);
  background-attachment: fixed;
}



.container{ width:min(1200px, 92%); margin:0 auto; }

a{ color: inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

section{ margin-bottom:64px; }

/* Buttons (globaal) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.95rem 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  color: var(--text);
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  transition: transform .15s ease, border-color .2s ease, filter .2s ease;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(184,139,74,.35); }
.btn:active{ transform: translateY(0); }

/* Premium CTA variant (goud) */
.btn--cta{
  background: linear-gradient(180deg, var(--gold), #A97F43);
  color: #201E1F;
  border-color: rgba(184,139,74,.6);
}

.hover{ transition: .2s; }
.hover:hover{
  transform: translateY(-2px); 
  border-color: rgba(184,139,74,.35);
}
html, body{
  height: 100%;
}

body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content{
  flex: 1;
}


