@import url("https://use.typekit.net/qag2gqm.css");

/* 
=========================
Global Styles
=========================
*/

/* Adding keyframes for the sparkle animation */
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* New animation for the pink star - pop in and out without moving */
@keyframes pop {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInOut {
  0%, 100% { 
    opacity: 0; 
    transform: scale(0.8);
  }
  50% { 
    opacity: 1; 
    transform: scale(1);
  }
}

/* Star shape creation using clip-path */
.star {
  clip-path: polygon(
    50% 0%, 
    61% 35%, 
    98% 35%, 
    68% 57%, 
    79% 91%, 
    50% 70%, 
    21% 91%, 
    32% 57%, 
    2% 35%, 
    39% 35%
  );
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  animation: fadeInOut 3s ease-in-out infinite;
}

/* Star positions */
.banner-content h1 span.star-top { top: -30px; left: 50%; transform: translateX(-50%); animation-delay: 0.2s; }
.banner-content h1 span.star-bottom { bottom: -30px; left: 50%; transform: translateX(-50%); animation-delay: 0.4s; }
.banner-content h1 span.star-left { top: 50%; left: -40px; transform: translateY(-50%); animation-delay: 0.6s; }
.banner-content h1 span.star-right { top: 50%; right: -40px; transform: translateY(-50%); animation-delay: 0.8s; }
.banner-content h1 span.star-top-left { top: -25px; left: -20px; animation-delay: 1.0s; }
.banner-content h1 span.star-top-right { top: -25px; right: -20px; animation-delay: 1.2s; }
.banner-content h1 span.star-bottom-left { bottom: -25px; left: -20px; animation-delay: 1.4s; }
.banner-content h1 span.star-bottom-right { bottom: -25px; right: -20px; animation-delay: 1.6s; }
.banner-content h1 span.star-center-left { top: 50%; left: 25%; transform: translateY(-50%); animation-delay: 1.8s; }
.banner-content h1 span.star-center-right { top: 50%; right: 25%; transform: translateY(-50%); animation-delay: 2.0s; }

:root {
  --primary-color: #160e44; /* Dark Blue - Background */
  --secondary-color: #fde6dc; /* White - Body text */
  --accent-color: #53c0aa; /* Teal - Highlights/important information */
  --heading-color: #ed478a; /* Pink - Headings */
  --text-color: #fde6dc; /* White for text on dark backgrounds */
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #777777;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "acumin-pro", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--primary-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 
=========================
Typography
=========================
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "shackleton", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5rem;
  margin-top: 1rem;
  color: var(--heading-color);
}

h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
}

