/* Deine Schrift: Datei nach OXYMORE STUDIO/fonts/ legen, dann lädt sie automatisch.
   Erwarteter Dateiname: ABCWalterNeue-Extrabold.woff2 (oder .ttf unten anpassen) */
@font-face {
  font-family: "Walter Neue";
  src: url("fonts/ABCWalterNeue-Extrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Walter Neue";
  src: url("fonts/ABCWalterNeue-ExtraboldItalic.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* Schriftart hier ändern: einfach den ersten Namen austauschen.
   Falls die Walter-Datei noch fehlt, wird Arial Bold als Ersatz genutzt. */
:root {
  --schriftart: "Walter Neue", Arial, sans-serif;
  --schriftgroesse: 0.7rem;
}

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

body {
  background-color: #000000;
  color: #ffffff;
  font-family: var(--schriftart);
  font-size: var(--schriftgroesse);
}

/* Weiße zweite Seite */
body.seite-weiss {
  background-color: #ffffff;
  color: #000000;
}

.center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

/* Ganze erste Seite anklickbar */
.fullscreen-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* Alle Texte gleich groß */
.text {
  font-size: var(--schriftgroesse);
  font-weight: 400;
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

/* Obere Leiste der weißen Seite */
.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.4rem 0.5rem;
  font-size: 0.6rem;
}

.topbar a {
  text-decoration: none;
  color: #000000;
}

/* Knöpfe sollen wie Text aussehen */
.topbar button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: inherit;
  color: inherit;
}

.col {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.col-center {
  align-items: center;
}

.col-left {
  position: relative;
}

.center-inner {
  position: relative;
  display: inline-block;
  text-align: left;
}

.col-right {
  align-items: flex-end;
}

/* OFFICE: Label rechts, Text links daneben auf gleicher Höhe */
.office-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1.5rem;
}

/* OXYMORE STUDIO (Marke) */
.info-text {
  max-width: 340px;
  text-transform: uppercase;
  font-size: 0.6rem;
  line-height: 1.3;
}

.brand {
  display: inline-block;
  text-align: left;
  font-family: Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

/* COLLABS und OFFICE: gleiche Schrift wie der Beschreibungstext (nicht fett) */
.nav-link {
  font-family: Arial, sans-serif;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
}

/* Aufklappbare Texte */
.about-text,
.office-text {
  display: none;
  font-family: Arial, sans-serif;
  font-weight: 400;
  text-transform: none;
}

.about-text {
  /* erscheint direkt nach "OXYMORE STUDIO" in der gleichen Zeile */
}

.office-content {
  display: none;
  max-width: 320px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  text-align: right;
}

.office-content.visible {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.4rem;
  z-index: 5;
}

.office-address {
  margin-top: 1.2rem;
}

.company {
  font-family: Arial, sans-serif;
  font-weight: 400;
}

.office-email {
  margin-top: 1.2rem;
}

.office-insta {
  margin-top: 0.6rem;
}

.office-email a,
.office-insta a {
  text-decoration: none;
  color: #000000;
}

/* COLLABS-Liste */
.collabs-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin-top: 0.4rem;
  font-family: Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: left;
}

.collabs-list li {
  white-space: nowrap;
}

.collabs-list.visible {
  display: block;
}

.collabs-list .num {
  margin-right: 0.4rem;
}

.about-text.visible {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.4rem;
  max-width: 340px;
  z-index: 5;
}

.office-text.visible {
  display: block;
}

/* Video-Landingpage (index.html) */
body.landing {
  background-color: #000000;
  overflow: hidden;
}

.landing-link {
  display: block;
  position: fixed;
  inset: 0;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  cursor: pointer;
}

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

.landing-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.landing-center {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  z-index: 2;
}

.landing-title {
  font-family: "Inter", Arial, sans-serif;
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.4rem, 2.2vw, 1.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

/* Projekt-Galerie (seite2.html) */
.projects {
  position: relative;
  width: 100%;
  padding-bottom: 10vh;
}

.project {
  margin: 0;
  max-width: 90%;
}

.project-media {
  position: relative;
  width: 100%;
}

.project-media img {
  display: block;
  width: 100%;
  height: auto;
}

/* Bild-Zyklus (z.B. Stefanie Grau): fester Rahmen wie Bild 1, zweites Bild object-fit */
.cycle-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cycle-frame .cycle-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  pointer-events: none;
}

.cycle-frame .cycle-img.is-active {
  opacity: 1;
}

.project-desc {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0.5rem 0.6rem;
  background-color: #ffffff;
  color: #000000;
  font-family: Arial, sans-serif;
  font-size: 0.6rem;
  line-height: 1.3;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease-in-out;
}

.project-desc .p-title {
  margin-right: 0.3em;
}

.project-media:hover .project-desc {
  opacity: 1;
}

.project figcaption {
  margin-top: 0.2rem;
  font-family: Arial, sans-serif;
  font-size: 0.6rem;
  line-height: 1.3;
  color: #000000;
}

.p-title.p-title--upright {
  font-style: normal;
}

.p-title.p-title--upright em {
  font-style: italic;
}

.p-title a {
  color: inherit;
  text-decoration: none;
}

.p-title a:hover {
  text-decoration: underline;
}

.p-title {
  font-weight: 700;
  font-style: italic;
}

.p-sub {
  font-weight: 400;
  font-style: italic;
}
