@import url('https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800|Open+Sans:300,300i,400,400i,700,700i&display=swap');

:root {
  --charcoal-blue: rgba(51, 72, 89, 1);
  --blue-slate: rgba(75, 95, 120, 1);
  --sand-dune: rgba(232, 225, 203, 1);
  --air-force-blue: rgba(108, 135, 163, 1);
  --pitch-black: rgba(17, 15, 7, 1);

  --shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}


html {
  scroll-behavior: smooth;
}

body {
  background: var(--pitch-black);
  color: var(--sand-dune);
}

/* NAV */
.glass-nav {
  background: rgba(8, 10, 14, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0d6efd;
  box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.18);
}

.letterspace {
  letter-spacing: 0.14em;
}

.logo {
	font-family: 'Dosis', sans-serif;
	font-weight: 400;
	letter-spacing: 0.03em;
}

/* HERO */
.hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(13,110,253,0.22), transparent 60%),
    radial-gradient(900px 500px at 80% 30%, rgba(255,255,255,0.10), transparent 55%),
    url("assets/hero-bg.jpg") center/cover no-repeat;
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 12, 0.65) 0%,
    rgba(5, 8, 12, 0.80) 60%,
    rgba(5, 8, 12, 0.92) 100%
  );
}

.poster-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.poster-meta {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.45) 100%);
  margin-top: -52px;
  position: relative;
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

/* SECTIONS */
.section {
  padding: 4.25rem 0;
  background: var(--pitch-black);
}

.section-alt {
  background: var(--charcoal-blue);
}

/* Cards */
.card-soft {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Make bootstrap "text-muted" readable on dark bg */
.section .text-muted,
.section-alt .text-muted,
.card-soft .text-muted {
  color: rgba(232, 225, 203, 0.70) !important;
}

h1, h2, h3, h4, h5 {
  color: var(--sand-dune);
}

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, rgba(13,110,253,0.28), rgba(255,255,255,0.06));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.35);
}

/* Checklist */
.list-check {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list-check li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: rgba(232, 225, 203, 0.85);
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0.5rem;
  top: 0;
  color: var(--air-force-blue);
  font-weight: 700;
}

/* Facts */
.fact {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

/* Director image card */
.director-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
}

/* Gallery */
.gallery-tile {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.gallery-tile img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.gallery-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

/* Footer */
.footer {
  background: #070a0f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Form contrast */
.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(13, 110, 253, 0.75);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.20);
  color: rgba(255, 255, 255, 0.92);
}

label.form-label {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 991.98px) {
  .hero {
    padding: 4.75rem 0 3.25rem;
    min-height: auto;
  }

  .gallery-tile img {
    height: 170px;
  }
}


/* Bootstrap primary override using palette */
.btn-primary {
  background-color: var(--air-force-blue);
  border-color: var(--air-force-blue);
}

.btn-primary:hover {
  background-color: var(--blue-slate);
  border-color: var(--blue-slate);
}


/* Gallery lightbox modal */
.gallery-modal-content {
  background: rgba(17, 15, 7, 0.96);
  color: var(--sand-dune);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.gallery-modal-content .modal-title {
  color: var(--sand-dune);
}

.gallery-modal-content .modal-body {
  padding: 0 1rem 1rem;
}

#galleryModalImage {
  max-height: 82vh;
  object-fit: contain;
  background: rgba(51, 72, 89, 0.25);
}

.gallery-lightbox-trigger {
  cursor: zoom-in;
}
