/* ============================================
   ZUKUNFT AUF AUTOPILOT — Gemeinsame Stile
   Ausgelagert aus index.html
   ============================================ */

/* --- Farbvariablen --- */
:root {
  --blue-deep: #0a1730;
  --blue: #0f2040;
  --blue-mid: #16294a;
  --blue-card: #142540;
  --gold: #C9A84C;
  --gold-soft: #d4b969;
  --gold-bright: #e6c870;
  --cream: #f4ede0;
  --cream-mute: rgba(244, 237, 224, 0.75);
  --cream-low: rgba(244, 237, 224, 0.5);
}

/* --- Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
html, body { overflow-x: hidden; }

/* --- Basis-Body --- */
body {
  background: var(--blue-deep);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/* --- Subtile Korn-Textur über alles --- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* --- Section-Beschriftungen --- */
.section-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before { content: "— "; }
.section-label::after { content: " —"; }

.section-title {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-bright);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

/* --- Footer --- */
footer {
  padding: 4rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  text-align: center;
  background: var(--blue-deep);
  position: relative;
  z-index: 2;
}

.footer-logo {
  width: 60px;
  margin-bottom: 1.5rem;
  opacity: 0.7;
  filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.15));
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-mute);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-copyright {
  font-size: 0.7rem;
  color: var(--cream-low);
  letter-spacing: 0.05em;
}

.footer-logo-link {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.footer-logo-link:hover {
  transform: translateY(-2px);
}
