/*------------------Allgemein----------------------------*/

body, html {
  margin: 0;
  font-family: "Roboto Light", sans-serif;
  scroll-behavior: smooth; /* Smooth Scrolling */
  font-weight: 200;
}

h1, h2, p {
  color: #fff;
}

h2 {
  font-size: 5rem;
  font-weight: 200;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin: 0.5rem 0 0 0;
}

p{
  font-size: 0.8rem;
}

/* Parallax Effekt */
.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
/* Hintergrund Video*/
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Passt die Breite an den Viewport an */
  height: 100%; /* Passt die Höhe an den Viewport an */
  object-fit: cover; /* Beschneidet das Video, sodass es den Bildschirm füllt */
  pointer-events: none;

}


.section-container{
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;

  &#home, #dj-sets{
    height: 100vh;
  }
}
.content-container{
  background-color: rgba(0, 0, 0, 0.52);
  position: relative;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

/*------------------Navigation----------------------------*/
.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  padding: 1em;
}
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: end;
  align-items: end;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  margin: 0 1em;
}
.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2em;
}
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: black;
}
.burger .line {
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
}
@media (max-width: 768px) {
  .burger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 5em; /* Hamburger rechts */
    top: 1em; /* Gleiche Höhe wie Navigation */
    border: none; /* Entfernt den Rahmen */
    background: transparent; /* Entfernt den Standard-Hintergrund */
    padding: 0; /* Entfernt jegliche Innena
 Gleiche Höhe wie Navigation */
    z-index: 1000;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgb(0, 0, 0);
    z-index: 999;
  }
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontales Zentrieren */
    justify-content: center; /* Vertikales Zentrieren */
    height: 100vh; /* Deckt die gesamte Höhe des Bildschirms ab */
    width: 100vw; /* Optional: Deckt die gesamte Breite des Bildschirms ab */
    position: fixed; /* Fixiere das Menü für eine garantierte Mittigkeit */
    top: 0;
    left: 0;
    background: rgb(0, 0, 0);
    z-index: 999;
    margin: 0; /* Entferne ungewollte Abstände */
    padding: 0; /* Entferne ungewollte Abstände */
    text-align: center; /* Fokussiere horizontale Textausrichtung */
  }

  .nav-menu li {
    text-align: center;
    margin: 1em 0;
  }

  .socialLinks img {
    width: 35px; /* Kleinere Größe für mobile Geräte */
  }

  .socialLinks .container {
    gap: 1rem; /* Reduziere den Abstand zwischen Icons auf mobilen Geräten */
  }

}

/*------------------HOME----------------------------*/


.home-slogan {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white; /* entspricht text-white */
  font-size: 1rem;
  font-weight: 200; /* entspricht font-extralight */
  text-align: center; /* entspricht text-center */
  letter-spacing: 0.1em; /* Buchstaben-Abstand */
  text-transform: uppercase; /* entspricht uppercase */
  animation: fadeIn 10s ease-in-out forwards, fadeOut 1s ease-in-out 15s forwards; /* Neue Animation für Fade-Out */
  /* Verhindert den Zeilenumbruch */
  white-space: nowrap;
}
.mobile-home{
  display: none;
}

.logo {
  display: block;
  width: 60vw;
  height: auto;
  z-index: 999;
}

.play-button {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ffffff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  cursor: pointer;
  outline: none;
  z-index: 10;
  transition: transform 0.3s ease, background-color 0.4s ease-in-out;
}

.play-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid white;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.play-button.playing::before {
  content: '';
  width: 6px;
  height: 20px;
  border: none;
  background: white;
  box-shadow: 10px 0 0 white;
  left: 45%;
}

