/* ============================================================
   AURO MUSIC — Main Stylesheet
   Calm · Spiritual · Meditative · Sky Blue Palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Nunito:wght@300;400;500;600&display=swap');

/* ------------------------------------------------------------
   CSS VARIABLES
   ------------------------------------------------------------ */
:root {
  /* Sky blue palette — from deep to light */
  --sky-deep:     #2e7ca8;
  --sky-mid:      #3a8ab8;
  --sky-main:     #4a9ec8;
  --sky-bright:   #5bafd6;
  --sky-soft:     #7dc4e4;
  --sky-pale:     #a8d8f2;
  --sky-mist:     #ceeaf8;
  --sky-frost:    #e4f4fc;
  --sky-whisper:  #f0f8ff;

  /* Accent colours */
  --gold-deep:    #a07820;
  --gold-main:    #c9a84c;
  --gold-light:   #f5d98b;
  --gold-pale:    #fef4d8;

  --pink-deep:    #a0507a;
  --pink-main:    #c878a8;
  --pink-soft:    #f0b8d8;
  --pink-pale:    #fce8f4;

  --rose-deep:    #b04060;
  --rose-soft:    #f8d0dc;
  --rose-pale:    #fde8ec;

  /* Text */
  --text-heading: #1a5070;
  --text-body:    #2a6080;
  --text-muted:   #6090a8;
  --text-hint:    #90b8c8;
  --text-white:   #ffffff;
  --text-offwhite:#f0f8ff;
  --text-gold:    #f5d98b;

  /* Surfaces */
  --page-bg:      #f0f8ff;
  --card-bg:      #ffffff;
  --card-border:  #c8e4f4;

  /* Header / Player / Hero */
  --header-bg:    #5bafd6;
  --nav-bg:       #3a8ab8;
  --hero-bg:      #4a9ec8;
  --player-bg:    #3a8ab8;
  --sidebar-bg:   #3a8ab8;

  /* Shadows */
  --shadow-card:  0 2px 12px rgba(58,138,184,0.10);
  --shadow-player:0 -2px 16px rgba(58,138,184,0.18);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  /* Spacing */
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --radius-xl:    22px;
  --radius-full:  9999px;

  /* Layout */
  --header-h:     52px;
  --player-h:     72px;
  --tabbar-h:     58px;
  --sidebar-w:    220px;
}

/* ------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  font-family: var(--font-body);
  background: var(--page-bg);
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ------------------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------------------ */
.font-display { font-family: var(--font-display); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; color: var(--text-heading); }

.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-heading);
  letter-spacing: 0.3px;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
}

