/* ==========================================================================
   LICHTSPIELFREUNDE HÜRTH -- "Cinematic Noir"
   Grayscale-dominant with warm projector-gold accent
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* --- Custom Properties --- */
:root {
  /* Grays — derived from logo */
  --noir:          #0e0e0e;
  --bg-deep:       #121212;
  --bg-surface:    #1a1a1a;
  --bg-card:       #222222;
  --bg-elevated:   #2a2a2a;
  --border:        #333333;
  --border-light:  #444444;
  --text-muted:    #777777;
  --text-secondary:#a0a0a0;
  --text-primary:  #d8d8d8;
  --text-bright:   #eeeeee;
  --white:         #f5f5f5;

  /* Accent — warm projector gold */
  --gold:          #c8a455;
  --gold-light:    #d9bb72;
  --gold-dim:      #a08035;
  --gold-glow:     rgba(200, 164, 85, 0.15);
  --gold-glow-strong: rgba(200, 164, 85, 0.3);

  /* Typography */
  --font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:     'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;

  /* Spacing scale */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Layout */
  --max-width:    1140px;
  --nav-height:   72px;
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;

  /* Transitions */
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.45, 0, 0.55, 1);
  --duration-fast: 0.2s;
  --duration-med:  0.4s;
  --duration-slow: 0.7s;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-deep);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Subtle film grain overlay on body */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}
a:hover {
  color: var(--gold-light);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-bright);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: var(--space-md);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Reveal Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes spotlightSweep {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
  50%      { box-shadow: 0 0 20px 4px var(--gold-glow-strong); }
}

.reveal {
  opacity: 0;
  animation: fadeInUp var(--duration-slow) var(--ease-out) forwards;
}
.reveal-d1 { animation-delay: 0.1s; }
.reveal-d2 { animation-delay: 0.25s; }
.reveal-d3 { animation-delay: 0.4s; }
.reveal-d4 { animation-delay: 0.55s; }
.reveal-d5 { animation-delay: 0.7s; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid var(--border);
  transition: background var(--duration-med) var(--ease-out);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(1.1);
  transition: filter var(--duration-fast) var(--ease-out);
}
.nav-logo:hover img {
  filter: brightness(1.3);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-xs);
}

.nav-links a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: var(--gold-glow);
}

.nav-links .nav-cta {
  color: var(--noir);
  background: var(--gold);
  font-weight: 600;
  margin-left: var(--space-sm);
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  color: var(--noir);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: transform var(--duration-fast) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile nav --- */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    flex-direction: column;
    background: var(--bg-surface);
    border-left: 1px solid var(--border);
    padding: calc(var(--nav-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
    gap: var(--space-xs);
    transform: translateX(100%);
    transition: transform var(--duration-med) var(--ease-out);
    z-index: 999;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 1rem;
    padding: var(--space-md);
  }
  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
    margin-top: var(--space-sm);
  }

  /* overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
  }
  .nav-overlay.open {
    display: block;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  overflow: hidden;
}

/* Dramatic spotlight gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 20%, rgba(200, 164, 85, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 80%, rgba(200, 164, 85, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(30, 30, 30, 1) 0%, var(--bg-deep) 100%);
  z-index: 0;
}

/* Diagonal film-strip decorative line */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 1px;
  height: 130%;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  transform: rotate(-15deg);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-logo {
  width: 160px;
  height: 160px;
  margin: 0 auto var(--space-xl);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-light);
  box-shadow:
    0 0 60px rgba(200, 164, 85, 0.1),
    0 4px 30px rgba(0, 0, 0, 0.5);
  animation: fadeIn var(--duration-slow) var(--ease-out) forwards;
}
.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--text-bright) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.02em;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--noir);
  background: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}
.hero-cta:hover {
  background: var(--gold-light);
  color: var(--noir);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 164, 85, 0.25);
}
.hero-cta svg {
  width: 18px;
  height: 18px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  margin: 0 auto;
  animation: fadeIn 1.5s var(--ease-out) 1s forwards;
  opacity: 0;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-dark {
  background: var(--bg-surface);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: var(--space-md);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}
.stat-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 4px 20px rgba(200, 164, 85, 0.08);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-highlight {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg) var(--space-xl);
  margin-top: var(--space-xl);
}
.about-highlight p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ==========================================================================
   CONTACT INFO CARDS
   ========================================================================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: border-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}
.contact-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  color: var(--gold);
}
.contact-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}
.contact-card a {
  color: var(--text-primary);
}
.contact-card a:hover {
  color: var(--gold);
}

.contact-hours {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CTA SECTION (Register)
   ========================================================================== */
.cta-section {
  text-align: center;
  padding: var(--space-3xl) 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto var(--space-xl);
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}

.form-label .required {
  color: var(--gold);
  margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--bg-deep) inset;
  -webkit-text-fill-color: var(--text-primary);
  caret-color: var(--text-primary);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.form-checkbox span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all var(--duration-fast) var(--ease-out);
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  color: var(--noir);
  background: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--noir);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 164, 85, 0.2);
}

