:root{
  --bg: #0b0c0f;
  --text: #f3f5f7;
  --muted: rgba(243,245,247,0.72);
  --line: rgba(255,255,255,0.12);

  --max: 1120px;

  /* ICON SIZE (LOCKED START) */
  --icon-size: 48px;
  --icon-gap: 16px;

  /* Button color (can be tuned later) */
  --btn-bg: #4fa3b5;
  --btn-bg-hover: #63b6c7;
  --btn-text: #061014;

  --radius: 10px;
  --shadow: 0 18px 60px rgba(0,0,0,0.55);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.45;
}

a{ color: inherit; }
img{ max-width:100%; display:block; }

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

/* HEADER IMAGE */
.headerImage{
  padding-top: 26px;
}
.headerImage__inner{
  display:flex;
  justify-content:center;
}
.headerImage__img{
  width:100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ICON ROW */
.iconRow{
  padding: 20px 0 12px;
}
.iconRow__inner{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.iconGroup{
  display:flex;
  align-items:center;
  gap: var(--icon-gap);
}
.iconGroup img{
  width: var(--icon-size);
  height: var(--icon-size);
  object-fit: contain;
  opacity:0.95;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.iconGroup a:hover img,
.zelleBtn:hover img{
  transform: translateY(-1px);
  opacity:1;
}
.zelleBtn{
  border:0;
  background:none;
  padding:0;
  cursor:pointer;
}

/* Zelle reveal */
.zelleInfo{
  margin-top: 8px;
  text-align:center;
  font-size: 14px;
  color: var(--muted);
}
.zelleInfo a{
  color: var(--text);
  text-decoration: underline;
}

/* GENRE LINE */
.identityLine{
  padding: 8px 0 20px;
}
.identityLine__text{
  text-align:center;
  font-weight:800;
  letter-spacing:0.04em;
}

/* DOWNLOAD BUTTONS */
.downloads{
  padding: 8px 0 20px;
}
.downloads__inner{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}
.dlBtn{
  min-width: min(560px, 92vw);
  padding: 16px 20px;
  background: var(--btn-bg);
  color: var(--btn-text);
  border-radius: var(--radius);
  font-weight:900;
  letter-spacing:0.04em;
  text-align:center;
  box-shadow: 0 10px 28px rgba(26,166,255,0.25);
  transition: background 0.15s ease, transform 0.15s ease;
}
.dlBtn:hover{
  background: var(--btn-bg-hover);
  transform: translateY(-1px);
}

/* BOOKINGS */
.bookings{
  padding: 16px 0 56px;
}
.bookings__inner{
  display:flex;
  flex-direction: column;
  align-items:center;
  gap:20px;
}
.bookingCard{
  width: min(620px, 92vw);
  padding: 20px;
  text-align:center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.bookingCard__title{
  font-weight:900;
  letter-spacing:0.04em;
  margin-bottom: 10px;
}
.bookingCard a{
  display:block;
  margin-top:8px;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .iconRow__inner{
    flex-direction: column;
    gap: 18px;
  }
}
