/* ════════════════════════════════════════
   The Charity Gala — Stylesheet
   Huisstijl: MI Studioo
   ════════════════════════════════════════ */

/* ── Reset & Custom Properties ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Officiële huisstijlkleuren */
  --cream:          #fee9cf;
  --orange:         #e73f11;
  --orange-dark:    #c43410;
  --green:          #294022;
  --dark:           #172116;

  /* Achtergronden */
  --bg:             #fee9cf;
  --bg-card:        #fff8ef;

  /* Tekst */
  --text:           #172116;
  --text-muted:     #556450;
  --text-dim:       #8a9a85;

  /* Borders */
  --border:         rgba(23,33,22,0.12);
  --border-accent:  rgba(231,63,17,0.35);
  --border-green:   rgba(41,64,34,0.25);

  /* Font */
  --font-main:      'Raleway', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ── Utility ── */
.divider {
  width: 80px;
  height: 2px;
  background: var(--orange);
  border: none;
  margin: 2rem auto;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  overflow: hidden;
  background-color: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 15%, rgba(41,64,34,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 85%, rgba(231,63,17,.07) 0%, transparent 50%);
  pointer-events: none;
}

/* Decoratief — groen/oranje balk onderkant hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green) 30%, var(--orange) 50%, var(--green) 70%, transparent);
}

.hero-ornament {
  color: var(--orange);
  font-size: 0.78rem;
  letter-spacing: .55em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2.5rem;
  padding-right: .55em;
}

/* Gestapeld logo — replica van hoofdlogo uit huisstijl */
.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.88;
  margin-bottom: 0.5rem;
}

.hero-title-the {
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 100;
  letter-spacing: .6em;
  color: var(--orange);
  text-transform: uppercase;
  padding-right: .6em;
}

.hero-title-charity {
  font-size: clamp(3.5rem, 11vw, 8.5rem);
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 0.9;
}

.hero-title-gala {
  font-size: clamp(1.8rem, 5.5vw, 4rem);
  font-weight: 400;
  letter-spacing: .35em;
  color: var(--green);
  text-transform: uppercase;
  padding-right: .35em;
}

.hero-subtitle {
  font-weight: 400;
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 620px;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* ── Cause Cards ── */
.causes {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cause-card {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  padding: 1.5rem 2rem;
  text-align: center;
  width: 440px;
  max-width: 100%;
  cursor: pointer;
  transition: border-color .3s, transform .3s;
}

.cause-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.cause-photo {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  display: block;
  margin-bottom: .8rem;
  background: transparent;
}

.cause-icon { font-size: 2rem; margin-bottom: .5rem; }

.cause-meer {
  display: block;
  margin-top: .8rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: letter-spacing .3s;
}

.cause-card:hover .cause-meer { letter-spacing: .22em; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--orange);
  font-size: 1.1rem;
  cursor: pointer;
  animation: schommel 2.2s ease-in-out infinite;
  opacity: 0.45;
  transition: opacity .2s;
  z-index: 1;
}

.hero-scroll-indicator:hover { opacity: 1; }

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

.cause-card h3 {
  font-family: var(--font-main);
  font-size: .95rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: .3rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cause-card p { font-size: .88rem; color: var(--text-muted); }

/* ── CTA Button ── */
.cta-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  padding: .9rem 3rem;
  font-family: var(--font-main);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}

.cta-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--cream);
}

.cta-btn.cta-disabled {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
  cursor: default;
  pointer-events: none;
}

/* ════════════════════════════════════════
   NAVIGATION / TABS
   ════════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: none;
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: none;
  color: rgba(254,233,207,.55);
  font-family: var(--font-main);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 1.2rem 1.8rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .3s, border-color .3s;
}

.tab-btn:hover  { color: var(--cream); }
.tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }

/* ════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════ */
.section {
  display: none;
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 2rem;
  animation: fadeIn .4s ease;
}

