/* Cinezocker — gemeinsames Stylesheet */

* { box-sizing: border-box; }

:root {
  --bg: #26211c;
  --bg-alt: #2c261f;
  --card: #302a22;
  --border: #453c30;
  --text: #ece7e0;
  --text-dim: #b9b0a2;
  --text-faint: #8a8172;
  --accent: #d9b25c;
  --accent-contrast: #000000;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Libre Franklin', system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.5;
}

h1, h2, h3, .display {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  letter-spacing: 0.02em;
  margin: 0;
}

p { margin: 0 0 18px; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: #e7c877; }

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

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 26px;
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 15px;
}

.site-nav a.is-active {
  color: var(--text);
  font-weight: 700;
}

.site-nav .btn {
  color: #000000;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn:hover { background: #e7c877; color: var(--accent-contrast); }

.btn-lg { padding: 16px 28px; font-size: 16px; }

.btn-outline {
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  display: inline-block;
}

/* Hero */

.hero {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 80px 40px;
  background: radial-gradient(ellipse at 75% 30%, var(--bg-alt) 0%, var(--bg) 60%);
}

.hero-text { flex: 1; display: flex; flex-direction: column; gap: 24px; min-width: 280px; }

.hero-title { font-size: 64px; line-height: 0.95; color: #fff; }

.hero-sub { font-size: 18px; line-height: 1.6; color: var(--text-dim); max-width: 460px; }

.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }

.hero-visual { flex: 1; display: flex; align-items: center; justify-content: center; min-width: 280px; }

.play-tile {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 8 / 5;
  border-radius: 8px;
  background: linear-gradient(155deg, #3a3226, #241f19);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}

/* Sections */

.section { padding: 64px 40px; }
.section-alt { background: var(--bg-alt); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.section-title { font-size: 34px; color: #fff; }

/* Video grid */

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.video-card { display: flex; flex-direction: column; gap: 12px; }

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  background: linear-gradient(155deg, #3a3226, #241f19);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb .play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 16, 10, 0.15);
}

.video-title { font-weight: 600; font-size: 15px; line-height: 1.35; color: var(--text); }
.video-meta { font-size: 12px; color: var(--text-faint); }

/* Movie cards */

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 360px));
  gap: 32px;
}

.movie-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}

.movie-poster { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 5px; }
.credit { font-size: 10px; color: var(--text-faint); }

.movie-title { font-weight: 700; font-size: 19px; color: #fff; }
.movie-meta { font-size: 13px; color: var(--accent); font-weight: 600; }

.rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.rating-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 16px;
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.movie-teaser { font-size: 14px; line-height: 1.55; color: var(--text-dim); }

/* Filmtipp detail */

.filmtipp-header {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.filmtipp-poster { width: 220px; flex-shrink: 0; }

.filmtipp-meta { display: flex; flex-direction: column; gap: 14px; }

.filmtipp-title { font-size: 46px; line-height: 1; color: #fff; }

.filmtipp-sub { font-size: 14px; color: var(--text-faint); }

.review-section { margin-bottom: 28px; }
.review-label { font-size: 19px; color: var(--accent); margin-bottom: 8px; }
.review-body { font-size: 16px; line-height: 1.75; color: var(--text-dim); }

.back-link { font-size: 14px; font-weight: 600; }

/* Footer */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 40px;
  border-top: 1px solid var(--border);
}

.footer-links { display: flex; gap: 20px; align-items: center; }
.footer-links a { color: var(--text-faint); font-size: 13px; font-weight: 500; }
.footer-links a:hover { color: var(--text); }

.site-footer .brand { font-size: 13px; color: var(--text-faint); }

/* Impressum */

.legal { padding: 64px 40px; max-width: 720px; margin: 0 auto; }
.legal h1 { font-size: 44px; color: #fff; margin-bottom: 24px; }
.legal h2 { font-size: 22px; color: var(--accent); margin: 32px 0 10px; }
.legal p { color: var(--text-dim); font-size: 15px; line-height: 1.7; }

/* Responsive */

@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 56px 24px; }
  .hero-title { font-size: 46px; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 48px 24px; }
  .site-header { padding: 20px 24px; }
  .site-footer { padding: 24px; }
  .filmtipp-header { gap: 24px; }
}

@media (max-width: 560px) {
  .video-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 38px; }
  .site-nav { gap: 18px; }
  .movie-grid { grid-template-columns: 1fr; }
  .filmtipp-poster { width: 160px; }
  .filmtipp-title { font-size: 34px; }
}
