/* ================================
   HERO SECTION STYLES
================================ */

.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(14, 16, 19, 0.88) 0%, rgba(18, 20, 23, 0.96) 100%),
              url("../data/media/logo3.jpeg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 24px 100px;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(245, 201, 138, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  color: var(--gold-bright, #f5c98a);
  margin: 16px 0 20px;
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: #fff;
}

/* Hero Reel Video Frame (Right Side) */
.hero-reel-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-reel-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  max-height: 540px;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(245, 201, 138, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 201, 138, 0.15);
  background: #000;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-reel-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(245, 201, 138, 0.25);
  border-color: var(--gold-bright, #f5c98a);
}

.hero-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-reel-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(14, 16, 19, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 201, 138, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.reel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  display: inline-block;
  box-shadow: 0 0 8px #ef4444;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 201, 138, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsiveness for Hero */
@media (max-width: 992px) {
  .hero-body {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  
  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-lang-switcher, .hero-actions {
    justify-content: center;
  }
  
  .hero-reel-frame {
    max-width: 320px;
    max-height: 480px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 110px 16px 60px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .hero-reel-frame {
    max-width: 290px;
    max-height: 440px;
  }
  .hero-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