.section.active { display: block; }

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

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .5rem;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: .8rem auto 0;
}

.section-header p { color: var(--text-muted); font-size: 1rem; }

/* ════════════════════════════════════════
   TICKETS INFO
   ════════════════════════════════════════ */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.ticket-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .3s, transform .3s;
}

.ticket-card:hover         { border-color: var(--orange); transform: translateY(-4px); }
.ticket-card.featured      { border: 2px solid var(--orange); }

.ticket-label {
  font-size: .7rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
}

.ticket-name {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.ticket-price {
  font-family: var(--font-main);
  font-size: 2.8rem;
  color: var(--green);
  font-weight: 800;
  margin: 1rem 0;
}

.ticket-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

.ticket-beschrijving {
  color: var(--text-muted);
  font-size: .95rem;
  margin: -0.4rem 0 1rem;
}

.ticket-features {
  list-style: none;
  margin: 1rem 0 1.2rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.ticket-features li {
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
}
.ticket-features li:last-child { border-bottom: none; }

.ticket-koop-wrap {
  text-align: center;
  margin: 2.5rem 0 3.5rem;
  padding: 2rem;
  border: 1px solid var(--border-accent);
  background: rgba(231,63,17,.04);
}

.ticket-koop-wrap p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

/* ════════════════════════════════════════
   CONTACT INFO
   ════════════════════════════════════════ */
.contact-info-box {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid var(--border-green);
  background: var(--bg-card);
  max-width: 560px;
  margin: 0 auto;
}

.contact-info-icon { font-size: 3rem; margin-bottom: 1.5rem; }

.contact-info-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-email-link {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 2px solid rgba(231,63,17,.4);
  padding-bottom: .2rem;
  margin-bottom: 1.5rem;
  transition: color .3s, border-color .3s;
}

.contact-email-link:hover {
  color: var(--dark);
  border-color: var(--dark);
}

.contact-info-note {
  font-size: .95rem !important;
  color: var(--text-dim) !important;
  margin-bottom: 0 !important;
}

/* ════════════════════════════════════════
   SPONSORS
   ════════════════════════════════════════ */
.sponsor-tiers { display: flex; flex-direction: column; gap: 3.5rem; }

.sponsor-tier h3 {
  font-family: var(--font-main);
  font-size: .9rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sponsor-tier h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-accent);
}

.sponsor-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.sponsor-grid--goud  { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.sponsor-grid--zilver { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── Basiskaart ── */
.sk {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color .3s;
}

.sk:hover { border-color: var(--orange); }

.sk--hoofd {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  border-color: var(--border-accent);
  background: rgba(231,63,17,.04);
  padding: 2.5rem;
}

.sk--hoofd .sk-body {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.sk--goud {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
}

.sk--zilver {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.2rem 1.8rem;
  min-width: 140px;
  text-align: center;
}

.sk--link { text-decoration: none; }
.sk--link:hover { border-color: var(--orange); }

.sk-logo-wrap {
  display: flex;
  align-items: center;
}

.sk-logo-wrap--hoofd {
  width: 220px;
  height: 120px;
  flex-shrink: 0;
  justify-content: center;
}

.sk-logo-wrap--goud {
  width: 100%;
  height: 110px;
  justify-content: flex-start;
  margin-bottom: .6rem;
}

.sk-logo-wrap--zilver {
  width: 100%;
  height: 80px;
  justify-content: center;
}

.sk-logo {
  object-fit: contain;
  background: transparent;
  border-radius: 4px;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}

.sk-logo--groot  { height: 110px; width: 220px; }
.sk-logo--midden { height: 100px; width: 200px; }
.sk-logo--klein  { height: 70px;  width: 150px; }

.sk-naam {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
  letter-spacing: .04em;
}

.sk-naam--groot { font-size: 1.4rem; }

.sk-beschrijving {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.sk-website {
  display: inline-block;
  color: var(--orange);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .05em;
  margin-top: .2rem;
  transition: color .3s;
}

.sk-website:hover { color: var(--dark); text-decoration: underline; }

.sponsor-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  border: 1px solid var(--border-green);
  text-align: center;
  background: var(--bg-card);
}

.sponsor-cta h3 {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.sponsor-cta p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .sk--hoofd { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════
   MENU
   ════════════════════════════════════════ */
.menu-gangen {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-gang {
  width: 100%;
  text-align: center;
  padding: 1.8rem 1rem;
}

.gang-label {
  font-family: var(--font-main);
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.gang-beschrijving {
  font-family: var(--font-main);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-scheiding {
  color: var(--orange);
  font-size: 0.85rem;
  opacity: 0.4;
  padding: 0.1rem 0;
  user-select: none;
}

.menu-placeholder {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 2rem 0;
}

/* ════════════════════════════════════════
   TICKET INFO NOTE
   ════════════════════════════════════════ */
.ticket-info-note {
  text-align: center;
  padding: 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.link-btn {
  background: none;
  border: none;
  color: var(--orange);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

/* ════════════════════════════════════════
   GOEDE DOELEN TAB
   ════════════════════════════════════════ */
#doelen { max-width: none; }

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

.doel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  text-align: center;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.doel-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.doel-foto {
  width: 100%;
  height: 240px;
  object-fit: contain;
  display: block;
  background: transparent;
  padding: 1rem 1rem 0;
}

.doel-icon { font-size: 2.5rem; margin: 1.8rem 0 .8rem; }

.doel-card h3 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: .6rem;
  padding: 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.doel-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 1.5rem 1.8rem;
}

/* ════════════════════════════════════════
   DE CLUBS
   ════════════════════════════════════════ */
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.club-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.club-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.club-photo-wrap {
  width: 100%;
  height: 200px;
  background: rgba(41,64,34,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.club-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-photo-placeholder {
  color: var(--text-dim);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.club-body { padding: 1.8rem; }

.club-name {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.club-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   PRAKTISCHE INFO
   ════════════════════════════════════════ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  padding: 2rem;
  transition: border-left-color .3s;
}

.info-card:hover { border-left-color: var(--orange); }

.info-icon { font-size: 1.8rem; margin-bottom: 1rem; }

.info-card h3 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.info-card p  { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.info-card a  { color: var(--orange); font-weight: 600; text-decoration: none; }
.info-card a:hover { text-decoration: underline; }

.dresscode-box {
  border: 2px solid var(--green);
  background: rgba(41,64,34,.04);
  padding: 2.5rem;
  text-align: center;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.dresscode-box::before,
.dresscode-box::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--orange);
  border-style: solid;
}

.dresscode-box::before { top: 12px;    left: 12px;  border-width: 2px 0 0 2px; }
.dresscode-box::after  { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.dresscode-box h3 {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .5rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dresscode-box p { color: var(--text-muted); font-size: 1rem; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
footer {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--dark);
  border-top: 3px solid var(--green);
  color: rgba(254,233,207,.55);
  font-size: .85rem;
  letter-spacing: .12em;
}

.footer-title {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .25em;
}

footer p { color: rgba(254,233,207,.55); }

footer .divider {
  background: rgba(231,63,17,.5);
  margin-top: 1.5rem;
}

/* ════════════════════════════════════════
   KAART ANIMATIES
   ════════════════════════════════════════ */
@keyframes kaartIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card-verschijn { animation: kaartIn 0.45s ease both; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 640px) {
  .tab-btn         { padding: 1rem .6rem; font-size: .68rem; letter-spacing: .1em; }
  .causes          { flex-direction: column; align-items: center; }
  .clubs-grid      { grid-template-columns: 1fr; }
  .doelen-grid     { grid-template-columns: 1fr; max-width: 100%; }
  .nav-inner       { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
  .nav-inner::-webkit-scrollbar { display: none; }
}