.label-small {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ------------------------------------------------------------
   LAYOUT SHELL
   ------------------------------------------------------------ */
.app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--header-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.site-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: #fff8e8;
  letter-spacing: 2.5px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.site-logo em {
  font-style: italic;
  color: #fce8f4;
  font-size: 20px;
}

.header-search {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.header-search:hover { background: rgba(255,255,255,0.25); }

/* Desktop nav (hidden on mobile) */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.desktop-nav a {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff8e8;
  background: rgba(255,255,255,0.12);
}
.desktop-nav a.active { color: var(--gold-light); }

/* Mobile hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: width 0.2s;
}
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 15px; }
.hamburger span:nth-child(3) { width: 19px; }

/* Horizontal scroll nav (mobile/tablet) */
.scroll-nav {
  background: var(--nav-bg);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  -webkit-overflow-scrolling: touch;
}
.scroll-nav::-webkit-scrollbar { display: none; }

.scroll-nav a {
  padding: 11px 16px;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
}
.scroll-nav a:hover { color: rgba(255,255,255,0.85); }
.scroll-nav a.active {
  color: #fff8e8;
  border-bottom-color: var(--gold-main);
}

/* Main content area */
.main-content {
  flex: 1;
  padding: 24px 16px calc(var(--player-h) + var(--tabbar-h) + 16px);
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

/* Bottom tab bar (mobile) */
.tab-bar {
  position: fixed;
  bottom: var(--player-h);
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--tabbar-h);
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 6px 0 4px;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  flex: 1;
  padding: 4px 0;
}
.tab-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--sky-frost);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.tab-item.active .tab-icon { background: var(--sky-main); }
.tab-label-text {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.tab-item.active .tab-label-text { color: var(--sky-mid); }

/* Music Player Bar */
.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  height: var(--player-h);
  background: var(--player-bg);
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 12px;
  box-shadow: var(--shadow-player);
}

.player-thumb {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--sky-main);
  border: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.player-thumb img { width: 100%; height: 100%; object-fit: cover; }

.player-info { flex: 1; min-width: 0; }
.player-track {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.player-section-name {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-progress-wrap {
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 3px;
  margin-top: 6px;
  cursor: pointer;
  position: relative;
}
.player-progress-fill {
  height: 100%;
  background: var(--gold-light);
  border-radius: 3px;
  width: 0%;
  transition: width 0.5s linear;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ctrl {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.ctrl:hover { background: rgba(255,255,255,0.12); }
.ctrl.play-btn {
  background: var(--gold-light);
  border-color: var(--gold-light);
  width: 36px;
  height: 36px;
}
.ctrl.play-btn:hover { background: #f0d070; }

/* Sidebar (tablet/desktop) */
.with-sidebar {
  display: flex;
  min-height: calc(100vh - var(--header-h));
}
.sidebar {
  display: none;
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--sidebar-bg);
  min-height: calc(100vh - var(--header-h) - var(--player-h));
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h) - var(--player-h));
  overflow-y: auto;
  padding: 20px 0;
}
.sidebar-section-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0 18px 10px;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.58);
  border-left: 2px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  line-height: 1.3;
}
.sidebar-nav a:hover {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
}
.sidebar-nav a.active {
  color: #fff8e8;
  border-left-color: var(--gold-main);
  background: rgba(255,255,255,0.09);
}
.sidebar-nav a svg { flex-shrink: 0; opacity: 0.7; }
.sidebar-nav a.active svg { opacity: 1; }

.sidebar-content { flex: 1; overflow: hidden; }

/* ------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--hero-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  text-align: center;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: background-image 1.2s ease;
}
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 60, 90, 0.45) 0%,
    rgba(20, 60, 90, 0.30) 50%,
    rgba(20, 60, 90, 0.55) 100%
  );
}

.hero-orbs {
  display: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  animation: orb-drift 8s ease-in-out infinite alternate;
}
.orb:nth-child(2) { animation-delay: -2s; animation-duration: 11s; }
.orb:nth-child(3) { animation-delay: -4s; animation-duration: 9s; }
.orb:nth-child(4) { animation-delay: -1s; animation-duration: 13s; }
.orb:nth-child(5) { animation-delay: -3s; animation-duration: 7s; }

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(8px, -12px) scale(1.05); }
}

.hero-content {
  position: relative;
  padding: 40px 24px;
  animation: fade-up 0.8s ease both;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 3px;
  line-height: 1.15;
  margin: 8px 0;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: #fce8f4;
  letter-spacing: 1px;
  margin-top: 6px;
}
.hero-stars {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 5px;
  margin-top: 10px;
  display: block;
}

/* Inner page hero (smaller) */
.hero.hero-sm { min-height: 130px; }
.hero.hero-sm .hero-title { font-size: 26px; }

/* ------------------------------------------------------------
   SECTION HEADERS
   ------------------------------------------------------------ */
.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.sec-link {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-deep);
  transition: color 0.2s;
}
.sec-link:hover { color: var(--gold-main); }

