/* ============================================
   INHOTEC — Hero Section
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video, .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-animated-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-animated-bg .bg-gradient {
  position: absolute;
  inset: 0;
  background: var(--season-gradient);
  opacity: 0.4;
}
.hero-animated-bg .bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
.bg-shape:nth-child(1) {
  width: 600px; height: 600px;
  background: var(--season-primary);
  top: -200px; left: -100px;
}
.bg-shape:nth-child(2) {
  width: 500px; height: 500px;
  background: var(--color-accent-alt);
  top: 50%; right: -150px;
  animation-delay: -3s; animation-duration: 10s;
}
.bg-shape:nth-child(3) {
  width: 400px; height: 400px;
  background: var(--color-secondary);
  bottom: -100px; left: 30%;
  animation-delay: -5s; animation-duration: 12s;
}
.bg-shape:nth-child(4) {
  width: 300px; height: 300px;
  background: var(--season-accent);
  top: 30%; left: 50%;
  animation-delay: -2s; animation-duration: 9s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 10px) scale(1.05); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13,13,18,0.5) 0%, rgba(13,13,18,0.3) 40%,
    rgba(13,13,18,0.6) 70%, rgba(13,13,18,1) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-2xl);
  animation: heroFadeIn 1s ease-out;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo-container {
  margin-bottom: var(--space-xl);
  animation: heroFadeIn 1s ease-out both;
}

.hero-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}
.hero-season-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--border-radius-full);
  color: var(--season-accent);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
  animation: heroFadeIn 1s ease-out 0.2s both;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-5xl);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  letter-spacing: -2px;
  animation: heroFadeIn 1s ease-out 0.4s both;
}
.hero-title .highlight {
  background: var(--season-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: heroFadeIn 1s ease-out 0.6s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: heroFadeIn 1s ease-out 0.8s both;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-tertiary);
  font-size: var(--fs-xs);
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--text-tertiary), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
