/* ============================================================
   CSS Variabelen – Boksgala 2026
============================================================ */
:root {
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-card:   #1a1a1a;
  --dark-mid:    #222222;
  --gold:        #C9A84C;
  --gold-bright: #F5A623;
  --gold-dark:   #8B6914;
  --gold-glow:   rgba(201, 168, 76, 0.3);
  --bronze:      #CD7F32;
  --silver:      #C0C0C0;
  --white:       #FFFFFF;
  --gray:        #888888;
}

/* ============================================================
   Base
============================================================ */
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
}

/* ============================================================
   Utility
============================================================ */
.text-gold        { color: var(--gold) !important; }
.text-gold-bright { color: var(--gold-bright) !important; }

a.text-gold {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
a.text-gold:hover {
  color: var(--gold-bright) !important;
  text-decoration-color: var(--gold-bright);
}

/* ============================================================
   Buttons
============================================================ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-bright) 100%);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: none;
  transition: all 0.3s ease;
}
.btn-gold:hover, .btn-gold:focus {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}
.btn-outline-gold:hover, .btn-outline-gold:focus {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-outline-bronze {
  background: transparent;
  color: var(--bronze);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 2px solid var(--bronze);
  transition: all 0.3s ease;
}
.btn-outline-bronze:hover {
  background: var(--bronze);
  color: var(--white);
}

.btn-outline-silver {
  background: transparent;
  color: var(--silver);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 2px solid var(--silver);
  transition: all 0.3s ease;
}
.btn-outline-silver:hover {
  background: var(--silver);
  color: var(--black);
}

/* ============================================================
   Gold Divider
============================================================ */
.gold-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.5;
}

/* ============================================================
   Section Backgrounds
============================================================ */
.section-dark  { background-color: var(--dark); }
.section-black { background-color: var(--black); }

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}

.title-underline {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  border-radius: 2px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
}

/* ============================================================
   Reserveren subsectie
============================================================ */
.reserveren-box {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.reserveren-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.reserveren-box p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
}

/* ============================================================
   Scroll Animation
============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
============================================================ */
#mainNav {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  padding: 0.8rem 0;
  z-index: 1050;
}
#mainNav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  padding: 0.5rem 0;
}

#mainNav .nav-link {
  font-family: 'Oswald', sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  position: relative;
  transition: color 0.25s;
}
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-bright);
  transition: width 0.3s ease;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--gold-bright);
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
  width: 70%;
}

.nav-logo {
  height: 62px;
  transition: filter 0.25s;
}

