/* Deine Schrift: Datei nach GAY/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: 800;
  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;
}

.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 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1.5rem;
}

/* GAY ARCHITECTURE (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: var(--schriftart);
  font-weight: 800;
  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 "GAY ARCHITECTURE" 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;
}

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

.company {
  font-family: var(--schriftart);
  font-weight: 800;
}

.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: inline;
}

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