/* =========================
   Root-Variablen & Grundlayout
   ========================= */
:root {
  --bg: #fff;
  --muted: #e5e7eb;
  --accent: #111827;
  --max-width: 1200px;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #fff;
  background: #000;
  line-height: 1.5;
  font-size: 20px; /* Grundgröße: 20px =  14pt, * 25px = 18pt */
}

/* =========================
   HEADER
   ========================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 101;
}

/* Logo & Musiknote */
.logo-link {
  display: flex;
  align-items: center;
  gap: 1.0rem;
  text-decoration: none;
}

.music-note-img {
  width: 2rem;
  height: auto;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #fff;
  line-height: 1;
}

.logo svg {
  height: 36px;
}

/* Hamburger-Menü */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 36px;
  height: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
/* 
.hamburger span {
  display: block;
  height: 3px;
  width: 26px;
  background: #fff;
  border-radius: 2px;
} */

#hamburger-btn {
  background: transparent;  /* Hintergrund des Buttons transparent */
  border: none;             /* keine Standardumrandung */
  padding: 0;               /* optional: Abstand entfernen */
  cursor: pointer;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 65px;
  right: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  padding: 1.2rem;
  border-radius: 0 0 15px 15px;
  flex-direction: column;
  gap: 0.75rem;
  display: none;
  z-index: 100;
}

.main-nav.show {
  display: flex;
}

.main-nav a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.7;
}


/* =========================
   SECTIONS & HINTERGRUND
   ========================= */
.section-bg {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2rem;
  background-size: cover;
  background-position: center center;
  color: #fff;
}

.section-bg .container,
.section-bg .hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  padding: 1.5rem; /* Abstand innen zum nächsten Opjekt */
  background: rgba(50,50,50,0.8);
  backdrop-filter: blur(5px);
  border-radius: 15px;
}
.section-bg .hero-inner {
  background: rgba(50,50,50,0.0);
  backdrop-filter: blur(0px);
}

/* Overlay nur über den Container */
.container-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  color: #000;
  display: flex;
  /* justify-content: center; zentriert horizontal */
  align-items: center; /* zentriert vertikal */
  text-align: left; /* Text linksbündig */
  padding: 0rem 1.5rem;
  opacity: 0;
  pointer-events: none; /* verhindert Interaktion im unsichtbaren Zustand */
  transition: opacity 0.3s ease;
  border-radius: 15px;
}
/* Hover-Effekt */
.container:hover .container-overlay {
  opacity: 1;
}
/* Mobile: Touch */
@media (hover: none) {
  .container-overlay {
    opacity: 1;              /* Overlay standardmäßig sichtbar auf Touch */
  }
}

.p-overlay {
  color: #000;
  line-height: 1.5;
}





/* Überschriften & Text */
.section-bg h2, h3, h4, p {
  color: #fff;
}

/* =========================
   Schriften Responsiv
   ========================= */