/* 
=========================
Buttons
=========================
*/

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-view,
.filter-btn,
.newsletter-form button {
  position: relative;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 15px 40px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-family: "shackleton", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(83, 192, 170, 0.3);
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.btn-primary::before,
.btn-primary::after,
.btn-secondary::before,
.btn-secondary::after,
.btn-view::before,
.btn-view::after,
.filter-btn::before,
.filter-btn::after,
.newsletter-form button::before,
.newsletter-form button::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

.btn-primary::before,
.btn-secondary::before,
.btn-view::before,
.filter-btn::before,
.newsletter-form button::before {
  left: -10px;
}

.btn-primary::after,
.btn-secondary::after,
.btn-view::after,
.filter-btn::after,
.newsletter-form button::after {
  right: -10px;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-view:hover,
.filter-btn:hover,
.newsletter-form button:hover {
  background: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 71, 138, 0.4);
}

.btn-primary:hover::before,
.btn-primary:hover::after,
.btn-secondary:hover::before,
.btn-secondary:hover::after,
.btn-view:hover::before,
.btn-view:hover::after,
.filter-btn:hover::before,
.filter-btn:hover::after,
.newsletter-form button:hover::before,
.newsletter-form button:hover::after {
  background: var(--heading-color);
}

/* Override specific button styles */
.btn-secondary {
  background: var(--accent-color);
  color: var(--primary-color);
  width: 300px;
  padding: 1.2rem 2.5rem;
  font-size: 1.3rem;
  text-align: center;
  margin-top: 1.5rem;
}

.btn-view {
  background: var(--heading-color);
  color: var(--secondary-color);
}

.filter-btn {
  background: rgba(253, 230, 220, 0.1);
  color: var(--secondary-color);
  border: 1px solid var(--accent-color);
}

.filter-btn:hover {
  background: var(--heading-color);
  color: var(--secondary-color);
  border-color: var(--heading-color);
}

.newsletter-form button {
  background: var(--heading-color);
  color: var(--secondary-color);
}

/* 
=========================
Header
=========================
*/

header {
  background-color: var(--heading-color);
  color: var(--secondary-color);
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 5%;
  border-bottom: 2px solid var(--accent-color);
  height: 70px; /* Fixed height for consistency */
}

.logo-button {
  display: block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.logo-button:hover {
  transform: scale(1.05);
}

.logo-button:focus {
  outline: none;
}

.logo-container {
  max-width: 120px;
  margin-top: 10px;
}

.logo {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
  content: url('../images/gold logo.png');
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
}

.nav-menu li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 15px;
}

.nav-menu a {
  color: var(--secondary-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: all 0.3s ease;
  overflow: visible;
  text-align: center;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* Sparkle effects */
.nav-menu a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, var(--accent-color), #FFD700);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.nav-menu a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Top left sparkle - make it a star */
.nav-menu a::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #FFD700;
  top: -10px;
  left: 10%;
  opacity: 0;
  box-shadow: 0 0 10px 2px #FFD700;
  transition: all 0.3s ease;
  pointer-events: none;
  clip-path: polygon(
    50% 0%, 
    61% 35%, 
    98% 35%, 
    68% 57%, 
    79% 91%, 
    50% 70%, 
    21% 91%, 
    32% 57%, 
    2% 35%, 
    39% 35%
  );
}

.nav-menu a:hover::after {
  opacity: 1;
  animation: sparkle 1.5s ease-in-out infinite;
}

/* Extra sparkles for more magic - make them stars */
.nav-menu a span.sparkle {
  position: absolute;
  pointer-events: none;
}

.nav-menu a span.sparkle:nth-child(1) {
  width: 7px;
  height: 7px;
  top: -8px;
  right: 30%;
  background: var(--accent-color);
  border-radius: 0;
  opacity: 0;
  box-shadow: 0 0 6px 1px var(--accent-color);
  clip-path: polygon(
    50% 0%, 
    61% 35%, 
    98% 35%, 
    68% 57%, 
    79% 91%, 
    50% 70%, 
    21% 91%, 
    32% 57%, 
    2% 35%, 
    39% 35%
  );
}

.nav-menu a:hover span.sparkle:nth-child(1) {
  opacity: 1;
  animation: sparkle 2s ease-in-out infinite 0.3s;
}

.nav-menu a span.sparkle:nth-child(2) {
  width: 9px;
  height: 9px;
  top: -12px;
  right: 10%;
  background: #FFD700;
  border-radius: 0;
  opacity: 0;
  box-shadow: 0 0 8px 2px #FFD700;
  clip-path: polygon(
    50% 0%, 
    61% 35%, 
    98% 35%, 
    68% 57%, 
    79% 91%, 
    50% 70%, 
    21% 91%, 
    32% 57%, 
    2% 35%, 
    39% 35%
  );
}

.nav-menu a:hover span.sparkle:nth-child(2) {
  opacity: 1;
  animation: sparkle 2s ease-in-out infinite 0.5s;
}

.nav-menu a.active {
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  position: relative;
}

/* Add a NEW third star to the right */
.nav-menu a.active span.star-right {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: var(--accent-color);
  bottom: -3px;
  left: 5%;
  box-shadow: 0 0 8px 2px var(--accent-color);
  opacity: 1;
  animation: sparkle 1.5s ease-in-out infinite;
  clip-path: polygon(
    50% 0%, 
    61% 35%, 
    98% 35%, 
    68% 57%, 
    79% 91%, 
    50% 70%, 
    21% 91%, 
    32% 57%, 
    2% 35%, 
    39% 35%
  );
  pointer-events: none;
}

/* Add a third star animation under the active headings */
.nav-menu a.active::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 0;
  background: white;
  bottom: -3px;
  left: 20%;
  box-shadow: 0 0 10px 2px white;
  opacity: 1;
  animation: sparkle 1.5s ease-in-out infinite 0.5s;
  clip-path: polygon(
    50% 0%, 
    61% 35%, 
    98% 35%, 
    68% 57%, 
    79% 91%, 
    50% 70%, 
    21% 91%, 
    32% 57%, 
    2% 35%, 
    39% 35%
  );
}

/* Add additional sparkles for active items - make them stars */
.nav-menu a.active::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: #FFD700;
  bottom: -3px;
  left: 65%;
  box-shadow: 0 0 8px 2px #FFD700;
  opacity: 1;
  animation: pop 1.5s ease-in-out 1s infinite;
  clip-path: polygon(
    50% 0%, 
    61% 35%, 
    98% 35%, 
    68% 57%, 
    79% 91%, 
    50% 70%, 
    21% 91%, 
    32% 57%, 
    2% 35%, 
    39% 35%
  );
}

/* Make hover stars visible for active items too */
.nav-menu a.active span.sparkle:nth-child(1),
.nav-menu a.active span.sparkle:nth-child(2) {
  opacity: 1;
}

.nav-menu a.active span.sparkle:nth-child(1) {
  animation: sparkle 2s ease-in-out infinite 0.3s;
}

.nav-menu a.active span.sparkle:nth-child(2) {
  animation: sparkle 2s ease-in-out infinite 0.7s;
}

.menu-btn {
  display: none;
  cursor: pointer;
}

.menu-btn__burger {
  width: 30px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.menu-btn__burger::before {
  transform: translateY(-10px);
}

.menu-btn__burger::after {
  transform: translateY(10px);
}

/* 
=========================
Main Content
=========================
*/

main {
  padding-top: 90px; /* Add padding to account for the fixed navbar height + some extra space */
  max-width: 1080px; /* Set maximum width to 1080px */
  margin: 0 auto; /* Center horizontally */
}

/* 
=========================
Hero Section
=========================
*/

.hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 100vh;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  text-align: center;
  position: relative;
  padding-top: 32vh;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 14, 68, 0.8);
  z-index: 1;
}

.hero-logo {
  width: 300px;
  height: 300px;
  background: rgba(253, 230, 220, 0.1);
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  content: url('../images/gold logo.png');
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  position: relative;
  display: inline-block;
}

/* Add multiple stars around the heading */
.hero-content h1::before,
.hero-content h1::after,
.hero-content h1 span.star-left,
.hero-content h1 span.star-right,
.hero-content h1 span.star-top,
.hero-content h1 span.star-bottom,
.hero-content h1 span.star-top-left,
.hero-content h1 span.star-top-right,
.hero-content h1 span.star-bottom-left,
.hero-content h1 span.star-bottom-right {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 0;
  opacity: 1;
  box-shadow: 0 0 15px 3px white;
  pointer-events: none;
  clip-path: polygon(
    50% 0%, 
    61% 35%, 
    98% 35%, 
    68% 57%, 
    79% 91%, 
    50% 70%, 
    21% 91%, 
    32% 57%, 
    2% 35%, 
    39% 35%
  );
  animation: sparkle 1.5s ease-in-out infinite;
}

.hero-content h1::before {
  top: -30px;
  left: -35px;
  animation-delay: 0s;
}

