/* Hero 5: Text left with background, Image right, PLAY button */
.hero5 {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 40px;
  background-image: url('../img/img19pc.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero5::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero5-container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero5-content {
  flex: 1;
  max-width: 600px;
}

.hero5-title {
  font-size: 64px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-family: Arial, sans-serif;
}

.hero5-subtitle {
  font-size: 28px;
  color: var(--text-primary);
  margin: 0 0 30px 0;
  line-height: 1.5;
  font-family: Arial, sans-serif;
}

.hero5-button {
  display: inline-block;
  padding: 15px 50px;
  background-color: var(--button-bg);
  color: var(--button-text);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
}

.hero5-button:hover {
  background-color: var(--button-hover-bg);
}

.hero5-image {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero5-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 450px;
}

@media (max-width: 768px) {
  .hero5 {
    height: auto;
    min-height: 500px;
    padding: 100px 20px 40px;
    background-image: url('../img/img19mob.webp');
  }

  .hero5-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .hero5-content {
    max-width: 100%;
  }

  .hero5-title {
    font-size: 36px;
  }

  .hero5-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .hero5-button {
    font-size: 18px;
    padding: 12px 40px;
  }

  .hero5-image {
    max-width: 100%;
  }

  .hero5-image img {
    max-height: 300px;
  }
}
