/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #475569;
  background-color: #ffffff;
}

/* Main container */
.main-container {
  min-height: 100vh;
  background-color: #ffffff;
}

/* Header styles */
.header {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/images/header.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.header-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.main-title {
  font-size: 6.5em;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}

.subtitle-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.film-credit {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
}

.coming-soon {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

/* Main content */
.main-content {
  max-width: 900px;   /* fallback for ancient browsers */
  max-width: 75ch;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.content-paragraph {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #64748b;
  margin-bottom: 2rem;
  text-align: center;
}

.content-paragraph:last-child {
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: #1e293b;
  padding: 2rem 0;
}

.footer-content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.footer-text {
  color: #94a3b8;
}

/* Responsive design */
@media (min-width: 768px) {
  .main-title {
    font-size: 9rem;
  }
  
  .film-credit {
    font-size: 2rem;
  }
  
  .coming-soon {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .main-title {
    font-size: 4rem;
  }
  
  .film-credit {
    font-size: 1.25rem;
  }
  
  .coming-soon {
    font-size: 1rem;
  }
  
  .main-content {
    padding: 3rem 1rem;
  }
}