#mainNav .navbar-toggler {
  border-color: rgba(201, 168, 76, 0.5);
  padding: 0.3rem 0.6rem;
}
#mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C9A84C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile nav dropdown */
@media (max-width: 991.98px) {
  #mainNav .navbar-collapse {
    background: rgba(10, 10, 10, 0.97);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
  }
  /* Underline-indicator werkt niet goed verticaal — kleurverandering volstaat */
  #mainNav .nav-link::after {
    display: none;
  }
  #mainNav .nav-link.active {
    color: var(--gold-bright);
    padding-left: 1.1rem;
    border-left: 2px solid var(--gold);
  }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('hero.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.50) 38%,
    rgba(0,0,0,0.55) 62%,
    rgba(0,0,0,0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.hero-logo {
  height: 170px;
  filter: drop-shadow(0 0 18px rgba(201, 168, 76, 0.45));
}

.hero-logo-divider {
  width: 2px;
  height: 130px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.hero-hosted {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  background: linear-gradient(160deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.hero-year {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.35em;
  margin-top: -0.25rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.hero-date-badge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.5);
  padding: 0.65rem 1.6rem;
  margin-top: 1.25rem;
  border-radius: 2px;
}

.hero-cta {
  padding-bottom: 1rem;
}
.hero-cta .btn {
  min-width: 195px;
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* Pulse animation on primary CTA */
@keyframes pulse-gold {
  0%   { box-shadow: 0 0 0 0 rgba(245, 167, 35, 0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(245, 167, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 167, 35, 0); }
}
.hero-cta .btn-gold {
  animation: pulse-gold 2.8s infinite;
}

.hero-scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.6rem;
  z-index: 1;
  text-decoration: none;
  animation: bounce 2s infinite;
  transition: color 0.25s;
}
.hero-scroll-down:hover {
  color: var(--gold-bright);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   EVENT DETAILS
============================================================ */
.event-text {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  margin-bottom: 1.1rem;
  font-size: 0.97rem;
}

.event-usp-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.event-usp-list li {
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.event-usp-list li:last-child { border-bottom: none; }

.highlight-card {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 4px;
}

.highlight-icon {
  font-size: 2.4rem;
  margin-bottom: 0.85rem;
  line-height: 1;
  color: var(--gold);
}

.highlight-card h3 {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

/* ============================================================
   TICKETS
============================================================ */
.ticket-card {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.ticket-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 28px var(--gold-glow);
  transform: translateY(-5px);
}

.ticket-card.ticket-featured {
  border: 2px solid var(--gold);
  box-shadow: 0 0 35px var(--gold-glow);
}

.ticket-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.22rem 1.1rem;
  border-radius: 2px;
  white-space: nowrap;
}

.ticket-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  margin-bottom: 1rem;
}

.ticket-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.ticket-name {
  color: var(--gold);
  font-size: 1.45rem;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

.ticket-body { flex: 1; }

.ticket-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.82);
}
.ticket-features li {
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.ticket-features li:last-child { border-bottom: none; }

.ticket-prices {
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding-top: 0.75rem;
}
.ticket-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}
.price-label { color: var(--gray); font-size: 0.84rem; }
.price-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  color: var(--gold-bright);
}

.ticket-main-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  color: var(--gold-bright);
  text-align: center;
  margin-bottom: 0.75rem;
}

.ticket-footer { margin-top: 1.25rem; }

/* ============================================================
   SPONSORING
============================================================ */
.sponsor-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.sponsor-card:hover {
  transform: translateY(-5px);
}

.sponsor-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.22rem 1.1rem;
  border-radius: 2px;
  white-space: nowrap;
}

.sponsor-icon {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.sponsor-tier {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.2rem;
}

.sponsor-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.sponsor-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.82);
  flex: 1;
}
.sponsor-features li {
  padding: 0.32rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.sponsor-features li:last-child { border-bottom: none; }

/* Tier-specifieke kleuren */
.sponsor-friend { border-color: rgba(201, 168, 76, 0.25); }
.sponsor-friend:hover { box-shadow: 0 0 22px rgba(201, 168, 76, 0.18); }
.sponsor-friend .sponsor-tier  { color: var(--gold); }
.sponsor-friend .sponsor-price { color: var(--gold); }

.sponsor-bronze { border-color: rgba(205, 127, 50, 0.35); }
.sponsor-bronze:hover { box-shadow: 0 0 22px rgba(205, 127, 50, 0.2); }
.sponsor-bronze .sponsor-tier  { color: var(--bronze); }
.sponsor-bronze .sponsor-price { color: var(--bronze); }
.sponsor-bronze .sponsor-features li i { color: var(--bronze); }

.sponsor-silver { border-color: rgba(192, 192, 192, 0.35); }
.sponsor-silver:hover { box-shadow: 0 0 22px rgba(192, 192, 192, 0.18); }
.sponsor-silver .sponsor-tier  { color: var(--silver); }
.sponsor-silver .sponsor-price { color: var(--silver); }
.sponsor-silver .sponsor-features li i { color: var(--silver); }

.sponsor-gold {
  border: 2px solid var(--gold);
  box-shadow: 0 0 35px var(--gold-glow);
}
.sponsor-gold:hover { box-shadow: 0 0 45px rgba(201, 168, 76, 0.45); }
.sponsor-gold .sponsor-tier  { color: var(--gold-bright); }
.sponsor-gold .sponsor-price { color: var(--gold-bright); }
.sponsor-gold .sponsor-features li i { color: var(--gold); }

/* ============================================================
   PRAKTISCHE INFO
============================================================ */
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}

.info-content h3 {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.info-content p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.map-container {
  border: 2px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  overflow: hidden;
}
.map-container iframe { display: block; }

/* ============================================================
   CONTACT
============================================================ */
.contact-org {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 4px;
  padding: 1.5rem;
}

.contact-link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.25s;
  font-size: 0.95rem;
}
.contact-link:hover { color: var(--gold); }

.contact-form .form-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.4rem;
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--white);
  border-radius: 3px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--dark-card);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  color: var(--white);
}
.contact-form .form-control::placeholder { color: var(--gray); }

.contact-form .form-select option {
  background: var(--dark-card);
  color: var(--white);
}

/* ============================================================
   PARTNERS
============================================================ */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.partner-logo-wrap {
  flex: 0 0 150px;
}

.partner-logo-dummy {
  width: 150px;
  height: 150px;
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--gray);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.partner-logo-dummy i {
  font-size: 2rem;
  color: rgba(201, 168, 76, 0.35);
}
.partner-logo-dummy:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.12);
}

/* Wanneer echte logo's beschikbaar zijn:
   vervang .partner-logo-dummy door <img src="logo.png" width="150" height="150"> */

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.social-link {
  color: var(--gray);
  font-size: 1.45rem;
  text-decoration: none;
  transition: color 0.25s, transform 0.25s;
  line-height: 1;
}
.social-link:hover {
  color: var(--gold-bright);
  transform: translateY(-3px);
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 991.98px) {
  .nav-logo { height: 48px; }
}

@media (max-width: 575.98px) {
  .hero-logo { height: 100px; }
  .hero-date-badge { font-size: 0.8rem; padding: 0.55rem 1rem; }
  .hero-cta .btn { min-width: 150px; padding: 0.75rem 1.25rem; }
  .ticket-card, .sponsor-card { padding: 1.5rem 1.2rem; }
}