.play-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px){
  .play-button {
    bottom: 10%;
    width: 45px;
    height: 45px;
  }

  .play-button::before {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid white;
  }

  .play-button.playing::before {
    width: 4px;
    height: 14px;
    box-shadow: 7px 0 0 white;
  }


  .home-screen{
    display: none;
  }
  .mobile-home{
    display: flex;
  }
  .logo{
    display: block;
    z-index: 999;
    width: 90vw;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}





/*------------------SocialLinks----------------------------*/
.socialLinks {
  display: flex;
  justify-content: center;  /* Zentriert horizontal */
  align-items: center;     /* Zentriert vertikal */
  flex-wrap: wrap;         /* Icons umbrechen, falls nötig */
  /*height: 100vh;           !* Section nimmt die volle Höhe des Bildschirms ein *!*/
  padding: 2em 0;
  background-color: #000;  /* Hintergrundfarbe (optional) */
  color: #fff;             /* Schriftfarbe */
}
/* Alle Links gleichmäßig verteilen */
.socialLinks .container {
  display: flex;
  justify-content: center; /* Zentrierte Ausrichtung */
  gap: 2rem;              /* Abstand zwischen den Icons */
  flex-wrap: wrap;        /* Umbrechen, falls Fenster zu klein */
}
.socialLinks a {
  text-decoration: none;
}
.socialLinks img {
  /*width: 50px;              !* Icon-Größe anpassen *!*/
  /*height: auto;             !* Proportionen beibehalten *!*/
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.socialLinks img:hover {
  transform: scale(1.2);    /* Leichtes Vergrößern beim Hover */
  opacity: 0.8;             /* Etwas Transparenz */
}

/*------------------Bio----------------------------*/
.biography-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  margin: auto;
  height: auto;
}

.more-button {
  border: none;
  text-decoration: underline;
  color: white;
  background: none;
  cursor: pointer;
}


/* Linke Spalte: Bild */
.biography-image {
  flex: 1;
}

.biography-image img {
  width: 100%;
  display: block;
  border-radius: 4px;
  transition: transform 0.3s ease; /* Sanfte Transitionszeit festlegen */

}

/* Rechte Spalte: Inhalt mit transparentem Hintergrund */
.biography-content {
  flex: 1;
  background: rgba(0, 0, 0, 0.5); /* Halbtransparenter Hintergrund */
  padding: 2rem;
  border-radius: 4px;
  color: #fff;
  text-align: right;
}

.biography-content h2 {
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.biography-content p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.bio-text-big.hidden {
  display: none; /* Versteckt das Element */
}

@media (max-width: 1024px) {
  .biography-container {
    flex-direction: column;
  }
  .biography-content {
    text-align: center;
  }
  .biography-content p{
    font-size: 1rem;
  }



}





/*---------------------Dj-Sets -------------------------*/

/* Content-Container zentriert Profilbild und Überschrift untereinander */

/* Container für die Inhalte (z.B. Profilbild, Überschrift & Boxen) */
.dj-sets-container {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Profilbild */
.profile-picture {

  overflow: hidden;
  margin-bottom: 1rem;
}

.profile-picture img {
  width: 100%;
  height: 100%;

  object-position: center top;
}

/* Überschrift */
.content-container h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

/* Flexbox-Container für die DJ-Sets-Boxen */
.dj-sets-box-container {
  height: 70vh;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Gleich große Boxen */
.dj-sets-box {
  flex: 1 1 30%;
  /* Sicherstellen, dass die Boxen nicht zu klein werden */
  min-width: 200px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}


.dj-sets-box:nth-child(1) {
  background: url("../img/djSetsBoxBackground/djSetsBoxBackground1.png") no-repeat center/cover; /* Farbe für Box 2 */
}

.dj-sets-box:nth-child(2) {
  background: url("../img/djSetsBoxBackground/djSetsBoxBackground2.png") no-repeat center/cover; /* Farbe für Box 2 */
}

.dj-sets-box:nth-child(3) {
  background: url("../img/djSetsBoxBackground/djSetsBoxBackground3.png") no-repeat center/cover; /* Farbe für Box 2 */
}

.dj-sets-box:nth-child(4) {
  background: url("../img/djSetsBoxBackground/djSetsBoxBackground5.png") no-repeat center/cover; /* Farbe für Box 2 */
}

.dj-sets-box:nth-child(5) {
  background: url("../img/djSetsBoxBackground/djSetsBoxBackground4.png") no-repeat center/cover; /* Farbe für Box 2 */
}

@media (max-width: 768px){
  .dj-sets-box-container{
    height: 100vh;
  }
}


/*----------------------------------------------*/


/*------------------------Gallery----------------------*/
/* Gallerien-Container: feste Breite und Höhe */


.gallery-container {
  position: relative;
  width: 70vw;   /* feste Breite */
  height: 70vh;  /* feste Höhe */
  overflow: hidden;
  margin: auto;   /* Zentrierung */


}

/* Container für die Slides */
.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Einzelne Bilder in der Galerie */
.slides img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* Das aktive Bild (Slide) wird eingeblendet */
.slides img.active {
  opacity: 1;
}

/* Container für die Dots – innerhalb der Galerie, am unteren Rand */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

/* Dots als Button-Elemente */
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

/* Aktiver Dot */
.dot.active {
  background-color: #fff;
}




@media (max-width: 768px) {
  h2 {
    font-size: 2.5rem; /* Kleinere Schriftgröße für kleinere Bildschirme */
    word-wrap: break-word; /* Optional: Zeilenumbruch erzwingen */
    /* Du kannst hier weitere Anpassungen vornehmen, z.B. margin oder padding */
  }
}


/*------------------------CONTACT----------------------*/

.contact-section {
  background-color: black;
  padding-bottom: 2rem;
}