/* ------------------------------------------------------------
   MUSIC CARDS
   ------------------------------------------------------------ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.music-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  box-shadow: var(--shadow-card);
}
.music-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58,138,184,0.18);
  border-color: var(--sky-pale);
}
.music-card:active { transform: translateY(0); }

.card-cover {
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.card-cover.has-image .cover-icon { display: none; }
.card-cover.has-image .cover-glow { display: none; }
.card-cover.has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,50,80,0.25);
}

/* Cover colour variants */
.cc-blue1 { background: #3a8ab8; }
.cc-blue2 { background: #5aa0c8; }
.cc-blue3 { background: #2e7ca8; }
.cc-blue4 { background: #7ac0d8; }
.cc-gold  { background: #a07820; }
.cc-pink  { background: #c878a8; }

.cover-image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cover-glow {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  opacity: 0.45;
  pointer-events: none;
}
.cg-pink  { background: #f0b8d8; top: -15px; left: -15px; }
.cg-gold  { background: #f5d98b; bottom: -15px; right: -15px; }
.cg-sky   { background: #a8e0f8; bottom: -15px; left: -15px; }
.cg-soft  { background: #c8e8f8; top: -15px; right: -15px; }

.cover-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-over {
  position: absolute;
  bottom: 9px;
  right: 9px;
  width: 28px;
  height: 28px;
  background: var(--gold-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.18s, transform 0.18s;
}
.music-card:hover .play-over,
.music-card.playing .play-over {
  opacity: 1;
  transform: scale(1);
}
.music-card.playing .play-over { background: var(--sky-bright); opacity: 1; transform: scale(1); }

.card-body { padding: 10px 12px 12px; }
.card-title {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 2px;
}
.card-meta { font-size: 11px; color: var(--text-muted); }
.card-duration { font-size: 10px; color: var(--text-hint); }

/* Wide list card (for section pages) */
.track-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }

.track-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  box-shadow: var(--shadow-card);
}
.track-item:hover {
  background: var(--sky-whisper);
  border-color: var(--sky-pale);
}
.track-item.playing { border-color: var(--sky-main); background: var(--sky-frost); }

.track-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.track-thumb img { width: 100%; height: 100%; object-fit: cover; }

.track-play-btn {
  position: absolute;
  inset: 0;
  background: rgba(58,138,184,0.5);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s;
}
.track-item:hover .track-play-btn,
.track-item.playing .track-play-btn { opacity: 1; }

.track-info { flex: 1; min-width: 0; }
.track-title {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-heading);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.track-dur { font-size: 11px; color: var(--text-hint); flex-shrink: 0; }

/* ------------------------------------------------------------
   SECTION TILES
   ------------------------------------------------------------ */
.section-tiles { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }

.section-tile {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  box-shadow: var(--shadow-card);
}
.section-tile:hover {
  background: var(--sky-whisper);
  border-color: var(--sky-pale);
  transform: translateX(2px);
}

.tile-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ti-sky  { background: var(--sky-frost); }
.ti-blue { background: #ddeeff; }
.ti-pink { background: var(--pink-pale); }
.ti-gold { background: var(--gold-pale); }
.ti-rose { background: var(--rose-pale); }

.tile-text { flex: 1; }
.tile-name {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-heading);
  line-height: 1.3;
}
.tile-sub { font-size: 10px; color: var(--text-muted); margin-top: 1px; }

.tile-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--gold-main);
  border-top: 1.5px solid var(--gold-main);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-right: 2px;
}

/* ------------------------------------------------------------
   QUOTE BAND
   ------------------------------------------------------------ */
.quote-band {
  background: var(--sky-mid);
  border-radius: var(--radius-lg);
  padding: 20px 20px;
  margin-bottom: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  pointer-events: none;
}
.quote-band-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: #e8f6ff;
  line-height: 1.7;
  position: relative;
}
.quote-band-attr {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 10px;
  display: block;
}


/* Quote language variants */
.quote-lang-sa {
  font-family: 'Noto Serif Devanagari', 'Noto Serif', Georgia, serif;
  font-size: 17px;
  letter-spacing: 0.02em;
  line-height: 1.9;
}
.quote-lang-fr {
  font-family: var(--font-display);
  font-style: italic;
}
.quote-lang-en {
  font-family: var(--font-display);
  font-style: italic;
}
/* ------------------------------------------------------------
   DEVOTEES SECTION
   ------------------------------------------------------------ */
.devotee-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }

.devotee-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.devotee-header {
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.devotee-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.av-sky  { background: var(--sky-main); }
.av-pink { background: var(--pink-main); }
.av-blue { background: var(--sky-deep); }

.devotee-meta { flex: 1; }
.devotee-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-heading);
}
.devotee-info-sub { font-size: 11px; color: var(--text-muted); }
.devotee-count { font-size: 11px; color: var(--gold-deep); letter-spacing: 0.3px; }

.devotee-expand { display: none; border-top: 1px solid var(--card-border); }
.devotee-expand.open { display: block; }
.devotee-expand .track-item { border-left: none; border-right: none; border-top: none; border-radius: 0; box-shadow: none; }
.devotee-expand .track-item:last-child { border-bottom: none; }

/* ------------------------------------------------------------
   DOCUMENTS SECTION
   ------------------------------------------------------------ */
.doc-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }

.doc-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  box-shadow: var(--shadow-card);
}
.doc-card:hover { background: var(--sky-whisper); border-color: var(--sky-pale); }

.doc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--sky-frost);
  border: 1px solid var(--sky-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-info { flex: 1; }
.doc-title {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-heading);
  line-height: 1.3;
}
.doc-author { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

.doc-badge {
  font-size: 9px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: var(--sky-frost);
  color: var(--sky-mid);
  border: 1px solid var(--sky-mist);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   MOBILE MENU DRAWER
   ------------------------------------------------------------ */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42,90,120,0.5);
  z-index: 200;
}
.menu-overlay.open { display: block; }

.menu-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 280px;
  background: var(--sidebar-bg);
  z-index: 210;
  transition: left 0.28s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 0 0 20px;
  overflow-y: auto;
}
.menu-drawer.open { left: 0; }

