/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── VARIABLES ── */
:root {
  --pink: #CC3A61;
  --pink-dark: #a82e50;
  --nav-h: 56px;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  background-image: url('images/background.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #111;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--pink);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
}

.nav-logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 34px;
  width: auto;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  padding: 0 0.95rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 0.5rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s, width 0.2s;
  transform-origin: center;
}

/* Hamburger → X animation */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
@media (max-width: 680px) {
  .nav-toggle { display: flex; }

  /* Center logo on mobile */
  nav {
    justify-content: center;
    position: relative;
  }
  .nav-logo {
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-logo img {
    height: 44px;
  }
  .nav-toggle {
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,0.97);
    border-bottom: 2px solid var(--pink);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open {
    max-height: 400px;
  }

  .nav-links a {
    height: auto;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    border-left: 4px solid transparent;
    font-size: 1rem;
  }

  .nav-links a:hover {
    border-left-color: var(--pink);
    border-bottom-color: transparent;
    background: rgba(204,58,97,0.04);
  }
}

/* ── MAIN CONTENT ── */
main {
  padding-top: var(--nav-h);
}

/* ── TYPOGRAPHY ── */
h1, h2 {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink);
}

h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

/* ── SECTIONS ── */
section {
  padding: 4rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  section { padding: 3rem 1rem; }
}


/* ── HERO ── */
#hero {
  padding: 0;
  max-width: 100%;
  position: relative;
}

.hero-img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Mask fades the image to transparent at the bottom — background shows through */
  -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
}

.hero-placeholder {
  width: 100%;
  height: clamp(200px, 40vw, 420px);
  background: rgba(204,58,97,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--pink);
  text-transform: uppercase;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--pink);
  text-decoration: none;
  padding: 0.7rem 2rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
}

.btn:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
}

/* ── CARD BACKGROUNDS ── */
.card-bg {
  background: rgba(255,255,255,0.65);
  border-radius: 6px;
  padding: 2rem;
}

@media (max-width: 480px) {
  .card-bg { padding: 1.25rem; }
}

/* ── CONCERTS WIDGET ── */
.concerts-widget {
  background: rgba(255,255,255,0.65);
  border-left: 4px solid var(--pink);
  border-radius: 0 4px 4px 0;
  padding: 1.5rem;
  font-weight: 300;
}

.concert-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  flex-wrap: wrap;
}

.concert-row:last-child { border-bottom: none; }

.concert-date {
  font-weight: 400;
  min-width: 110px;
  font-size: 0.9rem;
}

.concert-venue { flex: 1; font-size: 0.95rem; }

.concert-ticket {
  color: var(--pink);
  font-weight: 400;
  text-decoration: none;
  font-size: 0.85rem;
  white-space: nowrap;
}

.concert-ticket:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .concert-date { min-width: auto; width: 100%; margin-bottom: -0.25rem; }
  .concert-ticket { margin-left: auto; }
}

/* ── VIDEO GRID ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.video-embed {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0,0,0,0.08);
}

.video-embed iframe {
  width: 100%; height: 100%;
  border: none;
}

.video-title {
  font-weight: 300;
  font-size: 0.9rem;
  color: #333;
  padding: 0.4rem 0.25rem 0;
}

/* ── SHOP PLACEHOLDER ── */
.shop-placeholder {
  background: rgba(255,255,255,0.5);
  border: 2px dashed var(--pink);
  border-radius: 6px;
  padding: 3rem 2rem;
  color: #888;
  font-weight: 300;
  text-align: center;
}

.shop-placeholder p { margin-bottom: 1rem; }

/* ── KONTAKT ── */
.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.kontakt-block h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  /* text-transform: uppercase; */
  color: var(--pink);
  margin-bottom: 0.6rem;
}

.kontakt-block p,
.kontakt-block a {
  font-weight: 300;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  line-height: 1.7;
  display: block;
}

.kontakt-block a:hover { color: var(--pink); }

/* Newsletter */
.newsletter {
  background: rgba(255,255,255,0.6);
  border-left: 4px solid var(--pink);
  border-radius: 0 4px 4px 0;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.newsletter h3 {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.65rem 1rem;
  border: 1.5px solid #ccc;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
}

.newsletter-form input:focus { outline: none; border-color: var(--pink); }

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.65rem 1rem;
  border: 1.5px solid #ccc;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--pink); }

.contact-form textarea { min-height: 140px; resize: vertical; }

/* ── FOOTER ── */
footer {
  background: rgba(0,0,0,0.75);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 1.5rem 1.25rem;
  font-weight: 200;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  position: relative;
}

footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.15s;
}

footer a:hover { color: var(--pink); }
footer .sep { opacity: 0.3; }

/* ── FLOATING SOCIAL ICONS (main page desktop only) ── */
.social-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.social-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  text-decoration: none;
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(204,58,97,0.2);
  transition: transform 0.15s, background 0.15s;
}

.social-float a:hover {
  transform: scale(1.15);
  background: #fff;
}

.social-float img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(27%) sepia(60%) saturate(900%) hue-rotate(307deg) brightness(90%);
}

/* Hide on mobile/tablet */
@media (max-width: 980px) {
  .social-float { display: none; }
}

/* ── PRESSE ── */
.presse-section {
  background: rgba(255,255,255,0.65);
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .presse-section { padding: 1.25rem; }
}

.presse-section h2 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  border: none;
  padding: 0;
}

.download-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.download-list li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 300;
  font-size: 0.95rem;
  color: #111;
  text-decoration: none;
  padding: 0.6rem 0.75rem;
  border-radius: 3px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(204,58,97,0.2);
  transition: background 0.15s, border-color 0.15s;
}

.download-list li a:hover {
  background: rgba(204,58,97,0.08);
  border-color: var(--pink);
  color: var(--pink);
}

.dl-meta { margin-left: auto; font-size: 0.8rem; color: #999; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

@media (max-width: 480px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
}

.photo-item {
  aspect-ratio: 3/2;
  background: rgba(0,0,0,0.08);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.photo-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--pink); text-transform: uppercase;
  font-family: 'Anton', sans-serif;
}

.photo-item a.dl-overlay {
  position: absolute; inset: 0;
  background: rgba(204,58,97,0);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem;
  text-decoration: none;
  transition: background 0.2s;
}

.photo-item:hover a.dl-overlay { background: rgba(204,58,97,0.65); }

.presstext {
  font-weight: 300; font-size: 0.95rem;
  line-height: 1.75; color: #222; white-space: pre-line;
}

/* ── NAV HAMBURGER SCRIPT HOOK ── */
/* JS toggles .open on both .nav-toggle and .nav-links */