:root{
  --bg:#060606;
  --bg2:#0a0a0a;

  --gold:#d6b25e;
  --gold2:#ffdd7a;

  --text:#f4f0e6;
  --muted: rgba(244,240,230,.74);

  --line: rgba(214,178,94,.14);
  --panel: rgba(12,12,12,.55);

  --r:18px;
  --max:1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(214,178,94,.12), transparent 62%),
    radial-gradient(700px 520px at 82% 28%, rgba(255,221,122,.08), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(6,6,6,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(214,178,94,.10);
}

.nav-inner{
  position: relative; /* wichtig fuer das absolute Dropdown */
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}

/* !!! WICHTIG: Logo kann NICHT ausrasten */
.nav-logo{
  display:inline-flex;
  align-items:center;
  height:44px;
  max-width: 260px;
}
.nav-logo img{
  height:26px;           /* fix */
  width:auto;
  max-width:100%;
  display:block;
  object-fit:contain;
  opacity:.96;
}

.nav-links{
  display:flex; gap:10px;
}
.nav-links a{
  font-size:14px;
  color: rgba(244,240,230,.82);
  padding:10px 12px;
  border-radius:12px;
}
.nav-links a:hover{
  border:1px solid rgba(214,178,94,.12);
  background: rgba(255,221,122,.04);
  padding:9px 11px;
}

/* HERO */
.hero{
  position:relative;
  padding:78px 0 56px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:34px;
  align-items:center;
}

/* Zeit pill: “kommt raus” */
.time-pill{
  display:inline-flex;
  padding:11px 16px;
  border-radius:999px;
  background: linear-gradient(180deg, rgba(255,221,122,.18), rgba(214,178,94,.08));
  border:1px solid rgba(255,221,122,.28);
  color: rgba(244,240,230,.92);
  letter-spacing:.3px;
  box-shadow:
    0 18px 40px rgba(0,0,0,.45),
    0 0 30px rgba(214,178,94,.16);
}

.hero-title{
  margin:18px 0 12px;
  font-weight:950;
  line-height:.92;
  font-size: clamp(46px, 6vw, 86px);
  letter-spacing: 1px;
}
.hero-title span{
  color: var(--gold2);
  text-shadow: 0 0 28px rgba(255,221,122,.14);
}

.hero-text{
  margin: 10px 0 16px;
  max-width: 62ch;
  color: rgba(244,240,230,.76);
  line-height: 1.65;
}
.hero-text p{ margin: 0 0 10px; }
.hero-text p:last-child{ margin-bottom:0; }

.hero-facts{
  margin: 0 0 18px;
  color: rgba(244,240,230,.78);
  line-height: 1.6;
}
.hero-facts strong{ color: rgba(244,240,230,.92); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,221,122,.22);
  transition: transform .12s ease, opacity .12s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); opacity:.96; }
.btn:active{ transform: translateY(0); }
.btn-primary{
  background: linear-gradient(180deg, rgba(255,221,122,.16), rgba(214,178,94,.07));
  border:1px solid rgba(255,221,122,.28);
  box-shadow:
    0 18px 40px rgba(0,0,0,.45),
    0 0 36px rgba(214,178,94,.18);
  letter-spacing: .8px;
  font-weight: 900;
}
.btn-wide{ width:100%; margin-top:16px; }

.logo-card{
  border-radius: 26px;
  border: 1px solid rgba(214,178,94,.14);
  background: rgba(12,12,12,.45);
  padding: 22px;
}
.logo-card img{
  width:100%;
  height:auto;
  display:block;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.55));
}

.hero-fade{
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(6,6,6,1));
}

/* INFO split */
.info{
  padding: 64px 0;
  border-top:1px solid rgba(214,178,94,.08);
  background: rgba(255,221,122,.012);
}

.info-inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.info-left,
.info-right{
  min-width: 0;
}

.photo-card{
  width: 100%;
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid rgba(214,178,94,.14);
  background: rgba(12,12,12,.45);
}