/* Grundgrößen (Smartphones) */
h1 { font-size: 1.3rem; line-height: 1.5; }
h2 { font-size: 1.0rem; line-height: 1.5; font-weight: normal; }
h3 { font-size: 0.9rem; line-height: 1.5; font-weight: normal; color: #000; }
p  { font-size: 0.9rem; line-height: 1.5; }

/* Tablet (ab 768px) */
@media (min-width: 768px) {
  h1 { font-size: 1.5rem; line-height: 1.5; }
  h2 { font-size: 1.2rem; line-height: 1.5; font-weight: normal; }
  h3 { font-size: 1.0rem; line-height: 1.5; font-weight: normal; color: #000; }
  p  { font-size: 1.0rem; line-height: 1.5; }
}

/* Desktop (ab 1200px) */
@media (min-width: 1200px) {
  h1 { font-size: 2.5rem; line-height: 1.5; }
  .artist {font-size: 2.0rem;line-height: 1.5;}
  h2 { font-size: 1.8rem; line-height: 1.5; font-weight: normal; }
  h3 { font-size: 1.4rem; line-height: 1.5; font-weight: normal; color: #000; }
  p  { font-size: 1.4rem; line-height: 1.5; }
}
/*
h1 {font-size: 1.3rem;
  line-height: 1.5;
  /* color: #FFC845; 
  /* color: #1e90ffff; 
}

h2 {
  font-size: 1.3rem;
  line-height: 1.5;
}

h3 {
  font-size: 1rem;
}
*/ 

/* =========================
   OVERLAYS (für Lesbarkeit)
   ========================= */
.overlayHero,
.overlaySongwriting,
.overlayProduction,
.overlayManagement,
.overlayArtists,
.overlayReleases {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.overlayHero{
  background: rgba(0, 0, 0, 0);
}
.overlaySongwriting{
  background: rgba(204, 126, 18, 0.1);
}
.overlayProduction,
.overlayManagement,
.overlayReleases {
  background: rgba(0, 0, 0, 0);
}

.overlayArtists {
  background: rgba(0,0,0,0);
  backdrop-filter: blur(3px);
}

/* =========================
   ARTISTS SECTION
   ========================= */
#artists.section-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* padding: 4rem 4rem; */
}

/* #artists.section-bg h1 {
  color: #fff;
  margin-bottom: 0rem 2rem;
} */

/* Artists Grid */
.artists-grid {
  padding: 1rem; /* Abstand innen */
  display: flex; /* Flexbox für die Artists */
  justify-content: center; /* zentriert die Artists */
  gap: 2rem; /* Abstand zwischen den Artists */
  flex-wrap: wrap;          /* mobil untereinander */
  width: 100%;
  /* max-width: 1100px; */
  margin: 0 auto; /* zentriert */
}

/* Einzelner Artist */
.artist {
  max-width: 300px;
  color: #fff;
}

/* Bild + Overlay */
.artist-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.artist-image img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

/* Text */
.artist-bio {
  margin-top: 0.5rem;
}

.artist-bio h3 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.4rem;
}

.p-bio {
  font-size: 1.2rem;
  font-style: italic;
  margin: 0;
}

/* Overlay nur über dem Bild */
.artist-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}
/* Hover-Effekt */
.artist-image:hover .artist-overlay {
  opacity: 1;
}
/* Mobile: Touch */
@media (hover: none) {
  .artist-overlay {
    opacity: 1;              /* Overlay standardmäßig sichtbar auf Touch */
  }
}


/* =========================
   RELEASES SECTION
   ========================= */
/* Releases */
.releases {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* LI als Flexbox für Bild + Links */
.release-item {
  display: flex;
  flex-wrap: wrap;       /* Mobil: Bild und Links untereinander */
  align-items: center;
  gap: 1rem;             /* Abstand zwischen Bild und Links */
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  background: rgba(0,0,0,0.5);
  border-radius: 8px;
  box-sizing: border-box;
}

/* Albumcover */
.album-cover {
  width: 100%;
  max-width: 300px;      /* maximale Breite */
  height: auto;          /* Höhe automatisch proportional */
  border-radius: 8px;
  object-fit: cover;
  flex: 0 0 auto;
}
/* Streaming Logos */
.links-inline {
  display: flex;
  flex-wrap: wrap;       /* unterhalb bei schmalen Bildschirmen */
  gap: 1rem;
  align-items: center;
  flex: 1 1 auto;        /* nimmt restlichen Platz ein */
}

.streaming-logo {
  height: 30px;
  width: auto;
  display: block;
}

/* Desktop: alles in einer Zeile */
@media (min-width: 900px) {
  .release-item {
    flex-wrap: nowrap;
  }
  .links-inline {
    flex-wrap: nowrap;
  }
}


/* =========================
   RESPONSIVE DESIGN
   ========================= */

/* Desktop */
@media (min-width: 900px) {
  .release-item {
    flex-wrap: nowrap;
    align-items: center;
  }
  .release-cover {
    margin-right: 1rem;
  }
  .release-info {
    width: auto;
    margin-top: 0;
    margin-right: 1rem;
  }
  .links-inline {
    flex-wrap: nowrap;
    margin-top: 0;
  }
}

/* Tablet/Mobil */
@media (max-width: 899px) {
  .release-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .release-cover img.album-cover {
    width: 150px;
    height: 150px;
  }
}

/* =========================
   FOOTER
   ========================= */

/* Footer Container */
   .legal-footer {
  font-size: 0.9rem;
  color: #888;
  padding: 1rem; /* Abstand innen */
}
.footer-title {
  display: block;
  margin-bottom: 0.5rem; /* Abstand unter dem Titel */
  text-align: left;
  color: #888; /* Farbe des Titels anpassen */
  font-weight: bold;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem 2rem; /* Abstand zwischen den Boxen */
}

.footer-left {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.footer-box {
  color: #888;
}
.legal-footer a {
  color: #888;
  text-decoration: none;
}

.footer-box.box3 {
  text-align: right;
  margin-left:auto;    /* schiebt Box 3 an den rechten Rand der Zeile */
}



/* =========================
   HINTERGRUNDBILDER
   ========================= */
.hero { background-image: url('./pics/bg-hero.webp'); }
.songwriting-bg { background-image: url('./pics/bg-songwriting.webp'); }
.production-bg  { background-image: url('./pics/bg-production.webp'); }
.management-bg  { background-image: url('./pics/bg-management.webp'); }
.artists-bg     { background-image: url('./pics/bg-artists.webp'); }
.releases-bg    { background-image: url('./pics/bg-release.webp'); }

/* =========================
   ENDE DER DATEI
   ========================= */
















