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

:root {
  --bg: #000000;
  --accent: #c9c9d7;
  --light: #ffffff;
  --mid: #888888;
  --dim: #ffffff;
  --display: 'Bebas Neue', 'Impact', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --content-shell: 900px;
  --content-shell-wide: 900px;
  --content-start-gap: clamp(16px, 2vw, 24px);
  --section-gap: 0px;
  --side-label: "WE.ARE.FRIDA • HANNOVER • ATMO/ROCK • EST. 2014 • BAND • WE.ARE.FRIDA • HANNOVER • ATMO/ROCK • EST. 2014 • BAND • WE.ARE.FRIDA • HANNOVER • ATMO/ROCK • EST. 2014 • BAND";
}

html {
  background: #000;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

html::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  z-index: -1;
  background-image: url('../img/hintergrund.jpg');
  background-size: cover;
  background-position: center top;
}

body {
  background: transparent;
  color: var(--light);
  font-family: var(--body);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

body::before,
body::after {
  position: fixed;
  top: 18px;
  bottom: 18px;
  z-index: 40;
  pointer-events: none;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.34);
  white-space: nowrap;
}

body::before {
  content: var(--side-label);
  left: 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

body::after {
  content: var(--side-label);
  right: 10px;
  writing-mode: vertical-rl;
}

main {
  width: 100%;
  flex: 1 0 auto;
}

@media (max-width: 910px) {
  body::before,
  body::after { display: none; }
}

::selection { background: rgba(255,255,255,0.2); color: var(--light); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #222; }

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


/* ─── Header ─── */
.site-header {
  padding: 48px 20px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-wrap {
  display: block;
  width: 483px;
  max-width: 100%;
  margin: 0 0 20px;
  cursor: pointer;
  flex: 0 0 auto;
}

.logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.logo-tagline {
  width: 483px;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -10px 0 20px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--mid);
  white-space: nowrap;
}

.logo-tagline::before,
.logo-tagline::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--mid);
}


/* ─── Navigation ─── */
.nav-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  min-height: 32px;
}

.nav-desktop a {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: lowercase;
  text-decoration: none;
  color: var(--mid);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s;
  line-height: 1;
}

.nav-desktop a:hover { color: var(--light); }

.nav-desktop a.active {
  color: var(--light);
  border-bottom-color: var(--light);
}


/* ─── Mobile Menu ─── */
.nav-mobile-trigger {
  display: none;
}

.nav-mobile-trigger button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--light);
  font-size: 26px;
  font-family: monospace;
  line-height: 1;
  padding: 4px;
}

.nav-mobile-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(0,0,0,0.97);
  padding: 8px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.0);
    background-image: url('../img/hintergrund.jpg');
}

.nav-mobile-dropdown.open { display: block; }

.nav-mobile-dropdown a {
  display: block;
  width: 100%;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: lowercase;
  text-decoration: none;
  color: var(--dim);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.0);
}

.nav-mobile-dropdown a:hover,
.nav-mobile-dropdown a.active { color: var(--light); }

@media (max-width: 768px) {
  .nav-desktop { display: none !important; }
  .nav-mobile-trigger { display: block !important; }
}


/* ─── Content Container ─── */
.content-section {
  padding: var(--content-start-gap) 20px 60px;
  max-width: var(--content-shell);
  margin: 0 auto;
}


/* ─── Section Titles ─── */
.section-title {
  font-family: var(--display);
  font-size: clamp(42px, 9vw, 80px);
  font-weight: 600;
  color: var(--light);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}


/* ─── Meta Labels ─── */
.meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--mid);
  margin-bottom: 16px;
}
.meta-info {
    text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--mid);
  margin-bottom: 16px;
}


/* ─── Buttons ─── */
.btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 3px;
  padding: 10px 24px;
  background: none;
  color: var(--dim);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  border-color: var(--light);
  color: var(--light);
}


/* ─── YouTube Facade ─── */
.yt-facade {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  background: #000;
}

.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-facade .yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent);
  width: 68px;
  height: 68px;
  transition: transform 0.2s, color 0.2s;
}

.yt-facade .yt-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  color: #fff;
}

.yt-facade .yt-play svg {
  width: 100%;
  height: 100%;
}

.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ─── Tour Dates ─── */
.date-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.date-row .date {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
  min-width: 48px;
}

.date-row .venue {
  font-family: var(--body);
  font-size: 15px;
  color: var(--light);
  font-weight: 600;
}

.date-row .city {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 1px;
}

.date-row .type {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 2px;
  margin-left: auto;
}

.year-heading {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}


/* ─── Listen Links ─── */
.listen-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: all 0.2s;
}

.listen-row:hover {
  padding-left: 8px;
  border-color: rgba(255,255,255,0.15);
}

