@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Inter:wght@300;400&display=swap');

.light {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(182,35,74,0.15), transparent 70%);
  top: 20%;
  left: 10%;
  animation: drift 15s infinite alternate ease-in-out;
  pointer-events: none;
}

@keyframes drift {
  from {transform: translate(0,0);}
  to {transform: translate(300px,150px);}
}

body {
  margin: 0;
  background: #3F3C3F;
  color: #E8B46B;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  opacity: 0.08;
  pointer-events: none;
}

/* Intro */
#intro {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeOut 4s forwards;
  z-index: 999;
}

#intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
}

@keyframes fadeOut {
  0%,70% {opacity:1;}
  100% {opacity:0; visibility:hidden;}
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  background: rgba(63,60,63,0.9);
  backdrop-filter: blur(10px);
}

nav a {
  color: #E8B46B;
  margin-left: 20px;
  text-decoration: none;
}

nav a:hover {
  color: #B6234A;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
}

.hero p {
  font-size: 1.4rem;
  color: #AB8B5A;
}

.buttons a {
  display: inline-block;
  margin: 15px;
  padding: 12px 25px;
  border: 1px solid #E8B46B;
  color: #E8B46B;
  text-decoration: none;
}

.buttons a:hover {
  background: #B6234A;
}

/* Film strip */
.film-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 80px;
  flex-wrap: wrap;
}

.film-card {
  width: 220px;
  height: 380px;
  background: rgba(0,0,0,0.35);
  border: 2px solid #AC6E20;
  overflow: hidden;
  position: relative;
  transition: 0.4s;
}

.film-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  padding: 15px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  text-align: center;
}

.film-card:hover {
  transform: scale(1.05);
  border-color: #B6234A;
}

/* Sections */
section {
  padding: 100px 15%;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
}

iframe {
  width: 100%;
  height: 500px;
}

footer {
  text-align: center;
  padding: 40px;
  color: #924D4D;
}

.film-card {
  display: block;
  text-decoration: none;
  color: inherit;
}