/* index.html — page-specific styles */

/* ══ HERO SLIDESHOW ══════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Slides */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

/* Photo or gradient fallback */
.hero-slide-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  animation: kenburns 8s ease-in-out infinite alternate;
}
/* fallback gradient when no photo */
.hero-slide-bg.no-photo {
  background: linear-gradient(135deg,
    #0a1628 0%, #0d1f2d 25%, #091a14 50%, #1a0d0d 75%, #0a0a14 100%);
}
/* gradient overlay always on top of photo */
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,.25)  0%,
    rgba(8,8,8,.15) 30%,
    rgba(8,8,8,.55) 65%,
    rgba(8,8,8,.92) 100%
  );
}

/* Decorative large emoji (no-photo slides only) */
.slide-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 340px;
  opacity: .06;
  animation: slowspin 60s linear infinite;
  pointer-events: none;
  user-select: none;
}

/* Slide label (bottom-left pill) */
.slide-label {
  position: absolute;
  bottom: 40%;
  right: 48px;
  background: rgba(8,8,8,.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  z-index: 2;
  transition: opacity 0.6s;
}

/* Nav dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: .3s;
}
.hero-dot.active {
  width: 24px;
  background: var(--cyan);
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(8,8,8,.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: .25s;
  color: #fff;
  opacity: 0;
}
.hero:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: var(--cyan); border-color: var(--cyan); color: #080808; }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* ══ HERO CONTENT ════════════════════════════════ */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 72px;
}
.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}
.hero-eye {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: var(--cyan-dim); border: 1px solid var(--bdr-cyan);
  border-radius: 100px;
  font-size: 12px; font-weight: 700; color: var(--cyan);
  letter-spacing: .6px; text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp .7s .1s ease both;
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.5vw, 74px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  animation: fadeUp .7s .2s ease both;
}
.hero-h1 em { color: var(--cyan); font-style: italic; }
.hero-p {
  font-size: 16px; color: rgba(255,255,255,.65);
  line-height: 1.75; max-width: 440px;
  margin-bottom: 32px;
  animation: fadeUp .7s .3s ease both;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp .7s .4s ease both;
}

/* Stats bar (above footer area of hero) */
.hero-stats-bar {
  margin-top: 52px;
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; overflow: hidden;
  width: fit-content;
  background: rgba(8,8,8,.45);
  backdrop-filter: blur(12px);
  animation: fadeUp .7s .5s ease both;
}
.hero-stat {
  padding: 14px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-v { font-family: var(--font-serif); font-size: 24px; font-weight: 700; letter-spacing: -1px; line-height: 1; margin-bottom: 3px; color: #fff; }
.hero-stat-l { font-size: 12px; color: rgba(255,255,255,.5); }

/* ══ MARQUEE ══════════════════════════════════════ */
.marquee-sec {
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 20px 0;
  overflow: hidden;
  background: var(--bg2);
}

/* ══ HOME MAP ══════════════════════════════════════ */
#homeMap {
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--bdr);
}

@media(max-width:768px){
  .hero-inner { padding: 0 24px; }
  .hero-stats-bar { display: none; }
  .slide-label { display: none; }
}
