/* ================================
   WCAG 2.2 Level A + AA Grundgerüst
   Komplett fluide Responsive Website
   ================================ */

/* Reset und Basis-Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
    font-family: 'BerlinTypeWeb-Regular';
    src: url('../FNT/BerlinTypeWeb-Regular.woff2') format('woff2');
    font-weight: normal; /* oder 400 */
    font-style: normal;
    font-display: swap; /* Verbessert Ladeverhalten */
}

/* Fetter Schriftschnitt */
@font-face {
    font-family: 'BerlinTypeWeb-Bold';
    src: url('../FNT/BerlinTypeWeb-Bold.woff2') format('woff2');
    font-weight: bold; /* oder 700 */
    font-style: normal;
    font-display: swap;
}

html {
  background-color: #000000;
  color: #CCCCCC;
  font-size: 18px;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  font-family: BerlinTypeWeb-Regular, BerlinTypeWeb-Bold, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* WCAG 2.2 - Focus Styles */
*:focus-visible {
  outline: 2px solid #CCCCCC;
  outline-offset: 2px;
}

/* Links Basis-Styles */
a {
  color: #CCCCCC;
  text-decoration: underline;
}

a:hover,
a:focus {
  color: #FFFFFF;
}

/* App Container */
.app-container {
  width: 100%;
  background-color: #000000;
}

/* ================================
   SECTION 1: HERO-BEREICH
   ================================ */

.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-div {
  width: 100%;
  height: 100%;
  position: relative;
}

.header-section {
  width: 100%;
  height: 25vh;
  position: relative;
  overflow: hidden;
}

.header-div {
  width: 100%;
  height: 100%;  
  position: relative;
	}

/* Hintergrundbild */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../IMG/BSX/startcover.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Hintergrundvideo */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Entspricht background-size: cover */
  z-index: 1;
}

/* Overlays - immer oben fixiert */
.overlay-menu {
  position: fixed;
  top: 2%;
  left: 2%;
  z-index: 999;
}

.overlay-logo {
  position: fixed;
  top: 2%;
  right: 2%;
  z-index: 998;
}

.burger-menu {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5%;
  transition: transform 0.3s ease;
}

.closeNav_icon{
	width: 50px;
	}

.openNav_icon{
	width: 50px;
	}

.nav-icon {
	width: 25px;
	}

.burger-menu:hover {
  transform: scale(1.1);
}

.logo-img {
  width: auto;
  height: 120px;
  object-fit: contain;
}

.email-btn a {
  position: relative;
  display: inline-block;
  width: 128px;     /* Bildgröße */
  height: 128px;
}

.email-btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.icon-hover {
  opacity: 0;
}

.email-btn a:hover .icon-hover,
.email-btn a:focus-visible .icon-hover {
  opacity: 1;
}

.email-btn a:hover .icon-default,
.email-btn a:focus-visible .icon-default {
  opacity: 0;
}

/* optionaler Click-Effekt */
.email-btn a:active img {
}


/* LatestSong DIV */
.latest-song {
  position: absolute;
  z-index: 500;
  background-color: #000000;
  border-radius: 12px;
  padding: 3%;
  max-width: 90%;
}

/* Desktop (Landscape) */
@media (orientation: landscape) {
  .latest-song {
    right: 10%;
    bottom: 10%;
  }
}

/* Mobile (Portrait) */
@media (orientation: portrait) {
  .latest-song {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
  }
}

.latest-song h1 {
  margin-bottom: 4%;
  color: #FFFFFF;
}

.music-player-placeholder {
  margin: 4% 0;
  padding: 3%;
  background-color: #1a1a1a;
  border-radius: 8px;
  text-align: center;
}

.player-controls {
  color: #CCCCCC;
  font-family: monospace;
}

.artist-name {
  margin: 3% 0 2% 0;
  color: #CCCCCC;
}

.album-info {
  margin: 0;
  color: #999999;
  font-size: 0.9em;
}

/* ================================
   SECTIONS 2, 3, 4: CONTENT
   ================================ */