.btn-outline {
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
  background: var(--gold-glow);
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.85rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Honeypot */
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Success / Error messages */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  margin-bottom: var(--space-xl);
  border: 1px solid;
}
.alert-success {
  background: rgba(72, 160, 100, 0.1);
  border-color: rgba(72, 160, 100, 0.3);
  color: #6fcf89;
}
.alert-error {
  background: rgba(200, 80, 70, 0.1);
  border-color: rgba(200, 80, 70, 0.3);
  color: #e0706a;
}

/* ==========================================================================
   CONTACT FORM PAGE
   ========================================================================== */
.page-header {
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-2xl);
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 30% 30%, rgba(200, 164, 85, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-content {
  padding-bottom: var(--space-3xl);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.contact-sidebar h3 {
  margin-bottom: var(--space-lg);
}

.contact-sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.contact-sidebar-card h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.contact-sidebar-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

@media (max-width: 768px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ========================================================================== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: var(--space-3xl);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}
.legal-content li {
  margin-bottom: var(--space-xs);
}

.legal-address {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-lg) 0;
}
.legal-address p {
  margin-bottom: var(--space-xs);
}

/* ==========================================================================
   AUTH PAGES (Login, Register)
   ========================================================================== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  position: relative;
}
.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 50% 40%, rgba(200, 164, 85, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.auth-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.auth-header h1 {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}
.auth-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.auth-footer {
  text-align: center;
  margin-top: var(--space-xl);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   MEMBER AREA
   ========================================================================== */
.member-nav {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) 0;
  margin-top: var(--nav-height);
}

.member-nav-inner {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.member-nav a {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
}
.member-nav a:hover,
.member-nav a.active {
  color: var(--gold);
  background: var(--gold-glow);
}

/* --- Schedule / Spielplan --- */
.schedule-grid {
  display: grid;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.schedule-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}
.schedule-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.schedule-poster {
  position: relative;
  background: var(--bg-elevated);
  overflow: hidden;
  min-height: 280px;
}
.schedule-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.schedule-poster .no-poster {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.schedule-details {
  padding: var(--space-xl) var(--space-xl) var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.schedule-date {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.schedule-title {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

.schedule-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.schedule-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.schedule-meta-item svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.fsk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 28px;
  height: 20px;
  padding: 0 6px;
  border-radius: 3px;
  color: var(--white);
  line-height: 1;
}
.fsk-0   { background: #f5f5f5; color: #333; }
.fsk-6   { background: #f5c518; color: #333; }
.fsk-12  { background: #e07b00; }
.fsk-16  { background: #0078d7; }
.fsk-18  { background: #c0392b; }

.schedule-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.schedule-info-text {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--gold-glow);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.schedule-empty {
  text-align: center;
  padding: var(--space-3xl);
  color: var(--text-muted);
}
.schedule-empty h3 {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

/* Clickable film title */
.schedule-title-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-display);
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  line-height: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}
.schedule-title-btn:hover {
  color: var(--gold);
}

/* Trailer badge */
.schedule-card-footer {
  margin-top: var(--space-md);
  display: flex;
  gap: var(--space-sm);
}
.trailer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: transparent;
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}
.trailer-badge:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}

/* --- Modals --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-med) var(--ease-out);
  backdrop-filter: blur(4px);
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.modal-overlay.is-open .modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-panel {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform var(--duration-med) var(--ease-out),
              opacity var(--duration-med) var(--ease-out);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  transition: color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}
.modal-close:hover {
  color: var(--text-bright);
  border-color: var(--border-light);
}

/* Film detail modal */
.modal-film {
  width: 100%;
  max-width: 760px;
}
.modal-film-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
}
.modal-poster {
  background: var(--bg-elevated);
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  min-height: 320px;
}
.modal-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.modal-date {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-bright);
  margin: 0;
  line-height: 1.2;
}
.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.modal-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}
.modal-info-text {
  padding: var(--space-md);
  background: var(--gold-glow);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--text-primary);
}

@media (max-width: 600px) {
  .modal-film-inner {
    grid-template-columns: 1fr;
  }
  .modal-poster {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    min-height: 200px;
    max-height: 260px;
  }
}

/* Trailer / YouTube modal */
.modal-trailer {
  width: 100%;
  max-width: 900px;
}
.modal-youtube {
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.modal-youtube iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.schedule-day-header {
  grid-column: 1 / -1;
  padding: var(--space-md) 0 var(--space-sm);
  border-bottom: 2px solid var(--gold);
  margin-top: var(--space-md);
}

.schedule-day-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
.schedule-card {
    grid-template-columns: 1fr;
  }
  .schedule-poster {
    min-height: 240px;
    max-height: 360px;
  }
  .schedule-details {
    padding: var(--space-lg);
  }
}

/* ==========================================================================
   MEMBER INFO PAGE
   ========================================================================== */
.member-info-content {
  max-width: 720px;
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.member-info-content h2 {
  margin-bottom: var(--space-md);
}

.member-info-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}

.newsletter-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.newsletter-toggle-info h3 {
  margin-bottom: var(--space-xs);
}
.newsletter-toggle-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--gold-glow-strong);
  border-color: var(--gold);
}
.toggle-switch input:checked + .toggle-slider::before {
  background: var(--gold);
  transform: translateX(24px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: var(--noir);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: var(--space-sm);
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all var(--duration-fast) var(--ease-out);
}
.footer-social a:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
  background: var(--gold-glow);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}
