/* ---------------------------------------------------
   GLOBAL FONT + RESET
--------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "The Seasons", serif;
  background: #000;
  color: #fff;
}

/* ---------------------------------------------------
   NAVBAR
--------------------------------------------------- */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 42px;
}

.nav-links a {
  color: #ff8c42;
  font-size: 20px;
  text-decoration: none;
  letter-spacing: 1px;
  opacity: 0.9;
  transition: opacity .25s ease, transform .25s ease;
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ---------------------------------------------------
   LANDING PAGE
--------------------------------------------------- */
.page-landing .landing {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Hintergrundvideo */
.landing-video {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%) scale(1.1);
  object-fit: cover;
  object-position: top center;
  z-index: 0;
}

/* Overlay */
.page-landing .landing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.40)
  );
  z-index: 1;
}

/* Landing Content */
.page-landing .landing-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Logo */
.landing-logo {
  width: 45%;
  max-width: 380px;
  opacity: 0.5;
}

/* Social Icons */
.landing-socials {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
}

/* ✔ Icons bleiben immer weiß — keine Filter mehr */
.landing-socials .social-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  opacity: 0.55;
  transition: transform .2s ease, opacity .2s ease;
}

.landing-socials .social-img:hover {
  transform: translateY(-4px) scale(1.07);
  opacity: 0.9;
}

/* ---------------------------------------------------
   BIO PAGE
--------------------------------------------------- */
.page-bio {
  background: url('sonjaglasder_orablu_2025_film-76.JPG') no-repeat center top;
  background-size: cover;
  min-height: 100vh;
  padding: 60px 0;
}

.bio-page {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
}

.bio-panel {
  max-width: 900px;
  width: 100%;
  padding: 40px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.bio-text-block p {
  margin-bottom: 12px;
}

/* ---------------------------------------------------
   VIDEOS PAGE
--------------------------------------------------- */
.page-videos {
  background: #000;
  color: #fff;
  font-family: "The Seasons", serif;
  overflow-x: hidden;
}

.page-videos h1 {
  text-align: center;
  margin-top: 120px;
  margin-bottom: 60px;
  font-size: 3rem;
  font-style: italic;
  letter-spacing: 2px;
}

/* Filmstrip Wrapper */
.filmstrip-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 40px;
  scrollbar-width: none;
}
.filmstrip-wrapper::-webkit-scrollbar {
  display: none;
}

/* Filmstrip */
.filmstrip {
  display: flex;
  gap: 60px;
  padding: 40px 60px;
  align-items: center;
}

.video-item {
  flex: 0 0 800px;
  text-align: center;
}

.video-aspect {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 0 35px rgba(0,0,0,0.6);
}

.video-aspect iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Beschreibung */
.video-description {
  margin-top: 18px;
  font-size: 1.4rem;
  font-style: italic;
  color: #ccc;
}

/* ---------------------------------------------------
   CONTACT PAGE
--------------------------------------------------- */
.page-contact {
  background: url('sonjaglasder_orablu_2025_film-58.JPG') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  padding-top: 150px;
  text-align: center;
}

.contact-mail a {
  color: #ffe4cd;
  font-size: 26px;
  text-decoration: none;
}

/* ---------------------------------------------------
   MOBILE
--------------------------------------------------- */
@media (max-width: 700px) {

  /* Mobile Video–Fix */
  .landing-video {
    transform: translateX(-50%) translateY(-8%) scale(1.0);
  }

  .landing-logo {
    width: 70%;
    max-width: 260px;
  }

  .landing-socials .social-img {
    width: 40px;
    height: 40px;
  }

  .filmstrip {
    gap: 28px;
    padding: 20px;
  }

  .video-item {
    flex: 0 0 92vw;
  }

  .contact-mail a {
    font-size: 22px;
  }
}