.content-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Zusätzlicher Abstand zwischen Header und Section 2 */
#section2 {
  margin-top: 10vh;
}

.base-wrapper {
  margin-top: 8vh;
  margin-bottom: 8vh;
  padding: 0%;
  text-align: left;
  color: #cccccc;
}

.base-wrapper-02 {
  background-color: #000;
}

.base-wrapper-03 {
  background-color: #000;
}

.base-wrapper-04 {
  background-color: #000;
}

.base-wrapper-0F {
  background-color: #000;
}

/* HeadlineSet - Responsive Layout */
.HeadlineSet {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2%;
}

.Headline {
  width: 100%;
  text-align: left;
}

.Filter {
  width: 100%;
  text-align: left;
}

/* LegalSet - Responsive Layout */
.LegalSet {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4%;
}

.LegalTxt {
  width: 100%;
  text-align: left;
  padding-top: 40px;
}

.LegalNav {
  width: 100%;
  text-align: left;
  padding-top: 40px;
}

/* GalleryGrid - Responsive Grid Layout */
.GalleryGrid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3%;
}

.GalleryGrid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, z-index 0s;
  cursor: pointer;
}

.GalleryGrid img:hover {
  z-index: 995;
  transform: rotate(3deg) scale(1.1);
  box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.7);
}

.GalleryGrid img:active {
  z-index: 995;
  transform: rotate(6deg) scale(1.08);
}

/* Button Container - Zentrierter VAULT Button */
.button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 5%;
}

.jump-to-nav {
  background-color: transparent;
  color: #CCCCCC;
  border: 2px solid #CCCCCC;
  padding: 1% 3%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1em;
  text-decoration: none;
}

.jump-to-nav:hover {
  background-color: #CCCCCC;
  color: #000000;
  font-weight: bold;
}

/* TextBlock_Standard */
.TextBlock_Standard {
  width: 100%;
  margin-top: 3%;
}

.TextBlock_Standard p {
  color: #CCCCCC;
  line-height: 1.6;
  text-align: left;
}

/* TextBlock_2Cols */
.TextBlock_2Cols {
  width: 100%;
  margin-top: 3%;
  padding-bottom: 3%;
}

.TextBlock_2Cols h3 {
  color: #CCCCCC;
  padding-top: 3%;
}

.TextBlock_2Cols p {
  color: #CCCCCC;
  line-height: 1.6;
  text-align: left;
}

/* ArtistInfo - Container für Künstlerinformationen */
.ArtistInfo {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 4%;
  margin-top: 3%;
}

.ArtistImage {
  width: 48%;
}

.ArtistImage img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.ArtistData {
  width: 48%;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 2%;
}

.ArtistData p {
  color: #CCCCCC;
  margin: 0;
  line-height: 1.6;
}

/* ================================
   HAUPTMENÜ
   ================================ */

.main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000000;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

.main-menu.menu-open {
  opacity: 1;
  visibility: visible;
}

.menu-content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5%;
  position: relative;
}

.menu-close-btn {
  position: absolute;
  top: 1%;
  left: 1.5%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5%;
  transition: transform 0.3s ease;
  z-index: 10000;
}

.menu-close-btn:hover {
  transform: scale(1.1);
}

.menu-logo {
  position: absolute;
  top: 2%;
  right: 2%;
  z-index: 10000;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3%;
  margin-top: 14vh;
  flex-grow: 1;
}

.menu-column {
  display: flex;
  flex-direction: column;
  gap: 2%;
}

.menu-column-title {
  color: #FFFFFF;
  margin-bottom: 4%;
  padding-bottom: 2%;
  border-bottom: 2px solid #333333;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3%;
}

.menu-list li a {
  color: #CCCCCC;
  text-decoration: none;
  display: block;
  padding: 2% 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.menu-list li a:hover,
.menu-list li a:focus {
  color: #FFFFFF;
  padding-left: 2%;
}

.credit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3%;
  width: 48%;
}

