@charset "UTF-8";
/* CSS Document */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  padding-top: 30px;
  background: #111;
  color: #eee;
}


nav {
  width: 100%;
  background-color: rgba(0, 0, 0, 0); /* transparent */
  color: white;
  padding: 0.5rem 1.2rem; /* 🔼 smaller padding to bring it closer to top */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  font-family:"Times New Roman", "serif"; 
}

.logo {
  flex: 1;
  font-weight:none;
  font-size: 1.4rem;
}


.close-button {
 position: absolute;
  top: 0.7rem;
  right: 30px;
  font-size: 1rem;
  color:white;
  text-decoration: none;
  z-index: 1100;
  user-select: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-button:hover {
  color:white;
}


.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 0px;
  margin-top: 20px;
}



.video-container video {
  position:absolute;
  top: 0; left: 0;
  width: 100%;
  height: 91%;
}

.synopsis {
  max-width: 1200px;
  margin: 0 auto 0px auto;
  font-size: 1.2rem;
  line-height: 1.5;
}

.synopsis .year {
  font-weight: bold;
  margin-top: 10px;
  color: #ccc;
  font-size: 2rem;
}


.cast-crew-section {
  max-width: 900px;
  margin: 40px auto;
  text-align: center; 
  border-top: 2px solid #555;
  
}

.cast-crew-section h2 {
  font-size: 2rem;
  margin-bottom: 0px;
  color: white;
  padding-bottom: 0px;
  transform: translateX(3%);
}

.cast-crew {
  display: flex;
  justify-content:space-around;
  max-width: 1000px;
  margin: 20px auto;
  gap: 200px;
}

.credits-column {
  flex: 1;
}

.credit-item {
  margin-bottom: 40px;
}

.credit-item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.credit-item p {
  font-size: 0.9rem;
  color: #bfbfbf;
  margin: 15px 0;
}


/* Horizontal scroll reel + buttons */

.reel-section {
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding-bottom: 10px;
}

.reel-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex-grow: 1;
  scroll-behavior: smooth;
  border-radius: 0px;
  background: #111;
  padding: 10px 0;
}

.reel {
  display: flex;
  gap: 10px;
  padding-left: 20px;
}

.reel img {
  height: 200px;
  border-radius: 0px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.reel img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.7);
}

button#scroll-left,
button#scroll-right {
  background:#111;
  border: none;
  color: white;
  font-weight:100;
  font-size: 1.5rem;
  cursor:pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  user-select: none;
}

button#scroll-left:hover,
button#scroll-right:hover {
  
}

@media (max-width: 700px) {
  .cast-crew {
    flex-direction: column;
    gap: 30px;
  }
}
