/* =============================
   VOLKER WEICKER - LIVE DIRECTOR
   Professional Broadcast Design
   ============================= */

:root {
  /* Colors */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-dark: #1a1a1a;
  --color-light: #f5f5f5;
  --color-grey: #808080;
  --color-grey-light: #d0d0d0;
  --color-live: #e74c3c;
  --color-live-light: #ff6b5b;

  /* Typography */
  --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  --font-mono: 'Courier New', monospace;

  /* Spacing */
  --space: 1rem;
  --space-xs: calc(var(--space) * 0.5);
  --space-sm: calc(var(--space) * 1);
  --space-md: calc(var(--space) * 1.5);
  --space-lg: calc(var(--space) * 2);
  --space-xl: calc(var(--space) * 3);
  --space-2xl: calc(var(--space) * 4);

  /* Sizing */
  --max-width: 1400px;
  --container-padding: var(--space-lg);
}

/* =============================
   RESET & BASE
   ============================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =============================
   TYPOGRAPHY
   ============================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: -2px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -1px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

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

a {
  color: var(--color-live);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-live-light);
}

/* =============================
   NAVIGATION
   ============================= */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 1.2rem var(--container-padding);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-black);
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--color-live);
}

nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-xl);
}

nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-black);
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-live);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--color-live);
}

nav a:hover::after {
  width: 100%;
}

/* =============================
   CONTAINER & GRID
   ============================= */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* =============================
   HERO SECTION
   ============================= */

.hero {
  margin-top: 70px;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center right;
  background-attachment: fixed;
  color: var(--color-white);
}

/* Base dark overlay - establishes foundation */
.hero-overlay-base {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.85) 25%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.3) 75%,
    rgba(0,0,0,0) 100%);
  z-index: 1;
}

/* Accent overlay - adds subtle red from live brand */
.hero-overlay-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(231,76,60,0.15) 0%,
    rgba(231,76,60,0) 50%);
  z-index: 2;
}

/* Vignette - professional edge darkening */
.hero-overlay-vignette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  z-index: 3;
}

.hero-wrapper {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-content {
  max-width: 600px;
  text-align: left;
  animation: fadeInUp 1.2s ease 0.2s both;
}

.hero-badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-live);
  border: 1px solid rgba(231, 76, 60, 0.6);
  padding: 0.6rem 1.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
  animation: fadeInUp 1s ease 0.3s both;
  backdrop-filter: blur(10px);
}

.hero-title {
  color: var(--color-white);
  margin-bottom: 0;
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: -2px;
  line-height: 1.05;
  font-weight: 900;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--color-live);
  margin: 1.5rem 0;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-weight: 400;
  animation: fadeInUp 1s ease 0.5s both;
  letter-spacing: 0.5px;
}

.hero-meta {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: rgba(208, 208, 208, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.6s both;
  letter-spacing: 0.5px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  animation: fadeIn 1s ease 1s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.btn-primary {
  display: inline-block;
  background: var(--color-live);
  color: var(--color-white);
  padding: 1rem 2.5rem;
  border: 2px solid var(--color-live);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-live);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

.cta-button {
  display: inline-block;
  background: var(--color-live);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid var(--color-live);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.cta-button:hover {
  background: transparent;
  color: var(--color-live);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================
   SECTIONS
   ============================= */

section {
  padding: var(--space-2xl) var(--container-padding);
  border-bottom: 1px solid var(--color-grey-light);
}

section:last-of-type {
  border-bottom: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-lg);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--color-live);
}

/* =============================
   ABOUT SECTION
   ============================= */

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

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

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

.about-text h3 {
  color: var(--color-live);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.about-text p {
  color: var(--color-grey);
  margin-bottom: var(--space-lg);
}

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

.stat {
  background: var(--color-light);
  padding: var(--space-lg);
  text-align: center;
  border-radius: 2px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-live);
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-grey);
}

/* =============================
   FILMOGRAPHY
   ============================= */

.films-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.film-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid #e8e8e8;
  border-left: 5px solid var(--color-live);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.film-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.02) 0%, rgba(231, 76, 60, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.film-card:hover {
  border-left: 5px solid var(--color-live);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(231, 76, 60, 0.15);
}

.film-card:hover::before {
  opacity: 1;
}

.film-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-live);
  margin-bottom: var(--space-md);
  font-weight: 800;
  display: inline-block;
  background: rgba(231, 76, 60, 0.08);
  padding: 0.4rem 0.8rem;
}