.credit-list li a {
  color: #CCCCCC;
  text-decoration: none;
  display: block;
  padding: 0.5% 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.credit-list li a:hover,
.credit-list li a:focus {
  color: #FFFFFF;
  padding-left: 2%;
}

.menu-item {
  color: #CCCCCC;
  padding: 3%;
  cursor: pointer;
  transition: color 0.3s ease;
  border-bottom: 1px solid #333333;
}

.menu-item:hover,
.menu-item:focus {
  color: #FFFFFF;
}

.menu-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5%;
  margin-top: 10vh;
  padding-top: 2%;
  border-top: 1px solid #333333;
}

.footer-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* Abstand zwischen den zwei Zeilen */
}

.footer-row {
  display: flex;
  flex-wrap: wrap;      /* erlaubt Umbruch */
  gap: 1rem 1.25rem;   /* Zeilen- & Spaltenabstand */
}

.footer-row a {
  white-space: nowrap; /* verhindert hässliche Wortumbrüche */
  text-decoration: none;
}

.footer-row a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}



/* ================================
   RESPONSIVE BREAKPOINTS
   Breakpoints: XS, SM, MD, LG, XL, 2XL
   ================================ */

/* XS - Extra Small (< 640px) - Mobile */
@media (max-width: 639px) {
  .base-wrapper {
    width: 90%;
  }
  
  .logo-img {
    height: 120px;
  }
  
  /* ArtistInfo untereinander */
  .ArtistInfo {
    flex-direction: column;
  }
  
  .ArtistImage {
    width: 100%;
  }
  
  .ArtistData {
    width: 100%;
  }
  
  .credit-list {
  width: 100%;
  }
  
  /* TextBlock_2Cols einspaltig */
  .TextBlock_2Cols p {
    column-count: 1;
  }

.nav-icon {
	width: 30px;
	}
}

/* SM - Small (640px - 767px) - Large Mobile */
@media (min-width: 640px) and (max-width: 767px) {
  .base-wrapper {
    width: 90%;
  }
  
  .logo-img {
    height: 120px;
  }
  
  /* ArtistInfo untereinander */
  .ArtistInfo {
    flex-direction: column;
  }
  
  .ArtistImage {
    width: 100%;
  }
  
  .ArtistData {
    width: 100%;
  }
  
  .credit-list {
  width: 100%;
  }
  
  /* TextBlock_2Cols einspaltig */
  .TextBlock_2Cols p {
    column-count: 1;
  }

.nav-icon {
	width: 30px;
	}
}

/* MD - Medium (768px - 1023px) - Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .base-wrapper {
    width: 80%;
  }
  
  .logo-img {
    height: 140px;
  }
  
  /* ArtistInfo untereinander */
  .ArtistInfo {
    flex-direction: row;
  }
  
  .ArtistImage {
    width: 100%;
  }
  
  .ArtistData {
    width: 100%;
  }
  
  .credit-list {
  width: 100%;
  }
  
  /* TextBlock_2Cols einspaltig */
  .TextBlock_2Cols p {
    column-count: 1;
  }
  
  /* GalleryGrid 4 Spalten */
  .GalleryGrid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Menu Grid 2 Spalten */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

.closeNav_icon{
	width: 60px;
	}

.openNav_icon{
	width: 60px;
	}

.nav-icon {
	width: 40px;
	}
}

