:root {
  --primary: #FFC800;
  --primary-dark: #d6a700;
  --black: #050505;
  --dark: #101010;
  --gray: #1c1c1c;
  --light-gray: #2b2b2b;
  --white: #ffffff;
  --text: #d8d8d8;
  --muted: #9c9c9c;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, p, span, li, a, button, input, textarea, select, small {
  font-family: "Inter", sans-serif;
}

body {
  background: linear-gradient(135deg, #050505, #0c0a04, #040508, #080808);
  background-size: 300% 300%;
  animation: gradient-shift 22s ease infinite;
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--white);
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--text);
  line-height: 1.8;
}

.container {
  width: min(1400px, calc(100% - 60px));
  margin: auto;
}

section {
  position: relative;
  padding: 160px 0; /* Expanded padding for desktop */
}

/* Laptop padding adjustment */
@media (min-width: 993px) and (max-width: 1200px) {
  section {
    padding: 140px 0;
  }
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 100px;
  background: var(--primary);
  color: #000;
  font-weight: 800;
  transition: var(--transition);
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(255, 200, 0, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 200, 0, 0.45);
}

.btn-outline:hover {
  background: var(--primary);
  color: #000;
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@media (max-width: 992px) {
  .container {
    width: min(100%, calc(100% - 48px));
  }

  section {
    padding: 140px 0;
  }
}

@media (max-width: 500px) {
  .container {
    width: min(100%, calc(100% - 48px));
  }

  section {
    padding: 130px 0;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* ===========================
   AMBIENT BACKGROUND GLOWS
   =========================== */

.ambient-glows {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.glow-blob {
  position: absolute;
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.16; /* Increased opacity from 0.08 to make searchlight movement visible and atmospheric */
  pointer-events: none;
  mix-blend-mode: screen;
}

.glow-1 {
  background: var(--primary);
  top: -10%;
  left: -10%;
  animation: float-slow 14s infinite alternate ease-in-out;
}

.glow-2 {
  background: #ffffff;
  bottom: 10%;
  right: -10%;
  animation: float-slow 16s infinite alternate-reverse ease-in-out;
  animation-delay: -3s;
}

.glow-3 {
  background: var(--primary);
  top: 40%;
  left: 60%;
  width: 400px;
  height: 400px;
  filter: blur(120px);
  opacity: 0.08;
  animation: float-slow 11s infinite alternate ease-in-out;
  animation-delay: -5s;
}

@keyframes float-slow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(240px, 110px) scale(1.3);
  }
  100% {
    transform: translate(-120px, 180px) scale(0.85);
  }
}

.glow-4 {
  background: radial-gradient(circle, rgba(255, 200, 0, 0.16) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  width: 90vw;
  height: 90vw;
  filter: blur(120px);
  animation: spotlight-sweep 15s infinite ease-in-out alternate;
  mix-blend-mode: screen;
  pointer-events: none;
}

@keyframes spotlight-sweep {
  0% {
    transform: translate(-18vw, -18vh) scale(0.85);
  }
  50% {
    transform: translate(75vw, 45vh) scale(1.25);
  }
  100% {
    transform: translate(-8vw, 85vh) scale(0.9);
  }
}

/* ========================================================
   PREMIUM CUSTOM REVEAL TRANSITIONS (ELASTIC & SPRINGY)
   ======================================================== */

.scale-up {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-up.show {
  opacity: 1;
  transform: scale(1);
}

.pop-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 1.4s cubic-bezier(0.34, 1.56, 0.64, 1), transform 1.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pop-in.show {
  opacity: 1;
  transform: scale(1);
}

.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-left.show {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================================
   SUB-PAGE HERO BACKGROUND TRANSPARENCY (AMBIENT GLOWS REVEAL)
   ======================================================== */

.about-hero-section,
.services-hero-section,
.book-film-hero-section,
.films-hero-section,
.faq-hero-section,
.transparency-hero-section,
.contact-hero-section,
section {
  background: transparent !important;
}

/* ========================================================
   TYPED.JS CARET CURSOR STYLING
   ======================================================== */

.typed-cursor {
  display: inline-block;
  color: var(--primary);
  font-weight: 300;
  margin-left: 4px;
}

/* ========================================================
   GLOBAL HERO VISUAL CARD COMPONENT
   ======================================================== */

.hero-visual-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 992px) {
  .hero-visual-wrapper {
    justify-content: center;
    margin-top: 40px;
  }
}

.hero-visual-card {
  width: min(480px, 100%);
  height: 560px;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 200, 0, 0.22);
  box-shadow: var(--shadow);
  background: #111;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

@media (max-width: 600px) {
  .hero-visual-card {
    height: 420px;
  }
}

.hero-visual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 200, 0, 0.45);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 200, 0, 0.1);
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.05);
  opacity: 0.85;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.hero-visual-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.05);
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, transparent 65%);
}

.hero-visual-overlay span {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.hero-visual-overlay span.white-text {
  color: var(--white);
}