.listen-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.listen-icon svg { width: 22px; height: 22px; }
.listen-icon i { font-size: 22px; line-height: 1; display: block; }

.listen-row:hover .listen-icon { opacity: 0.7; }

.listen-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.listen-row .name {
  font-family: var(--body);
  font-size: 16px;
  color: var(--light);
  font-weight: 700;
  letter-spacing: 1px;
}

.listen-row .sub {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 2px;
  margin-top: 2px;
}


/* ─── Musik Grid ─── */
.musik-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.musik-card {
  text-decoration: none;
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.musik-card:hover {
  transform: translateY(-4px);
  opacity: 0.88;
}

.musik-card .cover {
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 10px;
}

.musik-card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.musik-card .title {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.5px;
}

.musik-card .subtitle {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 1px;
  margin-top: 2px;
}


/* ─── Videos Grid ─── */
.video-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

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

.video-card .info { padding: 12px 0; }

.video-card .info .title {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.5px;
}

.video-card .info .sub {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 1px;
  margin-top: 3px;
}


/* ─── Release Detail (Febro / Astra / Kiwi) ─── */
.febro-layout {
  margin-top: 20px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.febro-cover {
  flex: 0 0 220px;
  max-width: 220px;
}

.febro-cover .cover {
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

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

.febro-cover .title {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.5px;
}

.febro-cover .subtitle {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 1px;
}

.febro-links {
  flex: 1;
}

@media (max-width: 600px) {
  .febro-layout {
    flex-direction: column;
    gap: 28px;
  }
  .febro-cover {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 50% 1fr;
    grid-template-rows: 1fr auto;
    column-gap: 16px;
  }
  .febro-cover .cover {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .febro-cover .title {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0 !important;
    align-self: end;
  }
  .febro-cover .subtitle {
    grid-column: 2;
    grid-row: 2;
    margin-top: 4px !important;
    align-self: start;
  }
}


/* ─── Info Page ─── */
.info-text {
  text-align: center;
  font-family: var(--body);
  font-size: 15px;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 40px;
}

.info-text p {   text-align: center;margin-bottom: 18px; }
.info-text em {  text-align: center; color: var(--light); font-style: italic; }

.info-cta {  text-align: center;
  font-family: var(--display);
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 600;
  color: var(--light);
  margin-bottom: 24px;
}


/* ─── Contact Form ─── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--dim);
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-family: var(--body);
  font-size: 14px;
  color: var(--light);
  outline: none;
  transition: border-color 0.2s;
}

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

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

.contact-form .botcheck { display: none; }

.contact-form .field-error {
  font-family: var(--mono);
  font-size: 11px;
  color: #e55;
  letter-spacing: 1px;
  margin-top: 6px;
  display: none;
}

.contact-form .error-msg {
  font-family: var(--mono);
  font-size: 12px;
  color: #e55;
  letter-spacing: 1px;
  display: none;
}

.contact-form .success-msg {
  text-align: center;
  padding: 40px 0;
  display: none;
}

.contact-form .success-msg h2 {
  font-family: var(--display);
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 600;
  color: var(--light);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.contact-form .success-msg p {
  font-family: var(--body);
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}


/* ─── Footer ─── */
.site-footer {
  padding: 32px 20px 24px;
  text-align: center;
  margin-top: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  text-decoration: none;
  transition: opacity 0.2s;
  padding: 4px;
}

.social-links a:hover { opacity: 0.65; }
.social-links a svg { width: 20px; height: 20px; display: block; }
.social-links a i { font-size: 22px; line-height: 1; display: block; }

.footer-legal {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-legal a { color: var(--dim); text-decoration: none; }
.footer-legal a:hover { color: var(--light); }

.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.08);
  letter-spacing: 2px;
}


/* ─── Homepage ─── */
.home-videos {
  padding: var(--content-start-gap) 20px 0;
  max-width: var(--content-shell);
  margin: 0 auto;
}

.home-video-list {
  display: grid;
  gap: 32px;
}

.home-video-actions {
  text-align: center;
  margin-top: 8px;
}

.home-live {
  margin-top: var(--section-gap);
  padding: 16px 0 28px;
  position: relative;
}



.home-live .inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-shell);
  margin: 0 auto;
  padding: 0 20px;
}

.home-listen {
  padding: var(--section-gap) 20px 32px;
  max-width: var(--content-shell-wide);
  margin: 0 auto;
}


/* ─── Responsive ─── */
@media (max-width: 768px) {
  .content-section { padding-bottom: 48px; }
  .home-video-list { gap: 28px; }

  .home-live {
    margin-top: 12px;
    padding: 16px 0 28px;
  }

  .home-listen {
    padding-top: 0px;
    padding-bottom: 28px;
  }
  .febro-layout {
  margin-top: 14px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  }
  .febro-links {
   width: 100%; 
  }

}
