/* ══════════════════════════════════════════
   HOME PAGE CSS — Clean nav, bg image hero
   ══════════════════════════════════════════ */

/* ── NAV — simple, doesn't fight the background ── */
.nav {
  background: rgba(6,4,2,0.82) !important;
  border-bottom: 1px solid rgba(201,168,76,0.12) !important;
  backdrop-filter: blur(10px);
  height: 64px;
  overflow: hidden !important;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  height: 64px;
  max-width: 1300px;
  margin: 0 auto;
}

.nav-left  { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }
.nav-left li, .nav-right li { display: flex; align-items: center; }

.nav-link {
  font-size: 11px;
  letter-spacing: 0.28em;
  padding: 0 22px;
  color: rgba(210,195,165,0.72);
  transition: color 0.2s;
}
.nav-link:hover { color: rgba(235,220,190,1); }
.nav-link.active { color: var(--fire-light); }

/* Dot separators */
.nav-left li + li::before,
.nav-right li + li::before {
  content: '·';
  color: rgba(201,168,76,0.3);
  font-size: 16px;
}

/* Center — logo only, no decorations */
.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.nav-line { display: none; }

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo::before,
.nav-logo::after { display: none !important; }

.nav-logo-img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(200,68,26,0.4));
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px rgba(200,68,26,0.6));
}

/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.bg-scene {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(6,4,2,0.65) 0%,
      rgba(6,4,2,0.1)  10%,
      transparent      25%,
      transparent      60%,
      rgba(6,4,2,0.7)  85%,
      rgba(6,4,2,1)    100%),
    linear-gradient(90deg,
      transparent      45%,
      rgba(6,4,2,0.5)  65%,
      rgba(6,4,2,0.88) 100%);
}

/* ── HERO CONTENT — floats over right side ── */
.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: calc(64px + 60px) 80px 60px 40%;
}

.hero-content { max-width: 520px; animation: fadeUp 0.9s 0.3s ease both; }

.hero-series-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ht-top {
  font-size: clamp(16px, 2vw, 26px);
  color: var(--text);
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.ht-main {
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.0;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg,
    var(--fire-light) 0%, #ff8855 35%,
    var(--ice-light) 65%, #7be0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(210,195,170,0.8);
  margin-bottom: 36px;
  font-style: italic;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Solid buttons */
.hero-btns .btn-fire {
  background: rgba(180,55,18,0.9);
  border-color: var(--fire-light);
  color: #fff;
  font-weight: 600;
}
.hero-btns .btn-fire:hover {
  background: rgba(210,75,30,1);
  box-shadow: 0 0 24px rgba(200,68,26,0.45);
}

.btn-outline-ice {
  display: inline-flex;
  align-items: center;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(74,154,187,0.75);
  color: #fff;
  background: rgba(74,154,187,0.22);
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 600;
}
.btn-outline-ice:hover {
  background: rgba(74,154,187,0.38);
  border-color: var(--ice-light);
  box-shadow: 0 0 24px rgba(74,154,187,0.25);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-inner {
    padding: calc(64px + 40px) 30px 50px 30px;
    justify-content: center;
    align-items: flex-end;
  }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-btns { justify-content: center; }
  .bg-overlay {
    background: linear-gradient(180deg,
      rgba(6,4,2,0.65) 0%, transparent 20%,
      transparent 55%, rgba(6,4,2,0.85) 80%,
      rgba(6,4,2,1) 100%);
  }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .ht-main { font-size: 30px; }
}
