/* =========================================================
   Akanksha Awasthi — Official Site
   Shared design system: luxury black + gold, art-deco accents
   ========================================================= */

:root {
  --luxe-black: #0a0a0c;
  --luxe-black-soft: #131317;
  --luxe-black-card: #17171c;
  --gold: #d4af37;
  --gold-light: #f1d98b;
  --gold-dark: #9c7a24;
  --cream: #f6efe0;
  --muted: #a8a29a;
  --line: rgba(212, 175, 55, 0.18);
}

::selection {
  background: var(--gold);
  color: #0a0a0c;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--luxe-black);
  color: var(--cream);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
  font-family: "Playfair Display", serif;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--luxe-black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--luxe-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
}
#preloader .pl-mark {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
#preloader .pl-bar {
  width: 220px;
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}
#preloader .pl-bar span {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--gold);
}

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--gold); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid var(--gold);
  opacity: 0.6;
  transition: width .25s ease, height .25s ease, opacity .25s ease;
}
.cursor-hover .cursor-ring { width: 54px; height: 54px; opacity: 1; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Nav ---------- */
#site-nav {
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 12, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease, background .4s ease;
}
#site-nav.scrolled {
  background: rgba(10, 10, 12, 0.85);
  border-bottom-color: var(--line);
}
.nav-link {
  position: relative;
  color: var(--cream);
  opacity: 0.85;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold); opacity: 1; }

#mobile-menu {
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.77,0,.18,1);
}
#mobile-menu.open { transform: translateX(0); }

/* ---------- Buttons ---------- */
.btn-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  background: linear-gradient(120deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% auto;
  color: #0a0a0c;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .8rem;
  transition: background-position .5s ease, transform .3s ease;
}
.btn-gold:hover { background-position: right center; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2.1rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .8rem;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.btn-outline:hover { background: var(--gold); color: #0a0a0c; transform: translateY(-2px); }

/* ---------- Text & shimmer ---------- */
.shimmer-text {
  background: linear-gradient(100deg, var(--gold-dark) 20%, var(--gold-light) 40%, var(--gold) 60%, var(--gold-dark) 80%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  to { background-position: -250% center; }
}

.eyebrow {
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--gold);
}

/* ---------- Decorative dividers ---------- */
.deco-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}
.deco-divider .ln {
  height: 1px;
  width: 48px;
  background: var(--gold-dark);
}
.deco-divider .dm {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.deco-frame {
  border: 1px solid var(--line);
  position: relative;
}
.deco-frame::before, .deco-frame::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  border: 1px solid var(--gold);
}
.deco-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.deco-frame::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* ---------- Cards ---------- */
.card-luxury {
  background: linear-gradient(180deg, var(--luxe-black-card), var(--luxe-black-soft));
  border: 1px solid var(--line);
  transition: border-color .4s ease, transform .4s ease, box-shadow .4s ease;
}
.card-luxury:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(212, 175, 55, 0.35);
}

/* ---------- Poster / cover images (SVG placeholder + overlay) ---------- */
.poster {
  position: relative;
  overflow: hidden;
}
.poster img { transition: transform .6s ease; }
.poster:hover img { transform: scale(1.08); }
.poster .poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0) 30%, rgba(10,10,12,.92) 100%);
}

/* ---------- Marquee ---------- */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Timeline (About page) ---------- */
.timeline-line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
@media (min-width: 768px) {
  .timeline-line { left: 50%; }
}
.timeline-dot {
  width: 12px; height: 12px;
  background: var(--luxe-black);
  border: 2px solid var(--gold);
  border-radius: 50%;
}

/* ---------- Utility reveal states (GSAP targets, JS-off fallback visible) ---------- */
.reveal-up { opacity: 1; }
.js-ready .reveal-up { opacity: 0; transform: translateY(40px); }

.editme {
  border: 1px dashed rgba(212,175,55,.5);
  background: rgba(212,175,55,.05);
}
.editme-tag {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,.12);
  padding: .15rem .5rem;
  border-radius: 2px;
}

/* Back to top */
#back-to-top {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
#back-to-top.show { opacity: 1; pointer-events: auto; }

/* ---------- Lightbox (movies page gallery) ---------- */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
#lightbox.open { opacity: 1; pointer-events: auto; }

/* ---------- Filter buttons (movies page) ---------- */
.filter-btn { transition: background .3s ease, color .3s ease; }