.menu-header {
  padding: 20px 18px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff8e8;
  letter-spacing: 2px;
}
.menu-logo em { color: #fce8f4; font-style: italic; }
.menu-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
}

.menu-links { padding: 12px 0; }
.menu-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  border-left: 2px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.menu-links a:hover { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.07); }
.menu-links a.active { color: #fff8e8; border-left-color: var(--gold-main); background: rgba(255,255,255,0.1); }

/* ------------------------------------------------------------
   UTILITIES & ANIMATIONS
   ------------------------------------------------------------ */
.page-section { margin-bottom: 32px; }

.fade-in { animation: fade-up 0.5s ease both; }
.fade-in:nth-child(2) { animation-delay: 0.07s; }
.fade-in:nth-child(3) { animation-delay: 0.14s; }
.fade-in:nth-child(4) { animation-delay: 0.21s; }

.now-playing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky-bright);
  display: inline-block;
  animation: pulse-dot 1.4s ease-in-out infinite;
  margin-right: 5px;
  vertical-align: middle;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* SVG icons */
.icon { display: inline-flex; align-items: center; justify-content: center; }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--sky-mist) 25%, var(--sky-frost) 50%, var(--sky-mist) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ------------------------------------------------------------
   RESPONSIVE — TABLET  (≥ 640px)
   ------------------------------------------------------------ */
@media (min-width: 640px) {
  .main-content { padding: 28px 24px calc(var(--player-h) + 24px); }

  .cards-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }

  .hero-title { font-size: 46px; }

  .tab-bar { display: none; }
  .main-content { padding-bottom: calc(var(--player-h) + 24px); }

  .sidebar { display: flex; flex-direction: column; }
  .with-sidebar .scroll-nav { display: none; }

  .hamburger { display: none; }
}

/* ------------------------------------------------------------
   RESPONSIVE — DESKTOP (≥ 1024px)
   ------------------------------------------------------------ */
@media (min-width: 1024px) {
  .hamburger { display: none; }
  .desktop-nav { display: flex; }
  .scroll-nav { display: none; }

  .main-content {
    padding: 36px 40px calc(var(--player-h) + 36px);
    max-width: 100%;
  }

  .with-sidebar { gap: 0; }
  .sidebar { width: 240px; }

  .cards-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }

  .hero-title { font-size: 54px; }
  .hero { min-height: 280px; }
}

/* ------------------------------------------------------------
   PRINT
   ------------------------------------------------------------ */
@media print {
  .player-bar, .tab-bar, .site-header, .scroll-nav { display: none !important; }
  .main-content { padding: 0 !important; }
}

/* ------------------------------------------------------------
   HERO — Since 1999 dedication line
   ------------------------------------------------------------ */
