/*------------Short Films---------------*/

.shortfilms-header{
  background: url('WebsiteImages/Shortfilm1.jpg') center/cover no-repeat;
}



.shortfilms {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.shortfilms-box {
  background-image: url(WebsiteImages/boxes2.jpg);
  border: 2px solid transparent; 
  border-radius: 20px;
  padding: 50px 30px;
  max-width: 900px;
  box-shadow: 0 0 25px rgba(17, 16, 16, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.shortfilms-box:hover {
  border: 2px solid #fc3f40;
  box-shadow: 0 0 40px rgba(252, 63, 64, 0.7);
  transform: translateY(-5px);
}

.shortfilms-box h2 {
  color: #fc3f40;
  font-size: 4rem;
  margin-bottom: 15px;
}
.shortfilms-box h3 {
  color: #aaaaaa;
  font-size: 2rem;
  margin-bottom: 15px;
}


.shortfilms-box p {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.shortfilms-valid {
  color: #ccc;
  font-style: italic;
}

.shortfilms-btn {
  display: inline-block;
  background: #fc3f40;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.shortfilms-btn:hover {
  background: #ff5758;
  box-shadow: 0 0 15px rgba(252, 63, 64, 0.7);
}

.shortfilms-list {
  list-style: disc;
  margin: 15px 0 0 20px;
  text-align: left;
  color: #ccc;
  font-size: 0.95rem;
}

.shortfilms-list li {
  margin-bottom: 8px;
}

.shortfilms-box ul {
  list-style: none; /* Remove default bullets */
  padding-left: 0;
  margin: 15px 0;
  text-align: left;
}

.shortfilms-box ul li {
  position: relative;
  padding-left: 30px; /* space for the image */
  margin-bottom: 10px;
  color: #a7a7a7;
  font-size: 1rem;
}

.shortfilms-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px; /* adjust based on your image */
  height: 12px;
  background: url("WebsiteImages/redtriangle.png") no-repeat center;
  background-size: contain;
}

/* -------- SHORT FILMS TWO BOXES -------- */
.shortfilms-films {
  background: linear-gradient(to bottom, #070707, #000);
  padding: 70px 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.films-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
}

.film-box {
  width: 500px;
  background: #111;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 0 25px rgba(17, 16, 16, 0.3);
  transition: 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.film-box:hover {
  border: 2px solid #fc3f40;
  box-shadow: 0 0 40px rgba(252, 63, 64, 0.7);
  transform: translateY(-5px);
}

.film-box iframe {
  width: 100%;
  height: 280px;
  border-radius: 12px;
}

.film-box h3 {
  color: #fc3f40;
  margin-top: 15px;
  font-size: 1.6rem;
}

.film-box p {
  color: #ccc;
  margin-top: 8px;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
  .film-box {
    width: 100%;
  }

  .film-box iframe {
    height: 220px;
  }
}
