/*
Theme Name: Hall of Wheels - Modern Luxe
Theme URI: https://hallofwheels.nl/
Author: Hall of Wheels
Description: Een complete WordPress starter theme voor Hall of Wheels: dark/luxe automotive event design met alle benodigde pagina's, regels, tickets, aanmelding, standhouders, sponsoring en legal basispagina's.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: hall-of-wheels
*/

:root {
  --how-black: #070808;
  --how-charcoal: #111315;
  --how-dark: #17191c;
  --how-panel: #1e2024;
  --how-panel-2: #24262b;
  --how-offwhite: #f1ede4;
  --how-muted: #bdb6aa;
  --how-soft: #e6ded2;
  --how-gold: #c8a66a;
  --how-gold-2: #a9884f;
  --how-line: rgba(255,255,255,.10);
  --how-line-dark: rgba(0,0,0,.10);
  --how-radius: 18px;
  --how-shadow: 0 24px 70px rgba(0,0,0,.45);
  --how-max: 1180px;
  --how-header-height: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--how-offwhite);
  background: var(--how-black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.admin-bar .site-header { top: 32px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--how-gold);
  color: #111;
  z-index: 9999;
}

.container {
  width: min(calc(100% - 40px), var(--how-max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--how-header-height);
  background: rgba(7,8,8,.78);
  border-bottom: 1px solid var(--how-line);
  backdrop-filter: blur(14px);
}
.header-inner {
  height: var(--how-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--how-gold);
  border: 1px solid rgba(200,166,106,.55);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(200,166,106,.18), rgba(255,255,255,.02));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  font-weight: 900;
  letter-spacing: -1px;
}
.brand-text { display: grid; gap: 0; }
.brand-title {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand-subtitle {
  color: var(--how-gold);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: var(--how-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--how-offwhite); background: rgba(255,255,255,.05); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--how-line);
  border-radius: 99px;
  background: transparent;
  color: var(--how-offwhite);
  cursor: pointer;
}
.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: auto;
  content: "";
  position: relative;
}
.mobile-toggle span::before { position: absolute; top: -6px; }
.mobile-toggle span::after { position: absolute; top: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--how-gold); color: #100d08; }
.btn-primary:hover { background: #d6b775; }
.btn-secondary { color: var(--how-offwhite); border-color: var(--how-line); background: rgba(255,255,255,.05); }
.btn-secondary:hover { border-color: var(--how-gold); color: var(--how-gold); }
.btn-dark { background: var(--how-black); color: var(--how-offwhite); }
.btn-dark:hover { background: #000; }

.hero {
  position: relative;
  min-height: calc(100svh - var(--how-header-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--how-line);
  background:
    linear-gradient(90deg, rgba(7,8,8,.94) 0%, rgba(7,8,8,.66) 44%, rgba(7,8,8,.22) 100%),
    radial-gradient(circle at 72% 42%, rgba(200,166,106,.30), transparent 27%),
    linear-gradient(135deg, #0a0b0d 0%, #1a1d21 52%, #080808 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  opacity: .28;
}
.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 8%;
  width: min(780px, 70vw);
  aspect-ratio: 2.6 / 1;
  border-radius: 52% 48% 36% 44%;
  background:
    radial-gradient(ellipse at 24% 82%, rgba(0,0,0,.98) 0 11%, transparent 12%),
    radial-gradient(ellipse at 78% 82%, rgba(0,0,0,.98) 0 11%, transparent 12%),
    linear-gradient(8deg, transparent 0 42%, rgba(200,166,106,.18) 43% 52%, transparent 53%),
    linear-gradient(0deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    linear-gradient(130deg, rgba(255,255,255,.14), rgba(255,255,255,.02));
  filter: blur(.1px);
  box-shadow: 0 45px 90px rgba(0,0,0,.75);
  opacity: .85;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 90px 0 74px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--how-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}
.hero-title,
.section-title,
.page-title,
.kicker-title {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: .035em;
  line-height: .94;
  margin: 0;
}
.hero-title {
  max-width: 800px;
  margin-top: 20px;
  font-size: clamp(64px, 12vw, 150px);
}
.hero-title span { color: var(--how-gold); }
.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--how-soft);
  font-size: clamp(18px, 2vw, 24px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 64px;
  background: var(--how-line);
  border: 1px solid var(--how-line);
}
.hero-meta-item {
  padding: 22px;
  background: rgba(10,11,13,.82);
}
.hero-meta-label {
  color: var(--how-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-meta-value {
  display: block;
  margin-top: 6px;
  color: var(--how-offwhite);
  font-weight: 850;
}

.section { padding: 96px 0; position: relative; }
.section-light { background: var(--how-offwhite); color: #171717; }
.section-dark { background: var(--how-black); }
.section-charcoal { background: var(--how-charcoal); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}
.section-title { font-size: clamp(42px, 6vw, 82px); }
.section-title .muted { color: var(--how-gold); }
.section-intro { max-width: 620px; color: var(--how-muted); margin: 12px 0 0; }
.section-light .section-intro { color: #5f5a53; }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  border: 1px solid var(--how-line);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  padding: 28px;
  min-height: 100%;
}
.section-light .card {
  border-color: rgba(0,0,0,.12);
  background: #fffaf0;
}
.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--how-gold);
  border: 1px solid rgba(200,166,106,.55);
  border-radius: 50%;
}
.card h3 { margin: 0 0 8px; font-size: 18px; text-transform: uppercase; letter-spacing: .08em; }
.card p { margin: 0; color: var(--how-muted); }
.section-light .card p { color: #5f5a53; }

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 38px;
  align-items: center;
}
.photo-card {
  min-height: 420px;
  border: 1px solid var(--how-line);
  background:
    linear-gradient(180deg, rgba(7,8,8,.12), rgba(7,8,8,.68)),
    radial-gradient(circle at 28% 30%, rgba(200,166,106,.34), transparent 22%),
    linear-gradient(135deg, #22252a, #070808);
  box-shadow: var(--how-shadow);
  position: relative;
  overflow: hidden;
}
.photo-card::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(200,166,106,.25);
  transform: skewX(-8deg);
}
.photo-card::after {
  content: "Vervang dit blok door eigen auto/eventfoto";
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.text-block p { color: var(--how-muted); margin: 16px 0 0; }
.section-light .text-block p { color: #5f5a53; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--how-line);
  background: var(--how-line);
  margin-top: 30px;
}
.stat { background: rgba(255,255,255,.04); padding: 24px; }
.stat strong { display: block; font-size: 34px; line-height: 1; color: var(--how-gold); }
.stat span { display: block; margin-top: 8px; color: var(--how-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.timeline { counter-reset: step; display: grid; gap: 14px; }
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: start;
  border: 1px solid var(--how-line);
  background: rgba(255,255,255,.035);
  padding: 22px;
}
.timeline-time { color: var(--how-gold); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.timeline-item h3 { margin: 0 0 6px; text-transform: uppercase; letter-spacing: .06em; }
.timeline-item p { margin: 0; color: var(--how-muted); }

.vehicle-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.vehicle-card { border: 1px solid rgba(0,0,0,.12); background: white; color: #171717; }
.vehicle-media {
  min-height: 210px;
  background:
    radial-gradient(circle at 62% 54%, rgba(200,166,106,.24), transparent 25%),
    linear-gradient(135deg, #2b2e33, #111315 55%, #050505);
  position: relative;
  overflow: hidden;
}
.vehicle-media::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 10%;
  bottom: 26%;
  height: 34%;
  border-radius: 60% 40% 34% 30%;
  background: linear-gradient(120deg, rgba(255,255,255,.18), rgba(255,255,255,.03));
  box-shadow: 0 20px 45px rgba(0,0,0,.75);
}
.vehicle-body { padding: 20px; }
.vehicle-body h3 { margin: 0 0 4px; text-transform: uppercase; letter-spacing: .06em; }
.vehicle-body p { margin: 0; color: #5f5a53; }

.price-card {
  border: 1px solid var(--how-line);
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  padding: 30px;
  display: grid;
  gap: 14px;
}
.price-card.featured { border-color: rgba(200,166,106,.75); box-shadow: inset 0 0 0 1px rgba(200,166,106,.25); }
.price-label { color: var(--how-gold); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 900; }
.price-card h3 { margin: 0; font-size: 24px; text-transform: uppercase; letter-spacing: .06em; }
.price { font-size: 46px; line-height: 1; font-weight: 900; }
.price small { font-size: 14px; color: var(--how-muted); font-weight: 700; }
.checklist { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; color: var(--how-muted); }
.checklist li::before { content: "✓"; color: var(--how-gold); margin-right: 9px; }

.form-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: start;
}
.form-card {
  border: 1px solid var(--how-line);
  background: rgba(255,255,255,.04);
  padding: 28px;
}
.form-card input, .form-card textarea, .form-card select,
.how-form input, .how-form textarea, .how-form select {
  width: 100%;
  margin: 0 0 12px;
  padding: 14px 14px;
  color: var(--how-offwhite);
  background: rgba(255,255,255,.055);
  border: 1px solid var(--how-line);
  border-radius: 0;
}
.form-card textarea, .how-form textarea { min-height: 150px; resize: vertical; }
.form-card label, .how-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--how-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.page-hero {
  padding: 86px 0 46px;
  background:
    linear-gradient(90deg, rgba(7,8,8,.94), rgba(7,8,8,.72)),
    radial-gradient(circle at 76% 24%, rgba(200,166,106,.25), transparent 28%),
    #101113;
  border-bottom: 1px solid var(--how-line);
}
.page-title { font-size: clamp(54px, 9vw, 120px); }
.page-content { padding: 70px 0 95px; }
.wp-content { max-width: 920px; }
.wp-content h2 { font-size: 38px; line-height: 1.05; text-transform: uppercase; letter-spacing: .05em; margin-top: 44px; }
.wp-content h3 { text-transform: uppercase; letter-spacing: .06em; }
.wp-content p, .wp-content li { color: var(--how-muted); }
.wp-content a { color: var(--how-gold); text-decoration: underline; text-underline-offset: 3px; }
.wp-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.wp-content th, .wp-content td { border: 1px solid var(--how-line); padding: 14px; text-align: left; }
.wp-content th { color: var(--how-gold); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }

.cta-band {
  padding: 74px 0;
  background:
    linear-gradient(90deg, rgba(7,8,8,.92), rgba(7,8,8,.82)),
    radial-gradient(circle at 82% 50%, rgba(200,166,106,.24), transparent 24%),
    #101113;
  border-top: 1px solid var(--how-line);
  border-bottom: 1px solid var(--how-line);
}
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta-inner h2 { margin: 0; font-size: clamp(34px, 5vw, 72px); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; text-transform: uppercase; letter-spacing: .04em; line-height: .96; }
.cta-inner p { margin: 12px 0 0; max-width: 640px; color: var(--how-muted); }

.site-footer {
  background: #050505;
  border-top: 1px solid var(--how-line);
  padding: 58px 0 26px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr .9fr; gap: 34px; }
.footer-title { color: var(--how-gold); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 900; margin-bottom: 12px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-links a, .footer-text { color: var(--how-muted); }
.footer-links a:hover { color: var(--how-gold); }
.footer-bottom { margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--how-line); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.48); font-size: 13px; }

.ticket-embed {
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(200,166,106,.55);
  background: rgba(255,255,255,.035);
  padding: 30px;
  text-align: center;
}
.ticket-embed code { display: block; margin-top: 12px; color: var(--how-gold); white-space: normal; }
.notice {
  border-left: 4px solid var(--how-gold);
  background: rgba(200,166,106,.10);
  padding: 16px 18px;
  color: var(--how-soft);
}

@media (max-width: 980px) {
  .nav-menu {
    position: fixed;
    inset: var(--how-header-height) 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 20px 22px;
    background: rgba(7,8,8,.96);
    border-bottom: 1px solid var(--how-line);
  }
  .nav-menu.is-open { display: grid; }
  .nav-menu a { padding: 14px 0; }
  .mobile-toggle { display: inline-grid; place-items: center; }
  .header-actions .btn { display: none; }
  .hero-meta, .stat-row, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .vehicle-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .form-wrap { grid-template-columns: 1fr; }
  .cta-inner { display: grid; }
}
@media (max-width: 640px) {
  :root { --how-header-height: 76px; }
  body.admin-bar .site-header { top: 0; }
  .container { width: min(calc(100% - 28px), var(--how-max)); }
  .hero-inner { padding: 70px 0 48px; }
  .hero-title { font-size: clamp(54px, 18vw, 84px); }
  .hero-meta, .stat-row, .grid-2, .grid-3, .grid-4, .vehicle-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section-head { display: grid; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .footer-bottom { display: grid; }
  .brand-title { font-size: 16px; }
  .brand-subtitle { display: none; }
}


/* Hall of Wheels content helpers */
.wp-content .notice { margin: 24px 0; }
.wp-content .rule-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin: 28px 0; }
.wp-content .rule-card { border: 1px solid var(--how-line); background: rgba(255,255,255,.035); padding: 22px; }
.wp-content .rule-card strong { color: var(--how-gold); text-transform: uppercase; letter-spacing: .08em; }
.important-strip { border-top: 1px solid var(--how-line); border-bottom: 1px solid var(--how-line); background: linear-gradient(90deg, rgba(200,166,106,.14), rgba(255,255,255,.025)); }
.important-strip .grid { align-items: stretch; }
.important-item { padding: 22px; border: 1px solid rgba(200,166,106,.25); background: rgba(7,8,8,.55); }
.important-item strong { display: block; color: var(--how-gold); text-transform: uppercase; letter-spacing: .10em; font-size: 12px; margin-bottom: 6px; }
.important-item span { color: var(--how-soft); }
@media (max-width: 640px) { .wp-content .rule-grid { grid-template-columns: 1fr; } }
