/* ══════════════════════════════════
   HERO SECTION STYLES
══════════════════════════════════ */

.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

/* Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  
  /* USE THIS EXACT FORMAT */
  background-image: url("../assets/images/hero.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  
  /* Keep these for animation */
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
  
  /* DON'T set initial filter - let JS handle it */
  will-change: transform;
  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* background:
    linear-gradient(
      to right, 
      rgba(5, 8, 2, 0.6) 0%, 
      rgba(5, 8, 2, 0.2) 50%, 
      rgba(5, 8, 2, 0.5) 100%
    ),
    linear-gradient(
      to top,   
      rgba(5, 8, 2, 0.8) 0%, 
      transparent 60%
    ); */
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 120px 0 200px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.9;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  margin-top: 22px;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.hero-sub {
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.65);
}

/* Left Tags */
.hero-tags {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 5;
}

.tag-item {
  background: var(--glass-tag, rgba(5, 8, 2, 0.55));
  border-left: 2.5px solid var(--gold, #c9a84c);
  padding: 16px 28px 16px 22px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  cursor: default;
  transition: background 0.3s, color 0.3s;
  animation: fadeInLeft 0.8s ease both;
  white-space: nowrap;
}

.tag-item:nth-child(1) { animation-delay: 0.3s; }
.tag-item:nth-child(2) { animation-delay: 0.5s; }
.tag-item:nth-child(3) { animation-delay: 0.7s; }

.tag-item:hover {
  background: rgba(5, 8, 2, 0.75);
  color: #ffffff;
}

/* Launch Badge */
.launch-badge {
  position: absolute;
  right: 52px;
  top: 50%;
  transform: translateY(-60%);
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  animation: badgePop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.badge-ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid #4a7c4e;
  border-radius: 50%;
}

.badge-laurel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.badge-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.badge-text .about {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.badge-text .launch {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Stats Bar */
.stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 10;
  animation: slideUp 0.9s ease 0.8s both;
}

.stat-item {
  padding: 22px 0;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
  cursor: default;
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.stat-small { font-size: 1.1rem; }

.stat-label {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}

/* Dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 0 0;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: #c9a84c;
  transform: scale(1.25);
}

/* Animations */
@keyframes slowZoom {
  0% { transform: scale(1.04); }
  100% { transform: scale(1.08); }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes badgePop {
  from { opacity: 0; transform: translateY(-60%) scale(0.5); }
  to { opacity: 1; transform: translateY(-60%) scale(1); }
}

@keyframes badgePopMobile {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

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

/* ══════════════════════════════════
   RESPONSIVE - Medium Screens (Tablets)
══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content {
    padding: 0 80px;
  }
  
  .launch-badge {
    right: 36px;
  }
}

/* ══════════════════════════════════
   RESPONSIVE - Small Screens (Mobile)
══════════════════════════════════ */
@media (max-width: 768px) {
  .hero {
    justify-content: flex-start;
    padding-top: 100px;
  }
  
  .hero-content {
    padding: 0 32px;
    order: 2;
    animation: fadeInUp 1s ease 0.4s both;
  }
  
  .hero-tags { 
    display: none; 
  }
  
  /* ═══ LAUNCH BADGE - Moved to top of hero-content ═══ */
  .launch-badge {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 0 auto 28px auto;
    width: 110px;
    height: 110px;
    order: 1;
    animation: badgePopMobile 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
  }
  
  .badge-text .about {
    font-size: 0.48rem;
  }
  
  .badge-text .launch {
    font-size: 1.3rem;
  }
  
  .stats-bar { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .stat-item {
    padding: 16px 0;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════
   RESPONSIVE - Extra Small Screens
══════════════════════════════════ */
@media (max-width: 480px) {
  .hero {
    padding-top: 80px;
  }
  
  .hero-content {
    padding: 0 24px;
  }
  
  .launch-badge {
    width: 96px;
    height: 96px;
    margin-bottom: 24px;
  }
  
  .badge-text .about {
    font-size: 0.44rem;
    letter-spacing: 0.2em;
  }
  
  .badge-text .launch {
    font-size: 1.15rem;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  
  .hero-tagline {
    font-size: 0.75rem;
    margin-top: 16px;
  }
  
  .hero-sub {
    font-size: 0.65rem;
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-value {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
  }
}