.hero-since {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.03em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ------------------------------------------------------------
   SITE FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: linear-gradient(135deg, #1a3a5a 0%, #2e5a7a 100%);
  color: rgba(255,255,255,0.78);
  padding: 36px 24px calc(var(--player-h, 72px) + 36px);
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.site-footer-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.footer-copy {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-light, #f5d98b);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.footer-line {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.footer-line strong { color: rgba(255,255,255,0.88); }
.footer-copyright-note {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 14px;
}

/* ------------------------------------------------------------
   ABOUT US PAGE
   ------------------------------------------------------------ */
.about-us-content { padding: 8px 0 24px; }
.about-us-block,
.about-us-dream,
.about-us-offering {
  background: #ffffff;
  border: 1px solid var(--card-border, #c8e4f4);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(42,96,128,0.06);
}
.about-us-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text-heading, #1a5070);
  margin-bottom: 14px;
}
.about-us-list { list-style: none; padding: 0; margin: 0; }
.about-us-list li {
  position: relative;
  padding-left: 18px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body, #2a6080);
}
.about-us-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-main, #c9a84c);
  font-size: 10px;
  top: 4px;
}
.about-us-dream { text-align: center; }
.about-us-dream p {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--text-body, #2a6080);
  line-height: 1.8;
  margin-bottom: 10px;
}
.about-us-dream-words {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 22px !important;
  font-style: italic;
  color: var(--sky-mid, #3a8ab8) !important;
  letter-spacing: 0.03em;
  line-height: 1.6 !important;
}
.about-us-offering p {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--text-body, #2a6080);
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-us-sanskrit {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 18px !important;
  font-style: italic;
  color: var(--gold-deep, #a07820) !important;
  text-align: center;
  margin: 16px 0 !important;
  letter-spacing: 0.04em;
}

/* ------------------------------------------------------------
   NOW PLAYING CARD SLOT (section pages)
   ------------------------------------------------------------ */
.np-section-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-main, #c9a84c);
  margin-bottom: 10px;
  text-align: center;
}
.cards-grid-single {
  grid-template-columns: minmax(0, 200px) !important;
  justify-content: center;
}

/* ------------------------------------------------------------
   DOC CARD — open arrow + hover
   ------------------------------------------------------------ */
.doc-card {
  transition: box-shadow 0.2s, transform 0.2s;
}
.doc-card:hover {
  box-shadow: 0 4px 16px rgba(42,96,128,0.14);
  transform: translateY(-2px);
}
.doc-open {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.6;
}
.doc-card:hover .doc-open {
  opacity: 1;
}

/* ------------------------------------------------------------
   SEARCH OVERLAY
   ------------------------------------------------------------ */
#search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 72px;
}
.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,30,50,0.65);
  backdrop-filter: blur(4px);
}
.search-box {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.28);
  overflow: hidden;
  animation: search-drop 0.2s ease;
}
@keyframes search-drop {
  from { opacity:0; transform:translateY(-12px); }
  to   { opacity:1; transform:translateY(0); }
}
.search-input-wrap {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #e0eef6;
}
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: #1a3a5a;
  padding: 16px 8px;
  background: transparent;
}
.search-input::placeholder { color: #a0b8cc; }
.search-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #6090a8;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}
.search-results {
  max-height: 60vh;
  overflow-y: auto;
}
.search-hint {
  padding: 24px;
  text-align: center;
  color: #6090a8;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
}
.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f6fa;
  transition: background 0.15s;
}
.search-item:hover { background: #f0f7fc; }
.si-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f4fb;
  border-radius: 8px;
}
.si-info { flex: 1; min-width: 0; }
.si-title {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a3a5a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.si-label {
  font-size: 11px;
  color: #6090a8;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.si-play { flex-shrink: 0; opacity: 0.5; }
.search-item:hover .si-play { opacity: 1; }

/* ------------------------------------------------------------
   HEADER BUTTONS (Share, Feedback)
   ------------------------------------------------------------ */
.header-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}
.header-btn:hover { background: rgba(255,255,255,0.12); }

/* ------------------------------------------------------------
   FEEDBACK OVERLAY
   ------------------------------------------------------------ */
#feedback-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 72px;
}
.feedback-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.28);
  overflow: hidden;
  animation: search-drop 0.2s ease;
}
.feedback-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e0eef6;
}
.feedback-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: #1a3a5a;
  margin: 0;
}
.feedback-body { padding: 20px; }
.fb-label {
  display: flex;
  justify-content: space-between;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6090a8;
  margin-bottom: 6px;
  margin-top: 14px;
}
.fb-label:first-child { margin-top: 0; }
.fb-counter { color: #a0b8cc; font-size: 10px; }
.fb-input, .fb-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #c8dff0;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #1a3a5a;
  background: #f8fbfd;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}
.fb-input:focus, .fb-textarea:focus { border-color: #3a8ab8; background: #fff; }
.fb-textarea { height: 120px; }
.fb-note {
  font-size: 11px;
  color: #a0b8cc;
  font-family: 'Nunito', sans-serif;
  margin: 10px 0 16px;
  font-style: italic;
}
.fb-submit {
  width: 100%;
  background: linear-gradient(135deg, #1a4a6a, #2e7aa8);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}
.fb-submit:hover { opacity: 0.88; }

/* ------------------------------------------------------------
   TOAST NOTIFICATION
   ------------------------------------------------------------ */
.toast {
  position: fixed;
  bottom: calc(var(--player-h, 72px) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a3a5a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 3000;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
