/* LocationTV Deluxe — Global Styles */
/* Bunny Fonts (DSGVO-konform, kein Google) */
@import url('https://fonts.bunny.net/css?family=playfair-display:400,400i,700,700i|cormorant-garamond:400,400i,500,600|dm-mono:400');

:root {
  --gold: #C8A84B;
  --gold-light: #d4b85e;
  --noir: #000000;
  --noir-soft: #0a0a0a;
  --card-bg: #111111;
  --cream: #F7F3EC;
  --cream-muted: #b8b0a4;
  --wine: #8B2252;
  --muted: #666;
  --border: #1a1a1a;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--noir);
  color: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ——— TYPOGRAPHY ——— */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
}
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.6rem); }

p { max-width: 680px; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover { color: var(--gold-light); }

.mono {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— LAYOUT ——— */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-border {
  border-top: 1px solid var(--border);
}

/* ——— HEADER / NAV ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
}
.logo .tv { color: var(--gold); }
.logo .deluxe {
  color: var(--gold);
  font-style: italic;
  font-size: 14px;
  display: block;
  margin-top: -4px;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.96);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
}

/* ——— HERO ——— */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(200,168,75,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  margin-bottom: 20px;
}
.hero h1 .gold { color: var(--gold); }

.hero-subtitle {
  font-size: 20px;
  color: var(--cream-muted);
  margin-bottom: 40px;
  font-style: italic;
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.btn:hover {
  background: var(--gold);
  color: var(--noir);
}
.btn-filled {
  background: var(--gold);
  color: var(--noir);
}
.btn-filled:hover {
  background: var(--gold-light);
  color: var(--noir);
}

/* ——— FILM GRID ——— */
.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.film-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none;
  color: var(--cream);
  display: block;
}
.film-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.film-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.film-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.film-card-image .placeholder-text {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
}

.film-card-body {
  padding: 20px;
}
.film-card-body h3 {
  margin-bottom: 8px;
  font-size: 20px;
}
.film-card-body p {
  font-size: 15px;
  color: var(--cream-muted);
  margin-bottom: 12px;
}
.film-card-price {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--gold);
}

/* ——— FILM DETAIL PAGE ——— */
.film-hero {
  padding: 120px 24px 60px;
  text-align: center;
}

.film-hero .mono {
  margin-bottom: 12px;
  display: block;
}

.film-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.film-meta-item {
  text-align: center;
}
.film-meta-item .value {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--gold);
}
.film-meta-item .label {
  font-size: 13px;
  color: var(--muted);
}

.film-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.film-content p {
  margin-bottom: 20px;
  font-size: 18px;
  max-width: 100%;
}

.trailer-embed {
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trailer-embed .placeholder-text {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
}

.cta-box {
  background: var(--card-bg);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}
.cta-box h3 { margin-bottom: 8px; }
.cta-box .price {
  font-family: 'DM Mono', monospace;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
}
.cta-box p {
  margin: 0 auto 20px;
  color: var(--cream-muted);
  font-size: 16px;
}

/* ——— ABOUT SECTION ——— */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; gap: 32px; }
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--cream-muted); margin-bottom: 16px; }

/* ——— FOOTER ——— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-logo .tv { color: var(--gold); }
.footer-logo .deluxe {
  color: var(--gold);
  font-style: italic;
  font-size: 12px;
  display: block;
  letter-spacing: 3px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #333;
  letter-spacing: 1px;
}

/* ——— COLLECTION BANNER ——— */
.collection-banner {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 60px;
}
.collection-banner h3 { margin-bottom: 8px; }
.collection-banner .price {
  font-family: 'DM Mono', monospace;
  font-size: 24px;
  color: var(--gold);
  margin: 12px 0 8px;
}
.collection-banner .savings {
  font-size: 14px;
  color: var(--cream-muted);
  margin-bottom: 20px;
}

/* ——— IMPRESSUM ——— */
.legal-page {
  padding: 120px 24px 80px;
  max-width: 680px;
  margin: 0 auto;
}
.legal-page h1 { font-size: 28px; margin-bottom: 32px; }
.legal-page h2 { font-size: 20px; margin: 28px 0 12px; }
.legal-page p { color: var(--cream-muted); margin-bottom: 12px; font-size: 16px; }

/* ——— UTILITIES ——— */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
