/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0a;
  color: #e8e4df;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== Container ===== */
.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  height: 48px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 2.2rem;
}

.nav a {
  color: #c9c3bb;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: #fff;
}

/* ===== Hero ===== */
.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 45vh;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0ebe3;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: 1.05rem;
  color: #d4cec6;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  background: #0a0a0a;
}

#projekte {
  margin-top: 85vh;
  padding-top: 180px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0ebe3;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  color: #8a827a;
  font-size: 0.95rem;
  margin-bottom: 3.5rem;
}

/* ===== Main Player ===== */
.main-player {
  margin-bottom: 2.5rem;
  background: #141210;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.player-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0d0c0b;
  overflow: hidden;
}

.player-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  z-index: 2;
}

.main-cover.active {
  display: block;
}

.main-player-info {
  padding: 1.1rem 1.4rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-player-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #f0ebe3;
}

.main-player-info span {
  font-size: 0.85rem;
  color: #8a827a;
}

/* ===== Group Titles & Thumbnails ===== */
.group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #d4cec6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 3.2rem 0 1.5rem;
  text-align: left;
}

.thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.thumb {
  background: #141210;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.35s ease, filter 0.35s ease;
}

.thumb:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: scale(1.03);
  filter: brightness(0.72);
}

.thumb.active {
  border-color: rgba(255, 255, 255, 0.28);
}

.thumb video,
.thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.thumb-info {
  padding: 0.7rem 0.9rem 0.85rem;
}

.thumb-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #e8e4df;
  margin-bottom: 0.15rem;
}

.thumb-info span {
  font-size: 0.75rem;
  color: #7a736c;
}

/* ===== Platforms ===== */
.platforms {
  margin-top: 2.8rem;
  text-align: center;
}

.platforms p {
  font-size: 0.85rem;
  color: #8a827a;
  letter-spacing: 0.06em;
  margin-bottom: 1.1rem;
}

.platform-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  flex-wrap: wrap;
}

.platform-icons a {
  color: #8a827a;
  transition: color 0.25s ease, transform 0.25s ease;
}

.platform-icons a:hover {
  color: #e8e4df;
  transform: translateY(-3px);
}

.platform-icons svg {
  width: 32px;
  height: 32px;
  display: block;
}

/* ===== About – edler Einschub ===== */
.section-about {
  background: #0f0e0c;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 160px;
  padding-bottom: 120px;
}

.about-inner {
  max-width: 680px;
  margin: 0 auto;
}

.about-content {
  text-align: left;
}

.about-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #f0ebe3;
  margin: 1.5rem 0 1.4rem;
  text-align: center;
}

.about-line {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  margin-bottom: 1.15rem;
  color: #a89f94;
  font-size: 0.98rem;
  line-height: 1.7;
}

.about-line.lead {
  font-size: 1.15rem;
  color: #d4cec6;
  margin-bottom: 0.35rem;   /* näher zusammen */
}

.about-line.lead.tight + .about-line.lead.tight {
  margin-bottom: 1.3rem;
}

.about-line[data-dir="left"] {
  transform: translateX(-60px);
}

.about-line[data-dir="right"] {
  transform: translateX(60px);
}

.about-line.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Contact ===== */
.section-contact {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 120px;
}

.contact-email {
  margin: 1.8rem 0 2.5rem;
}

.contact-email a {
  color: #e8e4df;
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(232, 228, 223, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.25s ease;
}

.contact-email a:hover {
  border-color: #e8e4df;
}

.social {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}

.social-link {
  color: #8a827a;
  transition: color 0.25s ease;
}

.social-link:hover {
  color: #e8e4df;
}

/* ===== Footer ===== */
.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
  color: #5c564f;
  letter-spacing: 0.04em;
}

/* ===== Mobile ===== */
@media (max-width: 800px) {
  .header-inner {
    height: 64px;
  }

  .logo {
    height: 40px;
  }

  .nav {
    gap: 1.2rem;
  }

  .nav a {
    font-size: 0.8rem;
  }

  .hero {
    height: 70vh;
    padding-top: 6vh;
  }

  #projekte {
    margin-top: 70vh;
    padding-top: 80px;
  }

  .section {
    padding: 70px 0;
  }

  .section-about {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .section-contact {
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-line[data-dir="left"],
  .about-line[data-dir="right"] {
    transform: translateX(0);
  }
}