.hero-content h1::after {
  bottom: -30px;
  right: -35px;
  animation-delay: 0.3s;
}

.hero-content h1 span.star-left {
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  animation-delay: 0.6s;
}

.hero-content h1 span.star-right {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation-delay: 0.9s;
}

.hero-content h1 span.star-top {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.2s;
}

.hero-content h1 span.star-bottom {
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.5s;
}

/* Add diagonal stars */
.hero-content h1 span.star-top-left {
  top: -25px;
  left: -20px;
  animation-delay: 0.4s;
}

.hero-content h1 span.star-top-right {
  top: -25px;
  right: -20px;
  animation-delay: 0.7s;
}

.hero-content h1 span.star-bottom-left {
  bottom: -25px;
  left: -20px;
  animation-delay: 1.0s;
}

.hero-content h1 span.star-bottom-right {
  bottom: -25px;
  right: -20px;
  animation-delay: 1.3s;
}

/* Add stars around the paragraph */
.hero-content p::before,
.hero-content p::after,
.hero-content p span.star-left,
.hero-content p span.star-right,
.hero-content p span.star-top,
.hero-content p span.star-bottom {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--heading-color);
  border-radius: 0;
  opacity: 1;
  box-shadow: 0 0 12px 2px var(--heading-color);
  pointer-events: none;
  clip-path: polygon(
    50% 0%, 
    61% 35%, 
    98% 35%, 
    68% 57%, 
    79% 91%, 
    50% 70%, 
    21% 91%, 
    32% 57%, 
    2% 35%, 
    39% 35%
  );
  animation: sparkle 1.5s ease-in-out infinite;
}

.hero-content p::before {
  top: -20px;
  left: -25px;
  animation-delay: 0.2s;
}

.hero-content p::after {
  bottom: -20px;
  right: -25px;
  animation-delay: 0.5s;
}

.hero-content p span.star-left {
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  animation-delay: 0.8s;
}

.hero-content p span.star-right {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  animation-delay: 1.1s;
}

.hero-content p span.star-top {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.4s;
}