.photo-card img{
  width:100%;
  height: 560px;
  object-fit: cover;
  display:block;
  filter: grayscale(1) contrast(1.05) brightness(.86);
}

.section-title{
  margin:0 0 16px;
  font-weight:900;
  letter-spacing:.7px;
  font-size: 30px;
}

/* data */
.data-card{
  width: 100%;
  box-sizing: border-box;
  border:1px solid rgba(214,178,94,.12);
  background: rgba(12,12,12,.45);
  border-radius: 22px;
  overflow:hidden;
  margin-bottom: 14px;
}

.data-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  border-top:1px solid rgba(214,178,94,.08);
}

.data-row:first-child{ border-top:0; }

.k{
  color: rgba(244,240,230,.62);
  text-transform: uppercase;
  letter-spacing: .9px;
  font-size: 12px;
}

.v{
  font-weight:800;
  text-align:right;
}

/* ticket card */
/* --- Tickets Section --- */
.tickets-section{
  padding: 64px 0;
  border-top: 1px solid rgba(214,178,94,.08);
  background: rgba(255,221,122,.010);
}





/* FOOTER */
.footer{
  padding: 34px 0 26px;
  border-top: 1px solid rgba(214,178,94,.10);
  background: rgba(255,221,122,.008);
}

.footer-content{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.footer-brand{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-logo{
  width: min(320px, 100%);
  height: auto;
  display:block;
  opacity:.96;
}

.footer-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
  color: rgba(244,240,230,.72);
  line-height:1.5;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-top: 6px;
}

.copy{
  color: rgba(244,240,230,.58);
  font-size: 13px;
}

.footer-icons{
  display:flex;
  gap:10px;
}

.icon{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  border:1px solid rgba(214,178,94,.10);
  background: rgba(12,12,12,.35);
}

.icon:hover{
  border:1px solid rgba(255,221,122,.18);
  background: rgba(255,221,122,.03);
}

.icon img{
  width:18px;
  height:18px;
  object-fit: contain;
}

.footer-made{
  color: rgba(244,240,230,.52);
  font-size: 13px;
  text-align:center;
  padding-top: 6px;
}

.footer-made span{
  color: var(--gold2);
}

@media (max-width: 640px){
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-logo{
    width: min(260px, 100%);
  }

  .footer-made{
    text-align:left;
  }
}

.tickets-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 18px;
}

.ticket-box{
  border:1px solid rgba(214,178,94,.14);
  background: rgba(12,12,12,.50);
  border-radius: 24px;
  padding: 22px;
}

.ticket-box-primary{
  border-color: rgba(255,221,122,.34);
  box-shadow: 0 0 30px rgba(255,221,122,.08);
}

.ticket-box-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom: 10px;
}

.ticket-box-title{
  margin:0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.ticket-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  background: var(--gold2);
  color:#111;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.6px;
  font-size: 12px;
  white-space: nowrap;
}

.ticket-box-sub{
  color: rgba(244,240,230,.72);
  line-height: 1.55;
  margin-bottom: 16px;
}

.ticket-box-price{
  font-weight:950;
  color: rgba(244,240,230,.92);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  margin-bottom: 18px;
}

.ticket-box-price-primary{
  color: var(--gold2);
}

.ticket-benefits{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.ticket-benefits li{
  position:relative;
  padding-left:34px;
  color: rgba(244,240,230,.88);
  line-height:1.45;
}

.ticket-benefits li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:22px;
  height:22px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid var(--gold2);
  color: var(--gold2);
  font-size:13px;
  font-weight:900;
}

.ticket-benefits-secondary li::before{
  border-color: rgba(244,240,230,.28);
  color: rgba(244,240,230,.72);
}

.tickets-main-link{
  margin-top: 20px;
}









/* --- Sponsoren --- */
.sponsoren{
  padding: 64px 0;
  border-top: 1px solid rgba(214,178,94,.08);
  background: rgba(255,221,122,.010);
}

