/* ==========================================================================
   SHRI MOKSHAM — Navigation & Hero Styling (Luxury Editorial)
   ========================================================================== */

/* ==========================================================================
   Sticky Luxury Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.42rem 0;
  transition: all var(--transition-smooth);
  background: rgba(234, 225, 210, 0.88);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border-bottom: 1px solid rgba(197, 158, 63, 0.25);
  box-shadow: 0 4px 20px rgba(24, 34, 47, 0.05);
}

.site-header.is-scrolled {
  padding: 0.35rem 0;
  background: rgba(234, 225, 210, 0.96);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 6px 24px rgba(24, 34, 47, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 96vw;
  width: 96%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Brand Identity */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  z-index: 1001;
}

.brand-emblem-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 14px var(--gold-glow);
  position: relative;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  background: #FFFFFF;
  flex-shrink: 0;
}

.brand-emblem-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-logo:hover .brand-emblem-wrap {
  transform: rotate(8deg) scale(1.05);
  box-shadow: 0 0 18px var(--gold-bright);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-tagline-micro {
  font-family: var(--font-serif);
  font-size: 0.68rem;
  color: var(--gold-dark);
  letter-spacing: 0.12em;
  font-style: italic;
}

/* Desktop Navigation (Limited & Clean) */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links-list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link-item a {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.nav-link-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 1.5px;
  background: var(--gold-primary);
  transition: transform var(--transition-smooth);
}

.nav-link-item a:hover,
.nav-link-item a.is-active {
  color: var(--gold-dark);
}

.nav-link-item a:hover::after,
.nav-link-item a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-actions .btn {
  padding: 0.4rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  border-radius: 20px;
}

/* Legacy drawer styles deferred to master animated-topbar.css */

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem 1.5rem;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Official Brand Anchor Emblem */
.hero-emblem-anchor {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.emblem-glow-ring {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  padding: 4px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.05) 70%, transparent 100%);
  animation: floatLevitate 5s ease-in-out infinite alternate;
}

@keyframes floatLevitate {
  0% { transform: translateY(0); box-shadow: 0 4px 18px rgba(184, 134, 11, 0.18); }
  100% { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(184, 134, 11, 0.32); }
}

.emblem-image-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 4px 16px var(--gold-glow);
  background: #FFFFFF;
}

.emblem-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-sacred-subtitle {
  font-family: var(--font-serif-heading);
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-sacred-subtitle::before,
.hero-sacred-subtitle::after {
  content: '✦';
  font-size: 0.6rem;
  color: var(--gold-rich);
}

/* Headlines */
.hero-headline {
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
  color: var(--text-heading);
}

.hero-subheadline {
  font-family: var(--font-serif-quote);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  color: var(--gold-primary);
  font-style: italic;
  margin-bottom: 1.2rem;
}

.hero-supporting-line {
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem auto;
  font-weight: 350;
  line-height: 1.85;
}

/* Actions */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-primary);
  font-family: var(--font-serif-heading);
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  animation: bounceSlow 2.5s ease-in-out infinite;
}

.scroll-arrow-svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
}

@keyframes bounceSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
