/* ==========================================================================
   HERO SECTION
   Outer .casting-hero carries the background photo. A dark gradient
   overlay sits between the image and the content so the title/stats
   stay legible over the bright poster collage.
   ========================================================================== */

.casting-hero {
  position: relative;
  width: 100%;
  background-image: url('../../images/hero/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.casting-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 7, 12, 0.72) 0%, rgba(6, 7, 12, 0.6) 45%, rgba(6, 7, 12, 0.82) 100%),
    radial-gradient(circle at 50% 35%, rgba(6, 7, 12, 0.3), rgba(6, 7, 12, 0.75) 75%);
}

.casting-hero-responsive {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 55px 20px 65px;
}

.casting-hero-responsive .casting-title {
  margin: 0 0 14px;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -2px;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.casting-hero-responsive .casting-title span {
  color: #c58a2d;
}

.casting-hero-responsive .casting-desc {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.casting-hero-responsive .casting-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
}

.casting-hero-responsive .casting-stat-box {
  width: 220px;
  min-height: 185px;
  padding: 24px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.casting-hero-responsive .casting-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 138, 45, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d89b3d;
}

.casting-hero-responsive .casting-icon svg {
  width: 24px;
  height: 24px;
}

.casting-hero-responsive .casting-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: #ffffff;
}

.casting-hero-responsive .casting-label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.casting-hero-responsive .casting-small {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.76);
}

.casting-hero-responsive .casting-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.casting-hero-responsive .casting-btn {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.casting-hero-responsive .casting-btn-primary {
  background: linear-gradient(135deg, #b97c1f, #d29535);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.casting-hero-responsive .casting-btn-secondary {
  color: #ffffff;
  border: 2px solid rgba(197, 138, 45, 0.85);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---------- Responsive ---------- */

/* Large laptop */
@media (max-width: 1366px) {
  .casting-hero-responsive {
    max-width: 1000px;
    padding: 48px 18px 55px;
  }

  .casting-hero-responsive .casting-title {
    font-size: 62px;
  }

  .casting-hero-responsive .casting-stat-box {
    width: 205px;
    min-height: 175px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .casting-hero-responsive {
    padding: 42px 18px 50px;
  }

  .casting-hero-responsive .casting-title {
    font-size: 48px;
    letter-spacing: -1px;
  }

  .casting-hero-responsive .casting-desc {
    font-size: 15px;
    margin-bottom: 26px;
  }

  .casting-hero-responsive .casting-stats {
    gap: 14px;
  }

  .casting-hero-responsive .casting-stat-box {
    width: calc(50% - 10px);
    min-width: 220px;
    max-width: 260px;
    min-height: 165px;
    padding: 20px 16px;
  }

  .casting-hero-responsive .casting-number {
    font-size: 28px;
  }

  .casting-hero-responsive .casting-label {
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .casting-hero-responsive {
    padding: 34px 14px 40px;
  }

  .casting-hero-responsive .casting-title {
    font-size: 34px;
    line-height: 1.02;
  }

  .casting-hero-responsive .casting-desc {
    font-size: 14px;
    max-width: 95%;
    margin-bottom: 22px;
  }

  .casting-hero-responsive .casting-stats {
    gap: 12px;
    margin-bottom: 22px;
  }

  .casting-hero-responsive .casting-stat-box {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: auto;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .casting-hero-responsive .casting-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .casting-hero-responsive .casting-icon svg {
    width: 21px;
    height: 21px;
  }

  .casting-hero-responsive .casting-number {
    font-size: 26px;
  }

  .casting-hero-responsive .casting-label {
    font-size: 16px;
  }

  .casting-hero-responsive .casting-small {
    font-size: 12px;
  }

  .casting-hero-responsive .casting-buttons {
    gap: 10px;
  }

  .casting-hero-responsive .casting-btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 22px;
    font-size: 15px;
  }
}