.sponsor-intro{
  border: 1px solid rgba(214,178,94,.12);
  background: rgba(12,12,12,.45);
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 18px;
}

.sponsor-intro p{
  margin: 0 0 10px;
  color: rgba(244,240,230,.78);
  line-height: 1.65;
}
.sponsor-intro p:last-of-type{ margin-bottom: 0; }

.sponsor-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

.btn-ghost{
  background: rgba(12,12,12,.35);
  border: 1px solid rgba(214,178,94,.16);
}

.sponsor-contact{
  margin-top: 12px;
  color: rgba(244,240,230,.70);
}
.sponsor-contact a{
  color: var(--gold2);
  text-decoration: none;
}
.sponsor-contact a:hover{ text-decoration: underline; }

/* --- Pakete --- */
.package{
  margin-top: 18px;
  border: 1px solid rgba(214,178,94,.10);
  background: rgba(12,12,12,.35);
  border-radius: 22px;
  padding: 16px;
}

.package-title{
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: .6px;
  color: rgba(244,240,230,.92);
}


/* --- Goennerbeitraege --- */
.goenner-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.goenner-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;

  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(214,178,94,.10);
  background: rgba(0,0,0,.22);
}

.goenner-name{
  color: rgba(244,240,230,.88);
  font-weight: 700;
}

.goenner-betrag{
  color: var(--gold2);
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 640px){
  .goenner-row{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* Logo-Grid: fair + nix abgeschnitten */
.logo-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr); /* immer 3 nebeneinander */
  gap:20px;
}

.logo-grid img{
  width: 100%;
  height: 120px;          /* vorher 84px → deutlich grösser */
  object-fit: contain;
  object-position: center;

  padding: 12px;          /* mehr Luft rund ums Logo */

  border-radius: 18px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(214,178,94,.12);

  filter: saturate(1.02);
}

.logo-light{
  background: #f8f4e6 !important;   /* leicht vergoldetes Weiss */
}


/* Wenn Logos sehr hoch sind: etwas mehr Hoehe geben */
@media (max-width: 980px){
  .logo-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .logo-grid img{ height: 86px; }
}
@media (max-width: 640px){
  .logo-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-grid img{ height: 90px; }
}



/* --- Ueber uns --- */
.about{
  padding: 64px 0;
  border-top: 1px solid rgba(214,178,94,.08);
  background: rgba(255,221,122,.008);
}

.about-card{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;

  border: 1px solid rgba(214,178,94,.12);
  background: rgba(12,12,12,.45);
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 18px;
}

.about-text p{
  margin: 0 0 10px;
  color: rgba(244,240,230,.78);
  line-height: 1.65;
}
.about-text a{
  color: var(--gold2);
}
.about-text a:hover{ text-decoration: underline; }

.about-photo{
  justify-self: end;
  width: min(320px, 100%);
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(214,178,94,.12);
  background: rgba(0,0,0,.20);
  opacity: .92;
}
.about-photo img{
  width:100%;
  height: 200px;
  object-fit: cover;
  display:block;
  
}
/* filter: grayscale(1) contrast(1.05) brightness(.88); */


/* Team Grid */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.person{
  border: 1px solid rgba(214,178,94,.10);
  background: rgba(12,12,12,.35);
  border-radius: 20px;
  padding: 14px;
  min-width: 0;
}

.person-name{
  font-weight: 950;
  letter-spacing: .4px;
  margin-bottom: 6px;
}

.person-role{
  color: rgba(244,240,230,.72);
  line-height: 1.5;
  margin-bottom: 10px;
}

.person-mail{
  display:block;
  color: var(--gold2);
  font-weight: 800;
  letter-spacing: .2px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.person-mail:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 980px){
  .about-card{ grid-template-columns: 1fr; }
  .about-photo{ justify-self: start; width: min(420px, 100%); }
  .about-photo img{ height: 220px; }
  .team-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .team-grid{ grid-template-columns: 1fr; }
}



