/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

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

:root {
  --black:        #080808;
  --dark:         #0f0f0f;
  --dark2:        #141414;
  --card:         #181818;
  --card2:        #1e1e1e;
  --border:       #272727;
  --border2:      #333333;
  --white:        #ffffff;
  --off-white:    #e8e8e8;
  --muted:        #888888;
  --muted2:       #666666;
  --accent:       #c9a84c;
  --accent-light: #e0c06a;
  --accent-dim:   rgba(201,168,76,0.12);
  --accent-glow:  rgba(201,168,76,0.25);
  --font-head:    'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       6px;
  --radius-lg:    10px;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.7);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--white);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section     { padding: 5rem 0; }
.section--sm { padding: 2.5rem 0; }

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, #111111 0%, #0d0d0d 100%);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 1px 32px rgba(0,0,0,0.6);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 180px;
  gap: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  flex-shrink: 0;
  align-self: center;
}

.nav__logo img {
  height: 164px;
  width: auto;
  filter: drop-shadow(0 2px 12px rgba(201,168,76,0.2));
  transition: filter 0.3s;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--border2);
}

.nav__logo-text .brand-name {
  font-family: var(--font-head);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
}

.nav__logo-text .brand-url {
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: lowercase;
}

.nav__logo:hover img {
  filter: drop-shadow(0 2px 20px rgba(201,168,76,0.4));
}


.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  align-self: center;
}

/* Auth-items standaard verborgen, zichtbaar via html.ingelogd */
.nav-item-auth   { display: none; }
.nav-item-guest  { display: list-item; }
html.ingelogd .nav-item-auth  { display: list-item; }
html.ingelogd .nav-item-guest { display: none; }

.nav__links a {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  letter-spacing: 1.5px;
  transition: color 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.nav__links a:hover {
  color: var(--white);
  background: none;
}

.nav__links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav__links a.active {
  color: var(--white);
  background: none;
  font-weight: 600;
}

.nav__links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav__cta {
  background: transparent !important;
  color: var(--accent) !important;
  font-weight: 600 !important;
  margin-left: 0.75rem;
  letter-spacing: 1.5px;
  border-radius: var(--radius) !important;
  padding: 0.45rem 1.1rem !important;
  border: 1px solid var(--accent) !important;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover,
.nav__cta.active {
  background: var(--accent-dim) !important;
  color: var(--accent-light) !important;
  border-color: var(--accent-light) !important;
}

.nav__cta.nav__cta--danger {
  background: transparent !important;
  color: #e05555 !important;
  border: 1px solid #e05555 !important;
}
.nav__cta.nav__cta--danger:hover {
  background: rgba(224,85,85,0.1) !important;
  color: #ff7070 !important;
  border-color: #ff7070 !important;
}

/* hamburger */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero__content { flex: 1; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2rem;
  background: var(--accent-dim);
}

.hero__title {
  margin-bottom: 1.75rem;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__title span {
  color: var(--accent);
  position: relative;
}

.hero__lead {
  font-size: 1.05rem;
  color: #aaa;
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.8;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__image {
  flex-shrink: 0;
  width: 280px;
  opacity: 0.9;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.15));
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(201,168,76,0.25);
}
.btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--off-white);
  border-color: var(--border2);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.btn--ghost {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
  padding-left: 0;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}
.btn--ghost:hover { color: var(--white); }

/* ===== DIVIDER ===== */
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 1.25rem 0 1.75rem;
  border-radius: 2px;
}

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 3rem; }
.section-header p { color: var(--muted); max-width: 620px; font-size: 1.05rem; line-height: 1.8; }

/* ===== TILES GRID ===== */
.tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tile {
  background: var(--card);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--off-white);
  transition: background 0.25s, transform 0.2s;
  cursor: pointer;
  min-height: 120px;
  position: relative;
}

.tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.tile:hover {
  background: var(--card2);
  color: var(--white);
}

.tile:hover::after {
  transform: scaleX(1);
}

.tile__icon {
  font-size: 1.2rem;
  line-height: 1;
  color: var(--accent);
  width: 1.5rem;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

.tile:hover .tile__icon {
  opacity: 1;
  transform: scale(1.1);
}

.tile__arrow i { font-size: 0.65rem; }

.tile__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.tile__arrow {
  margin-top: auto;
  font-size: 0.7rem;
  color: var(--muted2);
  transition: color 0.2s, transform 0.2s;
}

.tile:hover .tile__arrow {
  color: var(--accent);
  transform: translateX(3px);
}

/* ===== CALL TO ACTION BAR ===== */
.cta-bar {
  background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.cta-bar h2 { margin-bottom: 0.5rem; }
.cta-bar p { color: var(--muted); margin: 0; font-size: 1rem; }

.cta-bar__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ===== INFO BLOCK ===== */
.info-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}

.info-block h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* ===== CONTENT / PAGE HERO ===== */
.page-hero {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3rem;
}

.page-hero .eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.content-body { max-width: 780px; }
.content-body h2 { margin: 2.5rem 0 1rem; color: var(--accent); font-size: 1.6rem; }
.content-body h3 { margin: 1.75rem 0 0.75rem; color: var(--white); }

.content-body p { color: #bbb; font-size: 1.02rem; line-height: 1.85; }

.content-body ul.styled-list {
  list-style: none;
  margin: 1.25rem 0;
}

.content-body ul.styled-list li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  color: #ccc;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.content-body ul.styled-list li:last-child { border-bottom: none; }

.content-body ul.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

blockquote {
  border-left: 3px solid var(--accent);
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  background: var(--card);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
  color: #bbb;
  font-style: italic;
  line-height: 1.85;
}

/* ===== IBAN / STEUN ===== */
.iban-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 540px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.iban-card h2 { margin-bottom: 0.5rem; }
.iban-card p { color: var(--muted); margin-bottom: 1.5rem; }

.iban-box {
  background: var(--black);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  box-shadow: inset 0 0 20px rgba(201,168,76,0.04);
}

.iban-box span {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
  color: var(--white);
}

.copy-btn {
  background: var(--card2);
  border: 1px solid var(--border2);
  color: var(--off-white);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.copy-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

.iban-name {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.iban-note {
  font-size: 0.8rem;
  color: var(--muted2);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.2s;
}

.contact-item:hover { border-color: var(--border2); }
.contact-item h3 { color: var(--accent); margin-bottom: 0.75rem; font-size: 1.1rem; }
.contact-item p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand p {
  color: var(--muted2);
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.8;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted2);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.footer__col ul li { margin-bottom: 0.6rem; }

.footer__col ul li a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__col ul li a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  color: var(--muted2);
  font-size: 0.78rem;
  margin: 0;
  letter-spacing: 0.25px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .nav { height: 110px; }
  .nav__logo img { height: 90px; }
}

@media (max-width: 700px) {
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 110px;
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.125rem;
  }
  .nav__links.open { display: flex; opacity: 1; }
  .nav__links a { padding: 0.75rem 1rem; text-align: left; }
  .nav__toggle { display: flex; }
  .cta-bar { flex-direction: column; text-align: center; }
  .cta-bar__actions { justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; width: 100%; }
  .iban-card { padding: 2rem 1.5rem; }
  .cta-bar { padding: 2rem; }
  .nav { height: 90px; }
  .nav__logo img { height: 72px; }
  .nav__logo-text { display: none; }
}