/* ---------- Hero banner slider (home page) ---------- */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 1100px;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(ellipse 60% 55% at 78% 45%, rgba(212,175,55,.10), transparent 70%),
              radial-gradient(ellipse 40% 40% at 12% 85%, rgba(212,175,55,.06), transparent 70%),
              var(--luxe-black);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-slide-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-slide-inner { grid-template-columns: 58% 40%; gap: 2%; }
}
.hero-slide-lift {
  transform: translateY(24px);
  opacity: 0;
  transition: transform .9s cubic-bezier(.16,1,.3,1), opacity .9s ease;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.5));
}
.hero-slide.active .hero-slide-lift {
  transform: translateY(0);
  opacity: 1;
  transition-delay: .3s;
}
.hero-slide-title {
  font-family: "Playfair Display", serif;
}

/* ---------- Hero media shape (right-side portrait) ---------- */
.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}
@media (min-width: 1024px) {
  .hero-media { order: 2; }
}
.hero-media-inner {
  position: relative;
  width: min(78vw, 300px);
  aspect-ratio: 4 / 5;
  opacity: 0;
  transform: scale(.9) translateY(16px);
  transition: opacity 1s ease .15s, transform 1.1s cubic-bezier(.16,1,.3,1) .15s;
}
@media (min-width: 640px) {
  .hero-media-inner { width: min(50vw, 360px); }
}
@media (min-width: 1024px) {
  .hero-media-inner { width: min(24vw, 400px); }
}
.hero-slide.active .hero-media-inner {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: hero-media-float 6s ease-in-out 1.2s infinite;
}
@keyframes hero-media-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-media-glow {
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle, rgba(212,175,55,.4), transparent 68%);
  filter: blur(32px);
  z-index: -1;
  animation: hero-glow-pulse 5s ease-in-out infinite;
}
@keyframes hero-glow-pulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.08); }
}
.hero-media-ring {
  position: absolute;
  inset: -9%;
  border: 1px dashed rgba(212,175,55,.45);
  border-radius: 63% 37% 54% 46% / 46% 43% 57% 54%;
  animation: hero-ring-spin 26s linear infinite;
}
.hero-media-ring::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(212,175,55,.7);
}
@keyframes hero-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 63% 37% 54% 46% / 43% 65% 35% 57%;
  animation: hero-blob-morph 10s ease-in-out infinite;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.7), 0 0 0 1px rgba(212,175,55,.1);
}
@keyframes hero-blob-morph {
  0%, 100% { border-radius: 63% 37% 54% 46% / 43% 65% 35% 57%; }
  50% { border-radius: 40% 60% 43% 57% / 60% 45% 55% 40%; }
}
.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  will-change: transform;
}
.hero-slide.active .hero-slide-bg {
  animation: hero-kenburns 7s cubic-bezier(.25,.1,.25,1) forwards;
}
@keyframes hero-kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border: 1px solid rgba(212,175,55,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(10,10,12,.35);
  backdrop-filter: blur(6px);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.hero-nav-arrow:hover { background: var(--gold); color: #0a0a0c; border-color: var(--gold); }
.hero-dots {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero-dot {
  width: 34px;
  height: 3px;
  background: rgba(212,175,55,.3);
  position: relative;
  overflow: hidden;
}
.hero-dot span {
  position: absolute; inset: 0;
  width: 0%;
  background: var(--gold);
}
.hero-dot.active span { animation: hero-progress 6500ms linear forwards; }
@keyframes hero-progress { from { width: 0%; } to { width: 100%; } }
.hero-scroll-cue {
  position: absolute;
  bottom: 42px;
  right: 5%;
  z-index: 5;
}
@media (max-width: 767px) {
  .hero-scroll-cue { display: none; }
  .hero-nav-arrow { display: none; }
  .hero-slider { height: auto; min-height: 100vh; overflow: visible; }
  .hero-slide { position: relative; inset: auto; display: none; padding: 7.5rem 0 4rem; }
  .hero-slide.active { display: block; }
  .hero-slide-content { height: auto; }
  .hero-slide-inner { gap: 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.active .hero-slide-bg { animation: none; transform: scale(1); }
  .hero-slide-lift { transition: opacity .4s ease; transform: none; }
  .hero-slide.active .hero-media-inner,
  .hero-media-glow,
  .hero-media-ring,
  .hero-media-frame { animation: none; }
}

/* ---------- Review / rating cards ---------- */
.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- Sitemap footer ---------- */
.footer-sitemap a { display: inline-block; }
.footer-sitemap a:hover { color: var(--gold); }
