/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(8,12,11,0.97) 0%, rgba(8,12,11,0.88) 36%,
      rgba(8,12,11,0.45) 58%, transparent 80%
    ),
    linear-gradient(180deg, transparent 65%, rgba(5,9,8,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 80px;
  max-width: 640px;
  margin-top: 64px;
  text-align: center;
}

.hero-logo {
  margin-bottom: 36px;
  animation: riseUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

.hero-logo img {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 18px;
  animation: riseUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.38s both;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.52);
  max-width: 400px;
  margin: 0 auto 42px;
  animation: riseUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.48s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  animation: riseUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.58s both;
}

.hero-cta:hover {
  background: #e6e6e6;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.play-icon {
  width: 22px;
  height: 22px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.play-icon::after {
  content: '';
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
  margin-left: 2px;
}

@keyframes riseUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(8,12,11,0.85) 0%, rgba(8,12,11,0.65) 40%, rgba(5,9,8,0.80) 100%);
  }

  .hero-content {
    padding: 0 24px;
    max-width: 100%;
    margin-top: 64px;
  }

  .hero-logo {
    margin-bottom: 24px;
  }

  .hero-logo img {
    height: 44px;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }
}
