/* ============ Fonts (ersetze Pfade/Dateinamen) ============ */
@font-face{
  font-family:"ADLER";
  src:url("fonts/ADLER.woff2") format("woff2");
  font-display:swap;
}
@font-face{
  font-family:"AlteDIN";
  src:url("fonts/AlteDIN.woff2") format("woff2");
  font-display:swap;
}

/* ============ Base ============ */
:root{
  --yellow:#ffd400;        /* knallig */
  --pink:#ff2aa3;          /* headline */
  --green:#29c46a;         /* headline */
  --black:#0b0b0b;
  --cardRadius:18px;
  --stroke:3px;
  --max: 980px;            /* Desktop: Poster-Feeling */
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--yellow);
  color:#000;
  font-family:"AlteDIN", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.page{
  width:100%;
  margin:0 auto;
}

/* Desktop: zentrierte „Plakat“-Bühne, aber hero/banner bleiben full-bleed */
@media (min-width: 900px){
  .page{
    max-width: var(--max);
    padding: 0 18px 24px;
  }
}

/* ============ HERO ============ */
.hero__title--withlogo{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  font-family: "ADLER", "AlteDIN", sans-serif;
  text-align: left;
}

.hero__titleText{
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}

.hero__titleLogo img{
  width: clamp(72px, 14vw, 160px);
  height: auto;
transform: rotate(-12.5deg);

}

.hero{
  width:100%;
  height: 44vh;
  min-height: 320px;
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: var(--stroke) solid #000;
}

/* Optional: leichte Abdunkelung fürs Lesen */
.hero__overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,0) 55%);
}


.hero__title{
  text-align: center;
  margin:0;
  line-height: .9;
  letter-spacing: .02em;
  font-family:"ADLER", "AlteDIN", sans-serif;
  text-transform: uppercase;
  filter: drop-shadow(0 4px 0 rgba(0,0,0,.35));
}

.hero__titleTop{
  display:block;
  font-size: clamp(56px, 8vw, 96px);
  color: var(--pink);
}
.hero__titleBottom{
  display:block;
  font-size: clamp(56px, 8vw, 96px);
  color: var(--green);
}

/* ============ CLAIM ============ */
.claim{
  padding: 16px 14px 10px;
  border-bottom: var(--stroke) solid #000;
}
.claim__text{
  margin:0;
  font-size: clamp(22px, 3.8vw, 42px);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 900;
}

/* ============ EVENTS GRID 2x2 ============ */
.events{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px;
}

@media (min-width: 700px){
  .events{ gap: 18px; padding: 18px; }
}

.card{
  position:relative;
  border-radius: var(--cardRadius);
  border: var(--stroke) solid #000;
  overflow:hidden;
  text-decoration:none;
  color:#000;
  min-height: 170px;
  background: rgba(255,255,255,.15);
  box-shadow: 0 10px 0 rgba(0,0,0,.18);
  transform: translateY(0);
  transition: transform .12s ease, box-shadow .12s ease;
}

.card:active{
  transform: translateY(2px);
  box-shadow: 0 8px 0 rgba(0,0,0,.16);
}

.card__bg{
  position:absolute;
  inset:0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  filter: saturate(1.2) contrast(1.05);
}

/* Plakat-Style: gelbe Fläche + optional Bild als „Noise“ */
.card__content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding: 14px;
  background: linear-gradient(to bottom, rgba(255,212,0,.92), rgba(255,212,0,.92));
}

.card__title{
  margin:0;
  font-size: clamp(22px, 4.2vw, 44px);
  font-weight: 1000;
  text-transform: uppercase;
  line-height: .95;
}
.card__title small{
  font-size: .6em;
  font-weight: 900;
}

.card__cta{
  display:block;
  width:100%;
  margin-top: 10px;
  background:#000;
  color:#fff;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-align:center;
}

/* Desktop Hover */
@media (hover:hover){
  .card:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 0 rgba(0,0,0,.20);
  }
}

/* ============ BANNER ============ */
.banner{
  width:100%;
  min-height: 160px;
  border-top: var(--stroke) solid #000;
  background-image: var(--banner);
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Gelber „Poster“-Balken drüber */
.banner__logo{
  width: 96px;          /* Mobile Basisgröße */
  max-width: 28vw;      /* skaliert auf kleinen Screens */
  height: auto;
}

.banner__inner{
  display:flex;
  gap: 14px;
  justify-content:space-between;
  align-items:flex-end;
  padding: 16px 14px 18px;
  background: rgba(255,212,0,.92);
}

.banner__brand{
  font-size: clamp(22px, 4.2vw, 44px);
  font-weight: 1000;
  text-transform: uppercase;
  line-height: .9;
  display: flex;
  align-items: center;
}
.banner__social{
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 8px;
}

.banner__social a{
  display: block;
  width: 22px;
  height: 22px;
}

.banner__social img{
  width: 100%;
  height: auto;
  display: block;
}
.banner__info{
  display:flex;
  align-items:baseline;
  gap: 10px;
  justify-content:flex-end;
}
.banner__contact{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.banner__phone{
  font-size: 0.8em;      /* etwas kleiner als Mail */
  font-weight: 900;
  text-decoration: none;
  color: #000;
}
.bann