.hero-content p span.star-bottom {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.7s;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero .btn-primary {
  padding: 20px 50px;
  font-size: 1.3rem;
}

/* 
=========================
Featured Films Section
=========================
*/

.featured-films {
  padding: 100px 5%;
  text-align: center;
  background-color: var(--primary-color);
}

.featured-films h2 {
  margin-bottom: 50px;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
}

.film-card {
  flex: 1;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  border: 2px solid var(--accent-color);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.film-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.film-card:hover {
  transform: translateY(-5px);
  border-color: var(--heading-color);
}

.film-poster {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 2rem;
  margin-top: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.film-poster img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.film-poster:empty::before {
  content: "Movie Poster Coming Soon";
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 500;
}

.film-info {
  flex: 1;
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.film-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.film-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* 
=========================
About Preview Section
=========================
*/

.about-preview {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  align-items: center;
  padding: 100px 5%;
  background-color: rgba(22, 14, 68, 0.9); /* Dark blue with slight opacity */
  border-top: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
}

.about-content {
  flex: 1;
  padding-right: 50px;
  max-width: 540px; /* Half of the 1080px main width */
  margin: 0 auto 0 calc(50% - 540px); /* Center align with main content */
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--heading-color);
}

/* 
=========================
Latest News Section
=========================
*/

.latest-news {
  padding: 100px 5%;
  text-align: center;
  background-color: var(--primary-color);
}

.latest-news h2 {
  margin-bottom: 50px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.news-card {
  background-color: rgba(
    253,
    230,
    220,
    0.1
  ); /* Light secondary color with opacity */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--accent-color);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  border-color: var(--heading-color);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-info {
  padding: 20px;
  text-align: left;
}

.news-info h3 {
  margin-bottom: 10px;
}

.news-info .date {
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.news-info p {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.read-more {
  color: var(--heading-color);
  font-weight: 500;
  font-family: "shackleton", serif;
  font-style: italic;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--accent-color);
}

/* 
=========================
Footer
=========================
*/

footer {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 4rem 2rem;
  position: relative;
  z-index: 10;
  margin-top: 4rem;
  border-top: 3px solid var(--accent-color);
}

footer.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-contact {
  padding: 0 15px;
  margin-left: -40px;
  justify-self: start;
}

.footer-logo {
  max-width: 400px;
  justify-self: start;
  margin-top: -2rem;
}

.footer-logo img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  margin-left: -20px;
  content: url('../images/gold logo.png');
}

.footer-links {
  justify-self: center;
}

.footer-social {
  justify-self: end;
}

.footer-logo {
  max-width: 400px; /* Increased from 350px */
  justify-self: start; /* Align to the left */
}

.footer-logo img {
  width: 100%;
  max-height: 300px; /* Increased from 150px */
  object-fit: contain;
  margin-left: -20px; /* Move slightly to the left */
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-social h4::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-links h4:hover::after,
.footer-contact h4:hover::after,
.footer-social h4:hover::after {
  width: 100%;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-social a {
  color: var(--medium-gray);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a::after,
.footer-social a::after {
  display: none;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--accent-color);
}

.footer-contact h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
}

.footer-contact p {
  margin-bottom: 8px;
  color: var(--medium-gray);
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: var(--secondary-color);
}

.social-icons a:hover {
  background-color: var(--accent-color);
  color: black;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: var(--medium-gray);
  font-size: 0.9rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

/* 
=========================
Page Banner (Subpages)
=========================
*/

.page-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 30vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(22, 14, 68, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  text-align: center;
  position: relative;
  margin-top: 0;
  margin-bottom: 2rem;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 14, 68, 0.8);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  text-align: center;
}

.banner-content h1 {
  font-size: 8rem;
  color: var(--heading-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 4rem;
  animation: magicalGlow 1.5s ease-out;
  position: relative;
}

/* Add multiple stars around the heading */
.banner-content h1::before,
.banner-content h1::after,
.banner-content h1 span.star-left,
.banner-content h1 span.star-right,
.banner-content h1 span.star-top,
.banner-content h1 span.star-bottom,
.banner-content h1 span.star-top-left,
.banner-content h1 span.star-top-right,
.banner-content h1 span.star-bottom-left,
.banner-content h1 span.star-bottom-right,
.banner-content h1 span.star-center-left,
.banner-content h1 span.star-center-right {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  clip-path: polygon(
    50% 0%, 
    61% 35%, 
    98% 35%, 
    68% 57%, 
    79% 91%, 
    50% 70%, 
    21% 91%, 
    32% 57%, 
    2% 35%, 
    39% 35%
  );
  animation: fadeInOut 2s ease-in-out infinite;
}

/* White stars */
.banner-content h1 span.star-top,
.banner-content h1 span.star-bottom {
  background: white;
  box-shadow: 0 0 12px 2px white;
}

/* Pink stars */
.banner-content h1 span.star-left,
.banner-content h1 span.star-right,
.banner-content h1 span.star-top-left,
.banner-content h1 span.star-bottom-right {
  background: var(--heading-color);
  box-shadow: 0 0 12px 2px var(--heading-color);
}

/* Teal stars */
.banner-content h1 span.star-top-right,
.banner-content h1 span.star-bottom-left,
.banner-content h1 span.star-center-left,
.banner-content h1 span.star-center-right {
  background: var(--accent-color);
  box-shadow: 0 0 12px 2px var(--accent-color);
}

/* Star positions */
.banner-content h1 span.star-top { top: -30px; left: 50%; transform: translateX(-50%); animation-delay: 0.2s; }
.banner-content h1 span.star-bottom { bottom: -30px; left: 50%; transform: translateX(-50%); animation-delay: 0.4s; }
.banner-content h1 span.star-left { top: 50%; left: -40px; transform: translateY(-50%); animation-delay: 0.6s; }
.banner-content h1 span.star-right { top: 50%; right: -40px; transform: translateY(-50%); animation-delay: 0.8s; }
.banner-content h1 span.star-top-left { top: -25px; left: -20px; animation-delay: 1.0s; }
.banner-content h1 span.star-top-right { top: -25px; right: -20px; animation-delay: 1.2s; }
.banner-content h1 span.star-bottom-left { bottom: -25px; left: -20px; animation-delay: 1.4s; }
.banner-content h1 span.star-bottom-right { bottom: -25px; right: -20px; animation-delay: 1.6s; }
.banner-content h1 span.star-center-left { top: 50%; left: 25%; transform: translateY(-50%); animation-delay: 1.8s; }
.banner-content h1 span.star-center-right { top: 50%; right: 25%; transform: translateY(-50%); animation-delay: 2.0s; }

@keyframes fadeInOut {
  0%, 100% { 
    opacity: 0; 
    transform: scale(0.8);
  }
  50% { 
    opacity: 1; 
    transform: scale(1);
  }
}

@keyframes magicalGlow {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
    filter: blur(20px);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1) translateY(-10px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes magicalSparkle {
  0%, 100% { 
    opacity: 0; 
    transform: scale(0) rotate(0deg) translateY(0); 
  }
  25% { 
    opacity: 0.8; 
    transform: scale(1.2) rotate(90deg) translateY(-5px); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1) rotate(180deg) translateY(0); 
  }
  75% { 
    opacity: 0.8; 
    transform: scale(1.2) rotate(270deg) translateY(5px); 
  }
}

/* Star positions */
.banner-content h1 span.star-top { top: -30px; left: 50%; transform: translateX(-50%); animation-delay: 0.2s; }
.banner-content h1 span.star-bottom { bottom: -30px; left: 50%; transform: translateX(-50%); animation-delay: 0.4s; }
.banner-content h1 span.star-left { top: 50%; left: -40px; transform: translateY(-50%); animation-delay: 0.6s; }
.banner-content h1 span.star-right { top: 50%; right: -40px; transform: translateY(-50%); animation-delay: 0.8s; }
.banner-content h1 span.star-top-left { top: -25px; left: -20px; animation-delay: 1.0s; }
.banner-content h1 span.star-top-right { top: -25px; right: -20px; animation-delay: 1.2s; }
.banner-content h1 span.star-bottom-left { bottom: -25px; left: -20px; animation-delay: 1.4s; }
.banner-content h1 span.star-bottom-right { bottom: -25px; right: -20px; animation-delay: 1.6s; }
.banner-content h1 span.star-center-left { top: 50%; left: 25%; transform: translateY(-50%); animation-delay: 1.8s; }
.banner-content h1 span.star-center-right { top: 50%; right: 25%; transform: translateY(-50%); animation-delay: 2.0s; }
.banner-content h1 span.star-extra-1 { top: -15px; left: 25%; animation-delay: 2.2s; }
.banner-content h1 span.star-extra-2 { top: -15px; right: 25%; animation-delay: 2.4s; }
.banner-content h1 span.star-extra-3 { bottom: -15px; left: 25%; animation-delay: 2.6s; }
.banner-content h1 span.star-extra-4 { bottom: -15px; right: 25%; animation-delay: 2.8s; }

/* Add a subtle glow effect to the heading text */
.banner-content h1::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  filter: blur(8px);
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.banner-content p {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 4rem;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideUpFadeIn 1.2s ease-out 0.5s forwards;
  opacity: 0;
}

.banner-content p::before,
.banner-content p::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 0;
  opacity: 1;
  box-shadow: 0 0 12px 2px var(--accent-color);
  pointer-events: none;
  clip-path: polygon(
    50% 0%, 
    61% 35%, 
    98% 35%, 
    68% 57%, 
    79% 91%, 
    50% 70%, 
    21% 91%, 
    32% 57%, 
    2% 35%, 
    39% 35%
  );
  animation: sparkle 1.5s ease-in-out infinite;
}

.banner-content p::before {
  top: -20px;
  left: -25px;
  animation-delay: 0.2s;
}

.banner-content p::after {
  bottom: -20px;
  right: -25px;
  animation-delay: 0.5s;
}

.scroll-indicator {
  position: relative;
  color: var(--heading-color);
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  margin-top:2rem;
  display: inline-block;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* 
=========================
About Page
=========================
*/

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 4rem;
  margin-bottom: 6rem;
  gap: 4rem;
  max-width: 970px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: rgba(22, 14, 68, 0.7);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--accent-color);
  backdrop-filter: blur(10px);
}

.about-content {
  flex: 1;
  padding-right: 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-image.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-content h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.about-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Full Screen Background Section */
.full-screen-bg {
  width: 100vw;
  height: 100vh;
  margin-left: calc(-50vw + 50%);
  background-image: url('../images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-screen-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(22, 14, 68, 0.3), rgba(22, 14, 68, 0.7));
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  text-align: center;
}

.banner-content h1 {
  font-size: 8rem;
  color: var(--heading-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 4rem;
  animation: magicalGlow 1.5s ease-out;
  position: relative;
}

.scroll-indicator {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--heading-color);
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  margin-top: 2rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.mission-vision {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(22, 14, 68, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.mission, .vision {
  padding: 3rem;
  background: rgba(253, 230, 220, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--accent-color);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mission h3, .vision h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--heading-color);
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
  width: 100%;
}

.mission p, .vision p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 0;
  position: relative;
  width: 100%;
}

.team-section {
  padding: 120px 2%;
  text-align: center;
  background-color: var(--primary-color);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin-left: -20%;
  width: 120%;
}

.team-section h2 {
  color: var(--heading-color);
  font-size: 2.5rem;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin-left: 15%;
  margin-right: auto;
  padding: 0 2rem;
}

.team-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  justify-items: center;
  padding: 0 5%;
}

.team-member {
  background: var(--primary-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border: 2px solid var(--accent-color);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--delay) * 0.1s);
  width: 400px;
}

.team-member.visible {
  opacity: 1;
  transform: translateY(0);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--heading-color);
}

.profile-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin-bottom: 25px;
  border: 4px solid var(--accent-color);
  box-shadow: var(--shadow-md);
  background-color: #f5f5f5;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.team-member h3 {
  color: var(--heading-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
}

.team-member .position {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.team-member p {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 20px;
}

.team-member .social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.team-member .social-links a {
  color: var(--accent-color);
  font-size: 1.2rem;
  transition: var(--transition);
}

.team-member .social-links a:hover {
  color: var(--heading-color);
  transform: translateY(-2px);
}

.our-story-video {
  padding: 6rem 5%;
  margin: 4rem 0;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.our-story-video.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--accent-color);
  opacity: 1; /* Changed from 0 to 1 */
  transform: none; /* Removed transform */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Remove the visibility classes since we're making them always visible */
.video-wrapper.visible {
  opacity: 1;
  transform: none;
}

/* 
=========================
Behind the Filmmakers Page
=========================
*/

.behind-scenes-intro {
  padding: 100px 5%;
  background-color: var(--primary-color);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.behind-scenes-intro h2 {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.behind-scenes-intro h2::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.behind-scenes-intro p {
  font-size: 2rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 2rem;
}

.behind-scenes-gallery {
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(22, 14, 68, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.behind-scenes-gallery h2 {
  font-size: 3.5rem;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--accent-color);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(83, 192, 170, 0.4);
  border-color: var(--heading-color);
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.gallery-caption p {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Lightbox Styles for Gallery */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.lightbox-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 1002;
}

.zoom-btn, .reset-btn {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.zoom-btn:hover, .reset-btn:hover {
  background-color: var(--accent-color);
  transform: scale(1.1);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .gallery-image {
    height: 250px;
  }
  
  .gallery-caption {
    padding: 1.5rem;
  }
  
  .gallery-caption h3 {
    font-size: 1.3rem;
  }
  
  .gallery-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-image {
  height: 200px;
  }
  
  .gallery-caption {
    padding: 1rem;
  }
  
  .gallery-caption h3 {
    font-size: 1.2rem;
  }
  
  .gallery-caption p {
    font-size: 0.9rem;
  }
}

/* Film Sections */
.film-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 4rem 2rem;
  background-color: var(--primary-color);
  opacity: 0;
  visibility: visible;
  max-width: 1600px;
  margin: 0 auto;
  animation: slideInFromBottom 1s ease-out forwards;
  animation-delay: 0.5s;
}

.film-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  opacity: 0;
  visibility: visible;
  min-width: 600px;
  border: 3px solid var(--accent-color);
  animation: slideInFromBottom 1s ease-out forwards;
}

.film-section:nth-child(1) {
  animation-delay: 0.7s;
}

.film-section:nth-child(2) {
  animation-delay: 0.9s;
}

.film-section:nth-child(3) {
  animation-delay: 1.1s;
}

.film-section:nth-child(4) {
  animation-delay: 1.3s;
}

.film-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--heading-color);
}

.section-image {
  width: 100%;
  max-width: 1200px;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 2px solid var(--accent-color);
  object-position: center;
  aspect-ratio: 16/9;
}

.section-image:hover {
  transform: scale(1.05);
  border-color: var(--heading-color);
}

.film-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.film-poster {
  width: 100%;
  max-width: 300px;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  aspect-ratio: 2/3;
  cursor: pointer;
}

.film-poster:hover {
  transform: scale(1.02);
}

.film-info {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.film-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.film-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Film Details Section Spacing */
.film-details {
  flex: 1;
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.film-info-detail {
  margin-top: 3rem;
}

.film-actions {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

/* Video Section Spacing */
.film-video {
  padding: 4rem 2rem;
  margin: 4rem 0;
  max-width: 1000px;
  margin: 0 auto;
}

.film-video h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.video-container {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--accent-color);
  opacity: 1; /* Changed from 0 to 1 */
  transform: none; /* Removed transform */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Back to Films Button Spacing */
.back-to-films {
  margin: 4rem 0;
  padding: 2rem;
  text-align: center;
}

/* Enhanced Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.lightbox-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 1002;
}

.zoom-btn, .reset-btn {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.zoom-btn:hover, .reset-btn:hover {
  background-color: var(--accent-color);
  transform: scale(1.1);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: var(--accent-color);
}

/* Add click cursor to profile images */
.profile-image {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.05);
}

/* Upcoming Films Section */
.upcoming-films {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(22, 14, 68, 0.95) 100%);
  margin-top: 4rem;
}

.upcoming-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.upcoming-content h2 {
  color: var(--heading-color);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.upcoming-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--accent-color);
  transition: transform 0.3s ease;
}

.upcoming-card:hover {
  transform: translateY(-5px);
  border-color: var(--heading-color);
}

.upcoming-poster {
  width: 300px;
  height: 450px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.upcoming-info {
  flex: 1;
  text-align: left;
}

.upcoming-info h3 {
  color: var(--heading-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.release-date {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.upcoming-info p {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .upcoming-card {
    flex-direction: column;
    text-align: center;
  }
  
  .upcoming-poster {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  
  .upcoming-info {
    text-align: center;
  }
}

@keyframes magicalEntrance {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
    filter: blur(10px);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2) rotate(5deg);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes magicalParticles {
  0% {
    opacity: 0;
    transform: scale(0) translateY(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) translateY(-10px) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: scale(0) translateY(-20px) rotate(360deg);
  }
}

.about-content h2,
.mission h3,
.vision h3,
.team-section h2,
.our-story-video h2,
.behind-scenes-gallery h2,
.kidnapping-gallery h2,
.visitor-gallery h2 {
  transform: translateY(10px);
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 5px;
  border: 2px solid var(--accent-color);
  transition: transform 0.3s ease;
}

.nav-image:hover {
  transform: scale(1.1);
  border-color: var(--heading-color);
}

.section-image {
    width: 100%;
  max-width: 800px;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 2px solid var(--accent-color);
  object-position: center;
  aspect-ratio: 16/9;
}

.section-image:hover {
  transform: scale(1.05);
  border-color: var(--heading-color);
}

.btn-secondary {
  width: 300px;
  padding: 1.2rem 2.5rem;
  font-size: 1.3rem;
  text-align: center;
  margin-top: 1.5rem;
}

.btn-secondary::before,
.btn-secondary::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

.btn-secondary::before {
  left: -10px;
}

.btn-secondary::after {
  right: -10px;
}

.btn-secondary:hover {
  background: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 71, 138, 0.4);
}

.btn-secondary:hover::before,
.btn-secondary:hover::after {
  background: var(--heading-color);
}

@media (max-width: 1600px) {
  .film-sections {
    grid-template-columns: 1fr;
    max-width: 1600px;
    padding: 6rem 1rem;
  }
  
  .film-section {
    min-height: 700px;
  }
  
  .section-image {
    max-width: 1400px;
    height: 500px;
  }
  
  .btn-secondary {
    width: 350px;
  }
}

.kidnapping-gallery {
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(22, 14, 68, 0.95) 100%);
  padding: 6rem 5%;
  margin: 4rem 0;
}

.kidnapping-gallery h2 {
  color: var(--heading-color);
  font-size: 2.5rem;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
}

.kidnapping-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.kidnapping-gallery .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--accent-color);
}

.kidnapping-gallery .gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(83, 192, 170, 0.4);
  border-color: var(--heading-color);
}

.kidnapping-gallery .gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kidnapping-gallery .gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.kidnapping-gallery .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.kidnapping-gallery .gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.kidnapping-gallery .gallery-caption h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.kidnapping-gallery .gallery-caption p {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .kidnapping-gallery .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .kidnapping-gallery .gallery-image {
    height: 250px;
  }
  
  .kidnapping-gallery .gallery-caption {
    padding: 1.5rem;
  }
  
  .kidnapping-gallery .gallery-caption h3 {
    font-size: 1.3rem;
  }
  
  .kidnapping-gallery .gallery-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
  }
  
  .team-member {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .team-section {
    margin-left: 0;
    width: 100%;
    padding: 80px 5%;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    padding: 0 10%;
  }
  
  .team-member {
    width: 300px;
  }
}

.contact-section {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-info h2 {
  font-size: 3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-info p {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 3rem;
  text-align: center;
}

.email-section {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 2px solid var(--accent-color);
}

.email-section h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.email-section p {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-bottom: 0;
}

.social-connect {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 2px solid var(--accent-color);
}

.social-connect h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.social-icons a {
  color: var(--text-color);
  font-size: 3rem;
  transition: all 0.3s ease;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  color: var(--accent-color);
  transform: translateY(-5px) scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.contact-form {
  margin: 3rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.contact-form:hover {
  border-color: var(--heading-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .contact-info {
    padding: 1rem;
  }
  
  .contact-info h2 {
    font-size: 2.5rem;
  }
  
  .contact-info p {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .contact-form iframe {
    height: 600px;
  }
  
  .social-icons {
    gap: 1.5rem;
  }
  
  .social-icons a {
    font-size: 1.5rem;
  }
}

.banner-content p {
  font-size: 1.5rem;
  margin: 2rem 0;
  color: var(--text-color);
  opacity: 0;
  visibility: visible;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.footer-social .social-icons a {
  color: var(--text-color);
  font-size: 2rem;
  transition: all 0.3s ease;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social .social-icons a:hover {
  color: var(--accent-color);
  transform: translateY(-5px) scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.films-section {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-left: -8%;
}

.film-card {
  flex: 1;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  border: 2px solid var(--accent-color);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.film-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.film-card:hover {
  transform: translateY(-5px);
  border-color: var(--heading-color);
}

.film-card h2 {
  color: var(--heading-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.film-poster {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.film-poster:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .films-section {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-left: 0;
    margin-right: 2rem;
    padding: 2rem 1rem;
  }
  
  .film-card {
    width: 100%;
    max-width: 400px;
    margin: 0 1rem;
  }
}

.film-detail-page .film-meta {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-top: 1rem;
}

.film-detail-page .film-poster-large {
  max-width: 800px;
  margin: 0 auto;
}

.film-detail-page .film-poster-large img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--accent-color);
}

.film-detail-page .film-description {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 2rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Header and Navigation */
  header {
    height: auto;
    padding: 1rem;
    position: relative;
  }

  .logo-container {
    max-width: 140px;
    margin: 0 auto;
  }
  .logo {
    max-height: 120px;
  }

  .menu-btn {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
  }

  .menu-btn__burger {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    position: relative;
    transition: all 0.3s ease;
  }

  .menu-btn__burger::before,
  .menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
  }

  .menu-btn__burger::before {
    transform: translateY(-8px);
  }

  .menu-btn__burger::after {
    transform: translateY(8px);
  }

  .menu-btn.active .menu-btn__burger {
    background: transparent;
  }

  .menu-btn.active .menu-btn__burger::before {
    transform: rotate(45deg);
  }

  .menu-btn.active .menu-btn__burger::after {
    transform: rotate(-45deg);
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu li {
    margin: 0;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
  }

  /* Background Image */
  .full-screen-bg {
    height: 50vh;
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
  }

  .banner-content {
    padding: 2rem 1rem;
  }

  .banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .banner-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  /* Footer */
  footer {
    padding: 2rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo {
    max-width: 150px;
    margin: 0 auto 2rem;
  }

  .footer-links ul {
    padding: 0;
  }

  .footer-links li {
    margin: 0.5rem 0;
  }

  .footer-contact p {
    margin: 0.5rem 0;
  }

  .social-icons {
    justify-content: center;
    gap: 1rem;
  }

  .social-icons a {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .logo-container {
    max-width: 120px;
  }
  .logo {
    max-height: 110px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .footer-logo {
    max-width: 120px;
  }

  .social-icons a {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Footer */
  footer {
    padding: 2rem 1rem;
    text-align: center;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-logo {
    max-width: 150px;
    margin: 0 auto;
    text-align: center;
  }

  .footer-logo img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .footer-links {
    width: 100%;
    text-align: center;
  }

  .footer-links h4 {
    margin-bottom: 1rem;
    text-align: center;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-links li {
    margin: 0;
  }

  .footer-links a {
    display: inline-block;
    padding: 0.5rem 0;
  }

  .footer-contact {
    width: 100%;
    text-align: center;
    padding-right: 2rem;
  }

  .footer-contact h4 {
    margin-bottom: 1rem;
    text-align: center;
  }

  .footer-contact p {
    margin: 0.5rem 0;
    text-align: center;
  }

  .footer-social {
    width: 100%;
    text-align: center;
  }

  .footer-social h4 {
    margin-bottom: 1rem;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }

  .social-icons a {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
  }

  /* Team Member Visibility on Mobile */
  .team-section {
    padding: 80px 5%;
    margin-left: 0;
    width: 100%;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 5%;
  }

  .team-member {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    opacity: 1;
    transform: none;
  }

  .profile-image {
    width: 200px;
    height: 200px;
    margin-bottom: 1.5rem;
  }

  .team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .team-member .position {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .team-member p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .team-member .social-links {
    gap: 1rem;
  }

  .team-member .social-links a {
    font-size: 1.1rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 8px;
  }
  
  /* Extra small typography */
  .banner-content h1 {
    font-size: 2rem;
  }
  
  .banner-content p {
    font-size: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  /* Footer adjustments */
  .footer-content {
    gap: 2rem;
  }

  .footer-logo {
    max-width: 120px;
  }

  .footer-contact {
    padding-right: 1rem;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icons a {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 0.9rem;
  }

  /* Team Member Adjustments for Small Screens */
  .team-member {
    padding: 1.2rem;
    max-width: 280px;
  }

  .profile-image {
    width: 160px;
    height: 160px;
  }

  .team-member h3 {
    font-size: 1.2rem;
  }

  .team-member .position {
    font-size: 0.95rem;
  }

  .team-member p {
    font-size: 0.9rem;
  }
  
  /* Button adjustments */
  .btn-secondary,
  .btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  /* Fix "Behind the Filmmakers" button for small screens */
  .btn-secondary {
    white-space: normal;
    line-height: 1.3;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  /* Gallery adjustments */
  .gallery-image {
    height: 200px;
  }
  
  /* About section adjustments */
  .about-section {
    padding: 2rem 1rem;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
  }
  
  .about-content p {
    font-size: 1rem;
  }
  
  /* Mission/Vision adjustments */
  .mission, .vision {
    padding: 1.5rem;
  }
  
  .mission h3, .vision h3 {
    font-size: 1.5rem;
  }
  
  .mission p, .vision p {
    font-size: 1rem;
  }
  
  /* Contact page small mobile fixes */
  .contact-section {
    padding: 2rem 0.5rem;
  }
  
  .contact-info {
    padding: 0.5rem;
  }
  
  .contact-info h2 {
    font-size: 1.8rem;
  }
  
  .email-section {
    padding: 1rem;
  }
  
  .email-section h3 {
    font-size: 1.5rem;
  }
  
  .email-section p {
    font-size: 1rem;
  }
  
  .social-connect {
    padding: 1rem;
  }
  
  .social-connect h3 {
    font-size: 1.5rem;
  }
  
  .social-icons a {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .contact-form {
    padding: 0.5rem;
  }
  
  .contact-form iframe {
    height: 700px !important;
  }
  
  /* Behind the filmmakers - Drawn Out underline fix for small screens */
  .behind-scenes-intro h2::after {
    width: 150px;
  }
}

/* Extra small devices (landscape phones) */
@media (max-width: 360px) {
  .container {
    padding: 0 5px;
  }
  
  .banner-content h1 {
    font-size: 1.8rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .team-member {
    padding: 1rem;
    max-width: 260px;
  }
  
  .profile-image {
    width: 140px;
    height: 140px;
  }
  
  .btn-secondary,
  .btn-primary {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  /* Fix "Behind the Filmmakers" button for extra small screens */
  .btn-secondary {
    white-space: normal;
    line-height: 1.1;
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  
  /* Contact page extra small mobile fixes */
  .contact-section {
    padding: 1.5rem 0.25rem;
  }
  
  .contact-info h2 {
    font-size: 1.6rem;
  }
  
  .email-section {
    padding: 0.75rem;
  }
  
  .email-section h3 {
    font-size: 1.3rem;
  }
  
  .email-section p {
    font-size: 0.9rem;
  }
  
  .social-connect {
    padding: 0.75rem;
  }
  
  .social-connect h3 {
    font-size: 1.3rem;
  }
  
  .social-icons a {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .contact-form {
    padding: 0.25rem;
  }
  
  .contact-form iframe {
    height: 600px !important;
  }
  
  /* Behind the filmmakers - Drawn Out underline fix for extra small screens */
  .behind-scenes-intro h2::after {
    width: 120px;
  }
}

/* Comprehensive responsive design for all screen sizes */
@media (max-width: 1200px) {
  /* Large tablets and small laptops */
  .container {
    width: 95%;
    padding: 0 15px;
  }
  
  .film-sections {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1rem;
  }
  
  .section-image {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .team-member {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 992px) {
  /* Tablets */
  .banner-content h1 {
    font-size: 3.5rem;
  }
  
  .banner-content p {
    font-size: 1.3rem;
  }
  
  .about-content h2 {
    font-size: 2.8rem;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Mobile phones and small tablets */
  .container {
    width: 100%;
    padding: 0 10px;
  }
  
  /* Typography scaling */
  .banner-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  
  .banner-content p {
    font-size: 1.1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  /* Prevent horizontal scroll from fixed widths */
  .film-section {
    min-width: 0;
    width: 100%;
  }

  /* Ensure hero/banner decorative stars don't overflow headings */
  .banner-content h1 span[class^="star"],
  .hero-content h1 span[class^="star"],
  .hero-content p span[class^="star"] {
    display: none;
  }

  /* Keep section images proportional and centered */
  .section-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin-left: 0;
    margin-right: 0;
  }

  /* Film posters in cards scale nicely */
  .film-poster {
    max-width: 100%;
    height: auto;
  }

  /* Make large CTAs fit small screens */
  .btn-secondary,
  .btn-primary {
    width: 100%;
    max-width: 420px;
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  /* Fix "Behind the Filmmakers" button for mobile screens */
  .btn-secondary {
    white-space: normal;
    line-height: 1.4;
    text-align: center;
    padding: 12px 18px;
    font-size: 1rem;
  }

  /* Footer alignment fixes */
  .footer-contact {
    margin-left: 0;
    padding: 0 0.5rem;
  }

  .footer-logo {
    margin-top: 0;
    max-width: 160px;
  }

  .footer-logo img {
    margin-left: 0;
    max-height: 160px;
  }

  .footer-content {
    justify-items: center;
  }

  /* Meet the Team: ensure perfect centering on mobile */
  .team-section {
    margin-left: 0;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
    padding: 60px 5%;
  }

  .team-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    width: 100%;
    gap: 2rem;
  }

  .team-member {
    margin-left: auto;
    margin-right: auto;
    opacity: 1 !important;
    transform: none !important;
    width: 100%;
    max-width: 300px;
    padding: 1.5rem;
  }
  
  .profile-image {
    width: 180px;
    height: 180px;
  }
  
  /* Gallery adjustments */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-image {
    height: 250px;
  }
  
  /* Mission/Vision adjustments */
  .mission, .vision {
    padding: 2rem;
  }
  
  /* About section adjustments */
  .about-section {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
  }
  
  .about-content h2 {
    font-size: 2.2rem;
  }
  
  .about-content p {
    font-size: 1.1rem;
  }
  
  /* Contact page mobile fixes */
  .contact-section {
    padding: 3rem 1rem;
  }
  
  .contact-info {
    padding: 1rem;
  }
  
  .contact-info h2 {
    font-size: 2rem;
  }
  
  .contact-info p {
    font-size: 1rem;
  }
  
  .email-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .email-section h3 {
    font-size: 1.8rem;
  }
  
  .email-section p {
    font-size: 1.2rem;
    word-break: break-all;
  }
  
  .social-connect {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .social-connect h3 {
    font-size: 1.8rem;
  }
  
  .social-icons {
    gap: 1.5rem;
  }
  
  .social-icons a {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .contact-form iframe {
    height: 800px !important;
  }
  
  /* Behind the filmmakers - Drawn Out underline fix */
  .behind-scenes-intro h2::after {
    width: 200px;
  }
}