/* ============================================
   GCV SHARED STYLESHEET
   Loaded by all sub-sites (lovetalks, ghos, books, music, shop)
   Single source of truth for nav baseline + back-to-GCV button.
   ============================================ */

/* ---------- NAV BASELINE (80px standard height) ---------- */
.nav-inner{
  min-height:80px;
}

/* ---------- BACK TO GCV BUTTON ----------
   Sits as the first item in .nav-links across all sub-sites.
   Each sub-site sets --back-accent in :root to theme the hover state.
   Selectors are doubled to beat per-site `.nav-links a` rules. */
.back-to-gcv,
.nav-links a.back-to-gcv,
.nav-links > li > a.back-to-gcv{
  --_accent:var(--back-accent,#1a1316);
  --_accent-fg:var(--back-accent-fg,#ffffff);
  display:inline-flex !important;
  align-items:center;
  gap:7px;
  padding:8px 16px 8px 12px !important;
  border-radius:100px !important;
  border:1.5px solid rgba(0,0,0,.14) !important;
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  font-family:'Inter','Nunito Sans','Poppins',-apple-system,sans-serif !important;
  font-size:.7rem !important;
  font-weight:700 !important;
  letter-spacing:.14em !important;
  text-transform:uppercase !important;
  color:#3a3236 !important;
  text-decoration:none;
  white-space:nowrap;
  cursor:pointer;
  transition:background .3s ease,border-color .3s ease,color .3s ease,transform .3s ease,box-shadow .3s ease;
  flex-shrink:0;
  line-height:1 !important;
}
.back-to-gcv:hover,
.nav-links a.back-to-gcv:hover,
.nav-links > li > a.back-to-gcv:hover{
  background:var(--_accent) !important;
  color:var(--_accent-fg) !important;
  border-color:var(--_accent) !important;
  transform:translateX(-2px);
  box-shadow:0 8px 22px rgba(0,0,0,.18);
}
.back-to-gcv::after,
.nav-links a.back-to-gcv::after{display:none !important}
.back-to-gcv .arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  border-radius:50%;
  background:rgba(0,0,0,.08);
  font-size:.78rem;
  line-height:1;
  transition:background .3s ease,transform .3s ease;
}
.back-to-gcv:hover .arrow{
  background:rgba(255,255,255,.22);
  transform:translateX(-2px);
}

/* Dark nav context: lighten the back button so it reads against dark backgrounds */
.nav.dark .back-to-gcv,
.nav[data-theme="dark"] .back-to-gcv{
  background:rgba(255,255,255,.06) !important;
  border-color:rgba(255,255,255,.22) !important;
  color:rgba(255,255,255,.88) !important;
}
.nav.dark .back-to-gcv .arrow,
.nav[data-theme="dark"] .back-to-gcv .arrow{
  background:rgba(255,255,255,.12);
}

/* Responsive: on narrow screens, collapse the label to just "GCV" */
@media (max-width:640px){
  .back-to-gcv,
  .nav-links a.back-to-gcv,
  .nav-links > li > a.back-to-gcv{
    padding:8px 12px 8px 10px !important;
  }
}
