body {
    background-color: black;
    margin: 0;
}


.container {
  background-color: #2a5fca;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  flex-direction: column; /* Stack logo above nav */
}

.logo {
height: 60px;
width: 60px;
margin-bottom: 2px; /* Space between logo and nav */
}
.cat-icon {
height: 50px;
width: 50px;
margin-bottom: -45px;
margin-top: -15px;
   z-index: 1000;
   visibility: hidden;
   opacity: 0;
  transition: opacity 0.4s ease;
}
@media only screen and (max-width: 768px) {
  .cat-icon {
  display: none;
  }
}
/* Base nav styles */
.nav-menu ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #2a5fca;
  justify-content: center;
  align-items: center;
}

.nav-menu li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
  font-family: sans-serif;
}

.nav-menu li a:hover {
  background-color: #013cb4;
  border-radius: 25px;
}

/* Hide checkbox */
.menu-checkbox {
  display: none;
}

/* Hamburger icon */
.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.menu-icon .bar {
  height: 4px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  margin: 4px 0;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .menu-icon {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #2a5fca;
    width: 100%;
    z-index: 1000;
  }

  .menu-checkbox:checked ~ .nav-menu {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu li a {
    padding: 12px 16px;
    font-size: 18px;
  }
}

img {
  max-width: 100%; /* Ensure images don’t overflow */
  height: auto;
}

h1 {
  text-align: center;
  font-family: sans-serif;
  font-size: 4rem;
  color: white;
  padding: 20px;
  border-radius: 15px;
  background-color:  #2a5fca;
  display: block;
  margin: 0 auto;
  width: 600px; /* Optional: You can control the width */
  height: auto;
  margin-bottom: 20px;
  margin-top: 50px;
  box-sizing: border-box;
  background-size: contain;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Added text shadow for contrast */
}
@media (max-width: 768px) {
  h1 {
    width: 300px;
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  h1 {
      font-size: 2rem;
  }
}
h2 {
  font-family: sans-serif;
  font-size: 3rem;
  color: white;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 20px;
  box-sizing: border-box;
  position: sticky;
  margin-left: 20px;
}
@media (max-width: 768px) {
  h2 {
  font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  h2 {
  font-size: 1.5rem;

  }
}

/* Style the track (background) */
::-webkit-scrollbar {
  width: 12px;               /* for vertical scrollbars */
  height: 12px;              /* for horizontal scrollbars */
}

/* Track area */
::-webkit-scrollbar-track {
  background-color: #1a1a1a; /* your custom background color */
  border-radius: 6px;
}

/* The draggable part (thumb) */
::-webkit-scrollbar-thumb {
  background-color: #2a5fca; /* your custom thumb color */
  border-radius: 6px;
  border: 2px solid #1a1a1a; /* gives spacing and contrast */
}

.image-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding: 20px;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  align-items: center;
  margin-left: 10px;
  margin-bottom: 20px;
}

.image-slider img {
  flex: 0 0 auto;
  max-width: 300px;
  min-width: 300px;
  height: auto;
  border-radius: 8px;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .image-slider img{
    max-width: 200px;
    min-width: 200px;
  }
}
@media (max-width: 480px) {
  .image-slider img{
    max-width: 150px;
    min-width: 150px;
  }
}
.image-slider2 {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding: 20px;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  align-items: center;
  margin-left: 10px;
  padding-bottom: 20px;
}

.image-slider2 img {
  flex: 0 0 auto;
  max-width: 450px;
  min-width: 450px;
  max-height: 250px;
  border-radius: 8px;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .image-slider2 img{
    max-width: 350px;
    min-width: 350px;
    max-height: 200px;
  }
}
@media (max-width: 480px) {
  .image-slider2 img{
    max-width: 250px;
    min-width: 250px;
    max-height: 150px;
  }
}
.image-slider .gallery-image:hover {
  transform: scale(1.05); /* Slight zoom on hover for image */
}
.gallery-image:hover {
  filter: brightness(50%); /* Darken the image */
}
.image-slider2 .gallery-image:hover {
  transform: scale(1.05); /* Slight zoom on hover for image */
}


.image-detail {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.image-detail:target {
  display: flex;
z-index: 2000; /* higher than menu icon */
}

.detail-content {
  background: black;
  padding: 30px;
  border-radius: 10px;
  max-width: 1500px;
  width: 60%;         /* stretch wider */
  height: 100%;
  text-align: left;
  position: relative;
  height: 100vh; /* Fixed height to trigger overflow */
  overflow-y: auto; /* Enables vertical scrolling */
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  .detail-content {
width: 100%;
  }
}
@media (max-width: 480px) {
  .detail-content {
width: 100%;

  }
}

.close-button {
  position: absolute;
  top: 30px; right: 30px;
  font-size: 2rem;
  text-decoration: none;
  color: #2a5fca;
  z-index: 9999; /* ensure it's clickable above iframe */
}
@media (max-width: 768px) {
  .close-button{
top: 70px;
right: 10px;
  }
}
@media (max-width: 480px) {
  .close-button{
top: 90px;
  }
}

.video-container {
    position: relative;
    z-index: 1; /* lower than the close button */
  }
.video-container iframe {
border: 0;
width: 100%;
  max-width:550px;
  height: 350px;
  }

  @media (max-width: 768px) {
    .video-container iframe{
  max-height: 250px;
  margin-top: 40px;
    }
  }
  @media (max-width: 480px) {
    .video-container iframe{
  max-height: 250px;
  margin-top: 60px;
    }
  }

h3 {
  color: #2a5fca;
  font-family: sans-serif;
  font-size: 3rem;
  margin-top: 8px;
  margin-bottom: 8px;
}
.time-text{
  color: #2a5fca;
}
.info-text{
  color: #a2bfe0;
}
.logline-text{
  color: #2a5fca;
}
.crew-text{
  color: #a2bfe0;
}
p{
  color: blue;
  font-family: sans-serif;
  white-space: pre-wrap;
  margin-top: 8px;
  margin-bottom: 8px;
}
.text-box {
  font-family: sans-serif;
  max-width: 600px;
  margin: 20px auto;
  color: blue;
  text-align: left;
  margin: 20px 0 20px 0px; /* top, right, bottom, left */
}

.text-box summary {
  font-weight: bold;
  cursor: pointer;
  color: #a2bfe0;
  list-style: none; /* remove default arrow */
}

.text-box[open] summary::after {
  content: "...less";
  float: center;
}

.text-box summary::after {
  content: "...more";
  float: center;
}
.award-box {
  font-family: sans-serif;
  max-width: 600px;
  margin: 20px auto;
  color: #2a5fca;
  text-align: left;
  margin: 20px 0 0 0px; /* top, right, bottom, left */
}

.award-summary {
  font-weight: bold;
  cursor: pointer;
  color: white;
  position: relative;
  padding-right: 20px;
  list-style: none; /* remove default arrow */
}

.award-box[open] summary::after {
  content: "^";
}

.award-box summary::after {
  content: "↓";
  position: absolute;
left: 70px;
top: 0;
}
.award-text{
  color: white;
}
b {
  color: purple;
}


.copyright-watermark {
  position: fixed; /* Keeps it fixed on the screen */
  bottom: 10px; /* 10px from the bottom of the screen */
  right: 10px; /* 10px from the right edge of the screen */
  font-size: 12px; /* Make it small */
  color: #2a5fca;
  font-family: sans-serif; /* Use a simple font */
  z-index: 9999; /* Ensure it stays on top of other content */
  text-align: center;
  padding: 5px;
  border-radius: 5px;
}
