 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
     text-decoration: none;

    }

    body {
      font-family: 'Oswald', sans-serif;
      color: white;
      background-color: #000;
    }

    /* HERO SECTION */
    .hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 15vh 8vw;
      min-height: 80vh;
      background: url(//images/poster.png) no-repeat center center/cover;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    }

    .hero h1 {
      font-size: 6vw;
      margin-bottom: 10px;
    }

    .hero h3 {
      font-size: 1.8vw;
      margin-bottom: 20px;
      font-weight: 300;
    }

    .btn {
      cursor: pointer;
      text-decoration: none;
      background-color: black;
      color: white;
      border-radius: 8px;
      padding: 15px 30px;
      font-size: 1rem;
      cursor: pointer;
      font-family: 'Oswald', sans-serif;
      transition: background 0.5s ease;
    }

    .btn:hover {
      background-color: #2a2a2a;
    }

    /* CONTENT SECTION */
    .overlay {
      background-color: rgba(0, 0, 0, 0.85);
      padding: 5vw;
    }

    .section {
      margin-bottom: 60px;
    }

    .section h2 {
      font-size: 2rem;
      margin-bottom: 15px;
    }

    .section p {
      font-size: 1.4rem;
      line-height: 1.6;
      max-width: 900px;
    }

    /* CAST & CREW TABLE */
    table {
      width: 100%;
      max-width: 600px;
      border-collapse: collapse;
    }

    td {
      padding: 8px 12px;
      vertical-align: top;
      font-size: 1.3rem;
    }

    td:first-child {
      font-weight: bold;
      width: 40%;
    }

    /* GALLERY */
  .gallery {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping on small screens */
  gap: 20px;
  justify-content: flex-start;
}

.gallery img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border: 2px solid white;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

    /* CONTACT */
    .section strong {
      color: #ccc;
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 768px) {
      .hero {
        padding: 20vh 6vw;
        align-items: flex-start;
      }

      .hero h1 {
        font-size: 8vw;
      }

      .hero h3 {
        font-size: 4.5vw;
      }

      .btn {
        font-size: 1rem;
      }

      td {
        font-size: 0.95rem;
      }

      .gallery img {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .section h2 {
        font-size: 1.5rem;
      }

      .section p, td {
        font-size: 0.9rem;
      }
    }
.cast-crew-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.cast-crew-tables {
  flex: 1 1 55%;
}

.cast-crew-image {
  flex: 1 1 40%;
  text-align: right;
}

.cast-crew-image img {
  width: 100%;
  height: auto;
  border: none; /* No border radius */
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cast-crew-container {
    flex-direction: column;
  }

  .cast-crew-image {
    text-align: center;
    margin-top: 20px;
  }

  .cast-crew-image img {
    width: 100%;
    max-width: 100%;
  }
}