/* ============================================================
   AURA — GLOBAL CSS
   Shared across every page
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@100;200;300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --gold:        #560079;
  --gold-bright: #9b32c8;
  --bg:          #0b0b0b;
  --text:        #f5f0f7;
  --ink:         #0b0b0b;
  --silk:        #f5f0f7;
  --font-serif:  'Cormorant Garamond', serif;
  --font-sans:   'Inter', sans-serif;
  --max-w:       1600px;
  --px:          80px;
  --px-sm:       24px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .8s, color .8s;

  /* FIX FOR FLOATING NAVBAR */
  padding-top: 120px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .03;
  mix-blend-mode: overlay;
  background-image: url("https://www.transparenttextures.com/patterns/p6.png");
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  color: var(--text);
  letter-spacing: -.02em;
  transition: color .8s;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  color: inherit;
}

/* ── Utility ────────────────────────────────────────────── */
.gold {
  color: var(--gold);
}

.gold-gradient {
  background: linear-gradient(
    135deg,
    #560079,
    #9b32c8
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .5em;
  font-weight: 700;
  color: var(--gold);
}

/* ── NAVBAR ─────────────────────────────────────────────── */

nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1450px;
  z-index: 9999;

  transition: all .5s ease;
}

.nav-inner {

  max-width: var(--max-w);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 32px;

  border-radius: 999px;

  /* FLOATING GLASS EFFECT */
  background: rgba(10,10,10,.65);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(197,160,89,.18);

  box-shadow:
    0 12px 40px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.04);

  transition: all .5s ease;
}

/* ON SCROLL */
nav.scrolled .nav-inner {
  background: rgba(8,8,8,.82);

  box-shadow:
    0 20px 60px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.05);
}

/* LIGHT MODE */
html.light nav.scrolled .nav-inner {
  background: rgba(252,251,247,.82);
}

html.light .nav-inner {
  background: rgba(255,255,255,.65);
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;

  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.nav-logo img {
  height: 60px;
  object-fit: contain;

  filter: drop-shadow(0 0 8px rgba(197,160,89,.4));
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 20px;

  background: linear-gradient(
    135deg,
    var(--gold),
    var(--gold-bright),
    var(--gold)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-transform: uppercase;
  letter-spacing: -.05em;
  line-height: 1;
  padding-top: 4px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-link {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .4em;
  font-weight: 700;

  opacity: .5;

  transition: all .4s ease;

  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-link.active {
  color: var(--gold);
  opacity: 1;
}

.nav-link.active::after {
  content: "";

  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;

  height: 1px;

  background: var(--gold);
}

/* BOOK BUTTON */
.nav-book-btn {

  padding: 12px 24px;

  border: 1.5px solid var(--gold);

  color: var(--gold);

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: .35em;

  border-radius: 999px;

  transition: all .4s ease;

  white-space: nowrap;
}

.nav-book-btn:hover {

  background: var(--gold);
  color: #080808;

  transform: translateY(-2px);
}

/* THEME BTN */
.nav-theme-btn {

  padding: 10px;

  border-radius: 50%;

  border: 1px solid rgba(197,160,89,.12);

  color: var(--gold);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all .4s ease;
}

.nav-theme-btn:hover {

  background: var(--gold);
  color: var(--ink);
}

/* MOBILE */
.nav-mobile-controls {
  display: none;
}

@media (max-width: 768px) {

  body {
    padding-top: 100px;
  }

  nav {
    width: calc(100% - 24px);
    top: 12px;
  }

  .nav-inner {
    padding: 14px 18px;
  }

  .nav-links {
    display: none;
  }

  .nav-book-btn {
    display: none;
  }

  .nav-mobile-controls {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .nav-logo-text {
    font-size: 22px;
  }
}

/* MOBILE MENU */
.mobile-menu {

  position: fixed;
  inset: 0;
  z-index: 99999;

  background: rgba(8,8,8,.96);

  backdrop-filter: blur(18px);

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 32px;

  opacity: 0;
  transform: scale(1.05);

  pointer-events: none;

  transition: all .4s ease;
}

.mobile-menu.open {

  opacity: 1;
  transform: scale(1);

  pointer-events: auto;
}

.mobile-nav-link {

  font-family: var(--font-serif);

  font-size: clamp(2rem,6vw,3rem);

  font-style: italic;

  color: rgba(197,160,89,.45);

  transition: color .4s;
}

.mobile-nav-link:hover {
  color: var(--gold);
}

/* FOOTER */
footer {

  padding: 96px var(--px);

  border-top: 1px solid rgba(197,160,89,.1);
}

.footer-inner {

  max-width: var(--max-w);

  margin: 0 auto;

  display: flex;
  justify-content: space-between;

  gap: 80px;
}

@media (max-width: 768px) {

  footer {
    padding: 60px var(--px-sm);
  }

  .footer-inner {
    flex-direction: column;
  }
}


/* Smaller top menu items */
nav a,
.nav a,
.navbar a,
.nav-menu a,
.nav-link,
.header a {
  font-size: 11px !important;
  letter-spacing: 3px !important;
}

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 240, 247, 0.4);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(245, 240, 247, 0.55);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #b777d4;
}

.breadcrumb span {
  display: inline-flex;
  align-items: center;
  color: rgba(245, 240, 247, 0.3);
}