.film-card h4 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  font-weight: 800;
  color: var(--color-black);
}

.film-card ul {
  list-style: none;
  font-size: 0.95rem;
  color: #555;
  line-height: 2;
  margin: 0;
  padding: 0;
}

.film-card li {
  padding-left: 0;
  margin-bottom: 0.25rem;
}

/* =============================
   MAJOR PRODUCTIONS
   ============================= */

.major-productions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.production-card {
  background: var(--color-light);
  padding: var(--space-xl);
  border-radius: 2px;
  border-left: 4px solid var(--color-live);
  transition: all 0.3s ease;
}

.production-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.production-year {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-live);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.production-card h4 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--color-black);
}

.production-subtitle {
  font-size: 0.9rem;
  color: var(--color-live);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.production-card p {
  color: var(--color-grey);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================
   AWARDS
   ============================= */

.awards-timeline {
  position: relative;
  padding-left: var(--space-lg);
  border-left: 2px solid var(--color-live);
}

.award-item {
  position: relative;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.award-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-lg) - 6px);
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--color-live);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-live);
}

.award-year {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-live);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.award-item h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  font-weight: 700;
  color: var(--color-white);
}

.award-item p {
  color: #ccc;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =============================
   CONTACT SECTION
   ============================= */

.contact-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  color: var(--color-white);
  padding: var(--space-3xl);
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(231, 76, 60, 0.2);
}

.contact-box p {
  font-size: 1.1rem;
  color: var(--color-grey-light);
  margin-bottom: var(--space-xl);
  font-weight: 300;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  display: grid;
  gap: var(--space-lg);
}

.form-group {
  display: grid;
  gap: var(--space-sm);
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-white);
}

.form-group input,
.form-group textarea {
  background: var(--color-dark);
  border: 1px solid var(--color-grey-light);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  font-family: inherit;
  font-size: 1rem;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-live);
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
  resize: vertical;
  line-height: 1.5;
}

/* Honeypot Field (Hidden) */
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Form Button */
.contact-form .cta-button {
  width: 100%;
  cursor: pointer;
}

/* Form Status Messages */
.form-status {
  padding: var(--space-md);
  border-radius: 2px;
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.form-status:not(:empty) {
  display: block;
}

.form-status-success {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid #2ecc71;
  color: #2ecc71;
}

.form-status-error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid var(--color-live);
  color: var(--color-live);
}

.contact-links {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.contact-links a,
.contact-link-phone {
  display: inline-block;
  border: 2px solid var(--color-live);
  color: var(--color-live);
  padding: var(--space-sm) var(--space-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-links a:hover,
.contact-link-phone:hover {
  background: var(--color-live);
  color: var(--color-white);
}

/* =============================
   FOOTER
   ============================= */

footer {
  background: var(--color-dark);
  color: var(--color-grey-light);
  padding: var(--space-lg);
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: var(--color-grey-light);
}

footer a:hover {
  color: var(--color-live);
}

/* =============================
   RESPONSIVE
   ============================= */

@media (max-width: 768px) {
  :root {
    --container-padding: var(--space-md);
  }

  .nav-container {
    flex-direction: column;
    gap: var(--space-md);
  }

  nav ul {
    gap: var(--space-md);
    font-size: 0.75rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    min-height: auto;
    padding: var(--space-2xl) var(--container-padding);
  }

  .hero-portrait {
    min-height: 400px;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 60vh;
  }

  .contact-links {
    flex-direction: column;
  }

  .contact-links a,
  .contact-link-phone {
    width: 100%;
    text-align: center;
  }

  .contact-form {
    margin: 0 auto var(--space-lg);
  }

  .major-productions-grid {
    grid-template-columns: 1fr;
  }

  .production-card {
    padding: var(--space-lg);
  }
}

/* =============================
   UTILITIES
   ============================= */

.section-dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section-dark .section-title::after {
  background: var(--color-live);
}

.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
