* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0c0d0c;
  --dark: #111311;
  --light: #f3eee4;
  --text: #171717;
  --muted: #6f6a60;
  --gold: #c99045;
  --gold-dark: #8b5d2c;
  --brown: #4a2f1f;
  --white: #ffffff;
  --border: rgba(201, 144, 69, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* Header */
.header {
 width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 18px 7%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  background: rgba(8, 9, 8, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.8px;
  transition: 0.3s;
}

.nav a:hover {
  color: var(--gold);
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 130px 7% 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  align-items: center;
  gap: 55px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/poster.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.06);
  opacity: 0.36;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.97), rgba(7, 8, 7, 0.74), rgba(7, 8, 7, 0.45)),
    radial-gradient(circle at 70% 30%, rgba(201, 144, 69, 0.22), transparent 35%);
}

.hero-content,
.poster-card {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-text {
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 610px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
}

.btn.primary {
  background: var(--gold);
  color: #14110c;
}

.btn.primary:hover {
  background: #dca55b;
  transform: translateY(-2px);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn.secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.poster-card {
  max-width: 410px;
  justify-self: end;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(201, 144, 69, 0.36);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

.poster-card img {
  width: 100%;
  height: auto;
}

/* Common Section */
.section {
  padding: 100px 7%;
}

.section.light {
  background:
    linear-gradient(180deg, #f7f2e9 0%, #eee4d5 100%);
  color: var(--text);
}

.section.dark {
  background:
    linear-gradient(180deg, #101210 0%, #070807 100%);
  color: var(--white);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 930px;
}

.section-label {
  font-family: Arial, sans-serif;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  margin-bottom: 30px;
}

.section.light h2 {
  color: #1a1814;
}

.section.dark h2 {
  color: var(--white);
}

.section p {
  font-size: 19px;
  margin-bottom: 18px;
}

.section.light p {
  color: #39342d;
}

.section.dark p {
  color: rgba(255, 255, 255, 0.76);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  height: 280px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(201, 144, 69, 0.25);
  background: #1a1a1a;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.note {
  margin-top: 20px;
  font-family: Arial, sans-serif;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.team-block {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(139, 93, 44, 0.18);
  border-left: 4px solid var(--gold);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 15px 36px rgba(53, 36, 20, 0.08);
}

.team-block.large {
  grid-row: span 2;
}

.team-block.wide {
  grid-column: span 2;
}

.team-block.producer-center {
  grid-column: 2 / 3;
  text-align: center;
}

.team-block.special-thanks {
  
  text-align: center;
  background: #15130f;
}

.team-block h3 {
  font-family: Arial, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 13px;
}

.team-block p {
  font-family: Arial, sans-serif;
  font-size: 15.5px;
  margin-bottom: 5px;
  color: #1e1a16;
}

.team-block.special-thanks h3 {
  color: var(--gold);
}

.team-block.special-thanks p {
  color: rgba(255, 255, 255, 0.86) !important;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-block.wide {
    grid-column: span 2;
  }

  .team-block.producer-center {
    grid-column: 1 / -1;
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }

  .team-block.special-thanks {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-block.large,
  .team-block.wide,
  .team-block.producer-center,
  .team-block.special-thanks {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

.special-thanks {
  background: #15130f;
}

.special-thanks h3 {
  color: var(--gold);
}

.special-thanks p {
  color: rgba(255, 255, 255, 0.86) !important;
}

.copyright {
  text-align: center;
  margin-top: 38px;
  font-family: Arial, sans-serif;
  font-size: 14px !important;
  color: var(--muted) !important;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: start;
}

.contact-intro {
  max-width: 640px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
}

.contact-card p {
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold) !important;
  margin: 0 0 5px;
}

.contact-card a,
.contact-card span {
  display: block;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 17px;
  margin-bottom: 22px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.58);
  padding: 28px;
  border-radius: 18px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 15px 36px rgba(53, 36, 20, 0.08);
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
}

.testimonial-card h4 {
  font-family: Arial, sans-serif;
  margin-top: 20px;
  color: var(--gold-dark);
}

/* Screenings */
.screening-list {
  display: grid;
  gap: 18px;
}

.screening-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px 26px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.055);
}

.screening-item h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.screening-item p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.screening-item span {
  font-family: Arial, sans-serif;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  white-space: nowrap;
}

/* Trailer */
.trailer-section {
  text-align: center;
}

.trailer-card {
  position: relative;
  display: block;
  max-width: 920px;
  height: 500px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(201, 144, 69, 0.35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.trailer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.trailer-card:hover img {
  transform: scale(1.05);
}

.trailer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* center vertically */
  text-align: center;
}

.play-button {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: rgba(201, 144, 69, 0.95); /* orange/gold */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  padding-left: 7px;
  margin-bottom: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65);
  transition: 0.3s;
}

.trailer-card:hover .play-button {
  transform: scale(1.1);
  background: #f0a84d;
}

.trailer-overlay p {
  font-family: Arial, sans-serif;
  color: #ffffff !important;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.75);
}

@media (max-width: 760px) {
  .trailer-card {
    height: 260px;
    border-radius: 16px;
  }

  .play-button {
    width: 78px;
    height: 78px;
    font-size: 32px;
  }

  .trailer-overlay p {
    font-size: 16px;
  }
}



/* Footer */
.footer {
  background: #030403;
  color: rgba(255, 255, 255, 0.72);
  padding: 30px 7%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 6px;
}

.footer span {
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.gallery-item {
  cursor: pointer;
}

.gallery-item {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(201, 144, 69, 0.45);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 28px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 38px;
  line-height: 42px;
  cursor: pointer;
  z-index: 100001;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  color: var(--gold);
  border-color: rgba(201, 144, 69, 0.7);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-size: 48px;
  line-height: 42px;
  cursor: pointer;
  z-index: 100001;
}

.lightbox-prev {
  left: 26px;
}

.lightbox-next {
  right: 26px;
}

@media (max-width: 760px) {
  .lightbox img {
    max-width: 86vw;
    max-height: 82vh;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 38px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}
/* Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .poster-card {
    justify-self: start;
    max-width: 330px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header {
    padding: 16px 5%;
  }

  .nav {
    position: absolute;
    top: 68px;
    right: 5%;
    width: 240px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 16px;
    background: #101110;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    padding: 120px 5% 70px;
  }

  .section {
    padding: 75px 5%;
  }

  .gallery,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .team-block.wide {
    grid-column: span 1;
  }

  .team-block.large {
    grid-row: span 1;
  }

  .screening-item {
    flex-direction: column;
    align-items: flex-start;
  }
}