/* ===== HERO SECTION ===== */
.hero {
  width: 100%;
  height: 65vh; /* slightly shorter to fit caption above fold */
  overflow: hidden;
  background: var(--bg); /* fallback background */
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 100%;  /* native image width */
  max-height: 100%; /* native image height */
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center middle; /* crop bottom, keep top visible */
  display: block;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 2s ease forwards;
}

/* ===== CAPTION + YOUTUBE BUTTON ===== */
.hero-caption-container {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 2s ease forwards;
}

.hero-caption {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}

.hero-link {
  display: inline-block;
  padding: 10px 18px;
  background: var(--frame-dark);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-link:hover {
  background: var(--frame-light);
  color: var(--text);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
  .hero {
    height: 55vh;
  }
  .hero-caption {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 45vh;
  }
  .hero-caption {
    font-size: 0.95rem;
  }
  .hero-link {
    font-size: 0.95rem;
    padding: 8px 14px;
  }
}