/* Hamburger Button */
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:6px;
  background: rgba(12,12,12,.35);
  border: 1px solid rgba(214,178,94,.14);
  border-radius: 14px;
  padding: 10px 12px;
  cursor:pointer;

  position: relative;
  z-index: 9999;            /* damit er IMMER klickbar ist */
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span{
  width:26px;
  height:2px;
  background: var(--gold2);
  display:block;
  border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 800px){

  .menu-toggle{
    display:flex;
  }

  /* Desktop-links ausblenden */
  .nav-links{
    display:none;
  }

  /* Dropdown */
  .nav-links.active{
    display:flex;
    flex-direction:column;
    gap:12px;

    position:absolute;
    top: 58px;
    right: 0;

    width: min(220px, 80vw);
    padding: 14px;

    background: rgba(10,10,10,.92);
    border: 1px solid rgba(214,178,94,.16);
    border-radius: 16px;
    backdrop-filter: blur(10px);

    z-index: 9998;
  }

  .nav-links.active a{
    padding:10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(214,178,94,.10);
    background: rgba(255,221,122,.02);
  }

  .nav-links.active a:hover{
    border-color: rgba(255,221,122,.18);
    background: rgba(255,221,122,.04);
  }
}

/* Footer Link */
.footer-link{
  color: rgba(244,240,230,.70);
  text-decoration: none;
  border-bottom: 1px solid rgba(214,178,94,.18);
  padding-bottom: 1px;
}
.footer-link:hover{
  color: var(--gold2);
  border-bottom-color: rgba(255,221,122,.35);
}


/* Legal page */
.legal{
  padding: 60px 0 64px;
}

.legal-head{
  max-width: 820px;
  margin: 0 0 18px;
}

.legal-title{
  margin-top: 16px;
}

.legal-sub{
  margin: 10px 0 16px;
  color: rgba(244,240,230,.74);
  line-height: 1.6;
  max-width: 70ch;
}

.legal-card{
  border: 1px solid rgba(214,178,94,.12);
  background: rgba(12,12,12,.45);
  border-radius: 22px;
  padding: 18px;
  margin-top: 14px;
}

.legal-card h2{
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: .2px;
}

.legal-card h3{
  margin: 14px 0 8px;
  font-size: 15px;
  color: rgba(244,240,230,.90);
}

.legal-card p{
  margin: 0 0 10px;
  color: rgba(244,240,230,.76);
  line-height: 1.65;
}

.legal-card p:last-child{ margin-bottom: 0; }

.legal-card a{
  color: var(--gold2);
}
.legal-card a:hover{
  text-decoration: underline;
}

.legal-note{
  color: rgba(244,240,230,.60);
  font-size: 13px;
}

@media (max-width: 980px){
  .hero-inner{
    grid-template-columns: 1fr;
  }

  .info-inner{
    display:flex;
    flex-direction:column;
    gap:18px;
  }

  .info-right{
    order:1;
    width:100%;
  }

  .info-left{
    order:2;
    width:100%;
  }

  .photo-card,
  .data-card{
    width:100%;
    max-width:100%;
  }

  .photo-card img{
    height:360px;
  }

  .data-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .v{
    text-align:left;
  }

  .tickets-grid{
    grid-template-columns: 1fr;
  }

  .about-card{
    grid-template-columns: 1fr;
  }

  .about-photo{
    justify-self:start;
    width:min(420px, 100%);
  }

  .about-photo img{
    height:220px;
  }

  .team-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .logo-grid img{
    height:86px;
  }
}

@media (max-width: 800px){
  .about-card{
    grid-template-columns: 1fr;
  }

  .about-photo{
    justify-self: start;
    width: 100%;
  }

  .about-photo img{
    height: auto;
  }

  .team-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .container{
    width: calc(100% - 32px);
  }

  .about-card,
  .person,
  .data-card,
  .ticket-box,
  .package,
  .sponsor-intro{
    min-width: 0;
  }
}