/* LG - Large (1024px - 1279px) - Desktop */
@media (min-width: 1024px) and (max-width: 1279px) {
  .base-wrapper {
    width: 70%;
  }
  
  .logo-img {
    height: 160px;
  }
  
  /* HeadlineSet nebeneinander */
  .HeadlineSet {
    flex-direction: row;
  }
  
  .Headline {
    width: 60%;
    text-align: left;
  }
  
  .Filter {
    width: 40%;
    text-align: right;
  }
  
  /* LegalSet nebeneinander */
  .LegalSet {
    flex-direction: row;
  }
  
  .LegalTxt {
    width: 70%;
    text-align: left;
  }
  
  .LegalNav {
    width: 30%;
    text-align: left;
  }
  
  /* TextBlock_2Cols - 2 Spalten */
  .TextBlock_2Cols p {
    column-count: 2;
    column-gap: 4%;
  }
  
  /* ArtistInfo nebeneinander */
  .ArtistInfo {
    flex-direction: row;
    gap: 4%;
  }
  
  .ArtistImage {
    width: 48%;
  }
  
  .ArtistData {
    width: 48%;
    justify-content: center;
  }
  
  .credit-list {
  width: 100%;
  }
  
  /* GalleryGrid 4 Spalten */
  .GalleryGrid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Menu Grid 4 Spalten */
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Menu Footer nebeneinander */
  .menu-footer {
    flex-direction: row;
    justify-content: space-between;
  }

.closeNav_icon{
	width: 70px;
	}

.openNav_icon{
	width: 70px;
	}

.nav-icon {
	width: 45px;
	}
  
  
}

/* XL - Extra Large (1280px - 1535px) - Large Desktop */
@media (min-width: 1280px) and (max-width: 1535px) {
  .base-wrapper {
    width: 70%;
  }
  
  .logo-img {
    height: 180px;
  }
  
  /* HeadlineSet nebeneinander */
  .HeadlineSet {
    flex-direction: row;
  }
  
  .Headline {
    width: 60%;
    text-align: left;
  }
  
  .Filter {
    width: 40%;
    text-align: right;
  }
  
  /* LegalSet nebeneinander */
  .LegalSet {
    flex-direction: row;
  }
  
  .LegalTxt {
    width: 70%;
    text-align: left;
  }
  
  .LegalNav {
    width: 30%;
    text-align: left;
  }
  
  /* TextBlock_2Cols - 2 Spalten */
  .TextBlock_2Cols p {
    column-count: 2;
    column-gap: 4%;
  }
  
  /* GalleryGrid 4 Spalten */
  .GalleryGrid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Menu Grid 4 Spalten */
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Menu Footer nebeneinander */
  .menu-footer {
    flex-direction: row;
    justify-content: space-between;
  }

.closeNav_icon{
	width: 80px;
	}

.openNav_icon{
	width: 80px;
	}

.nav-icon {
	width: 45px;
	}
  
}

/* 2XL - Extra Extra Large (= 1536px) - Very Large Desktop */
@media (min-width: 1536px) {
  .base-wrapper {
    width: 60%;
  }
  
  .logo-img {
    height: 200px;
  }
  
  /* HeadlineSet nebeneinander */
  .HeadlineSet {
    flex-direction: row;
  }
  
  .Headline {
    width: 60%;
    text-align: left;
  }
  
  .Filter {
    width: 40%;
    text-align: right;
  }
  
  /* LegalSet nebeneinander */
  .LegalSet {
    flex-direction: row;
  }
  
  .LegalTxt {
    width: 70%;
    text-align: left;
  }
  
  .LegalNav {
    width: 30%;
    text-align: left;
  }
  
  /* TextBlock_2Cols - 2 Spalten */
  .TextBlock_2Cols p {
    column-count: 2;
    column-gap: 4%;
  }
  
  /* GalleryGrid 4 Spalten */
  .GalleryGrid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Menu Grid 4 Spalten */
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Menu Footer nebeneinander */
  .menu-footer {
    flex-direction: row;
    justify-content: space-between;
  }

.closeNav_icon{
	width: 80px;
	}

.openNav_icon{
	width: 80px;
	}

.nav-icon {
	width: 45px;
	}
  
}

/* ================================
   WCAG 2.2 ACCESSIBILITY
   ================================ */

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Erhöhter Kontrast für bessere Lesbarkeit */
@media (prefers-contrast: high) {
  html {
    color: #FFFFFF;
  }
  
  .artist-name,
  .album-info {
    color: #EEEEEE;
  }
}

/* Skip to main content (für Screen Reader) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000000;
  color: #FFFFFF;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}