/* ============================================================
   Athen 2026 — Teaser-Landingpage
   Nur System-Fonts, keine externen Requests, kein Tracking.
   ============================================================ */

:root {
  --cream: #F8F5EE;
  --overlay: rgba(0, 0, 0, 0.15);
  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #000;
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 40rem;
  text-align: center;
  color: var(--cream);
  opacity: 1;
}

.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2.75rem, 11vw, 6.5rem);
  line-height: 1.05;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-date {
  margin: 0.75rem 0 0;
  font-family: var(--serif);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.05rem, 3.2vw, 1.75rem);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero-tagline {
  margin: 1rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  opacity: 0.75;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* ------------------------------------------------------------
   Footer overlay
   ------------------------------------------------------------ */

.hero-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 1rem 1.5rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  text-align: center;
  color: var(--cream);
}

.footer-copyright {
  margin: 0 0 0.4rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  opacity: 0.85;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.75rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(248, 245, 238, 0.5);
  padding-bottom: 1px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.footer-links a:hover {
  border-bottom-color: var(--cream);
}

.footer-links a:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ------------------------------------------------------------
   Einblenden (reine CSS-Keyframes)
   ------------------------------------------------------------ */

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content {
    animation: fade-in 1.6s ease-out;
  }

  .hero-footer {
    animation: fade-in 1.6s ease-out;
  }
}

/* ------------------------------------------------------------
   Desktop (>=768px): vollflächiges Hero-Bild, 100vh/100dvh
   ------------------------------------------------------------ */

@media (min-width: 768px) {
  .hero {
    height: 100vh;
    height: 100dvh;
  }

  .hero-picture {
    height: 100%;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ============================================================
   Impressum / Datenschutz
   ============================================================ */

.legal-page {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: #1a1a1a;
  font-family: var(--sans);
  line-height: 1.6;
}

.legal-wrap {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.legal-back {
  display: inline-block;
  margin-bottom: 2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.4);
}

.legal-back:hover {
  border-bottom-color: #1a1a1a;
}

.legal-back:focus-visible,
.legal-wrap a:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 3px;
  border-radius: 2px;
}

.legal-wrap h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  margin: 0 0 1.5rem;
}

.legal-wrap section {
  margin-bottom: 2.5rem;
}

.legal-wrap h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 0 0 1rem;
  scroll-margin-top: 1.5rem;
}

.legal-wrap h3 {
  font-family: var(--sans);
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-wrap p {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
}

.legal-wrap a {
  color: #1a1a1a;
}

.legal-wrap ul {
  margin: 0 0 0.9rem;
  padding-left: 1.2rem;
  font-size: 0.95rem;
}
