:root {
  --gold: #f8d174;
  --black: #000000;
  --cream: #f7f1e5;
  --white: #ffffff;
  --muted: #aaaaaa;
  --line: rgba(248, 209, 116, 0.34);
}

/* Grundeinstellungen */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--black);
  color: var(--white);

  font-family: "Montserrat", sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  margin-top: 0;

  font-weight: 700;
  line-height: 1.1;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  height: 88px;
  padding: 0 5vw;

  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--line);

  backdrop-filter: blur(15px);
}

.brand img {
  width: 210px;
}

/*
  Das Logo im Header wird ausgeblendet.
  Entferne diesen Bereich, wenn du das Logo anzeigen möchtest.
*/

header img {
  visibility: hidden;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.main-nav a {
  position: relative;

  padding: 30px 0;

  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;

  height: 2px;

  background: var(--gold);

  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 24px;

  border: 1px solid var(--gold);

  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.header-button,
.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.header-button:hover,
.btn-gold:hover {
  background: var(--white);
  border-color: var(--white);

  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* Mobile Menü */

.menu-toggle {
  display: none;

  padding: 8px;

  background: none;
  border: 0;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 28px;
  height: 2px;
  margin: 6px;

  background: var(--gold);
}

/* Allgemeine Bereiche */

.section {
  padding: 95px 6vw;
}

.section-light {
  background: var(--cream);
  color: #111111;
}

.section-title {
  margin-bottom: 48px;

  font-size: clamp(2.2rem, 5vw, 4.6rem);
  text-align: center;
}

.gold {
  color: var(--gold);
}

.eyebrow {
  display: block;

  margin-bottom: 14px;

  color: var(--gold);

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 65px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;

  margin-top: 30px;
}

/* Seitenüberschrift */

.page-hero {
  padding: 110px 6vw 85px;

  background: linear-gradient(135deg, #111111, #000000);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-bottom: 18px;

  color: var(--gold);
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.page-hero p {
  max-width: 700px;
  margin-bottom: 0;

  color: #cccccc;
}

/* Datenschutzbereich */

.legal {
  width: min(100%, 1000px);
  margin: 0 auto;
}

/* Einleitung */

.legal-intro {
  margin-bottom: 55px;
  padding-bottom: 35px;

  border-bottom: 1px solid rgba(248, 209, 116, 0.3);
}

.legal-intro h2 {
  margin: 0 0 18px;

  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.legal-intro p {
  max-width: 760px;
  margin: 0;

  color: #cccccc;

  font-size: 1.05rem;
  line-height: 1.8;
}

/* Einzelne Datenschutzpunkte */

.legal-block {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  gap: 24px;

  padding: 38px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Nummer links neben der Überschrift */

.legal-number {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;
  margin-top: 1px;

  color: var(--gold);
  border: 1px solid var(--gold);

  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

/* Textbereich rechts */

.legal-content {
  min-width: 0;
}

.legal-content h2 {
  margin: 0 0 14px;

  color: var(--gold);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.legal-content p {
  margin: 0 0 14px;

  color: #d0d0d0;
  line-height: 1.8;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

/* Links im Datenschutztext */

.legal-content a {
  color: var(--gold);

  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-content a:hover {
  color: var(--white);
}

/* Aufzählungen */

.legal-list {
  display: grid;
  gap: 12px;

  margin: 22px 0 0;
  padding: 0;

  list-style: none;
}

.legal-list li {
  position: relative;

  padding: 14px 18px 14px 48px;

  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(248, 209, 116, 0.16);

  color: #d0d0d0;
}

.legal-list li::before {
  content: "✓";

  position: absolute;
  top: 13px;
  left: 18px;

  color: var(--gold);

  font-weight: 700;
}

/* Hinweisbox */

.legal-note {
  margin-top: 55px;
  padding: 28px 30px;

  background: rgba(248, 209, 116, 0.08);
  border-left: 4px solid var(--gold);

  color: #d7d7d7;
}

.legal-note strong {
  color: var(--gold);
}

/* Footer */

.site-footer {
  padding: 38px 6vw 20px;

  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 50px;
}

.footer-inner img {
  width: 190px;
}

/*
  Das Footer-Logo bleibt sichtbar,
  obwohl das Header-Logo ausgeblendet ist.
*/

.site-footer .footer-inner img {
  visibility: visible;
}

.footer-inner div {
  display: flex;
  gap: 25px;
}

.footer-inner a:hover {
  color: var(--gold);
}

.site-footer p {
  margin-top: 30px;

  color: #777777;

  font-size: 0.78rem;
  text-align: center;
}

/* Animationen */

.reveal {
  opacity: 0;

  transform: translateY(28px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Tablet */

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 78px;
  }

  .brand img {
    width: 180px;
  }

  .header-button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;

    display: none;
    flex-direction: column;
    gap: 0;

    padding: 20px 6vw;

    background: var(--black);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 15px 0;
  }

  .main-nav a::after {
    bottom: 7px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner div {
    flex-wrap: wrap;
  }
}

/* Smartphone */

@media (max-width: 768px) {
  .section {
    padding: 70px 22px;
  }

  .page-hero {
    padding: 80px 22px 60px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 20px;
  }

  .footer-inner img {
    display: block;
    margin: 0 auto;
  }

  .footer-inner div {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;
  }

  .site-footer p {
    margin-top: 20px;
    text-align: center;
  }
}

@media (max-width: 650px) {
  .legal-intro {
    margin-bottom: 35px;
  }

  .legal-block {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;

    padding: 30px 0;
  }

  .legal-number {
    width: 44px;
    height: 44px;

    font-size: 0.8rem;
  }

  .legal-content h2 {
    font-size: 1.35rem;
  }

  .legal-content p,
  .legal-list li {
    font-size: 0.95rem;
  }

  .legal-list li {
    padding: 13px 14px 13px 42px;
  }

  .legal-list li::before {
    left: 15px;
  }

  .legal-note {
    margin-top: 40px;
    padding: 22px;
  }
}