/* NURTURED ORCHARD - SINGLE PAGE LUXURY STAGE THEME WITH TRANSPARENT GOLD EMBLEM */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-dark: #050811;
  --color-dark-rgb: 5, 8, 17;
  --color-royal: #0A1325;
  --color-royal-rgb: 10, 19, 37;
  --color-royal-blue: #132C52;
  
  --color-gold: #D4AF37;
  --color-gold-rgb: 212, 175, 55;
  --color-gold-bright: #FBE6A2;
  --color-cream: #FAF7F2;
  --color-text-muted: #8AA2C0;
}

html, body {
  background-color: var(--color-dark) !important;
  color: var(--color-cream);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 1023px) {
  html, body {
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100vh;
  }
}

@media (min-width: 1024px) {
  html, body {
    overflow: hidden !important;
    height: 100% !important;
  }
}

/* Hide default cursor on desktop */
@media (pointer: fine) {
  body.custom-cursor-active,
  body.custom-cursor-active a,
  body.custom-cursor-active button,
  body.custom-cursor-active input {
    cursor: none !important;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 10px;
}

/* Golden Preloader Screen */
#loader {
  position: fixed;
  inset: 0;
  background: #050811 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s ease;
  will-change: opacity, visibility;
}

#loader.fade-out {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.loader-logo-img {
  width: 175px;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.45));
  animation: emblemPulse 3s ease-in-out infinite;
}

@keyframes emblemPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3)); }
  50% { transform: scale(1.04); filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.65)); }
}

.loader-bar-bg {
  width: 180px;
  height: 2px;
  background: rgba(212, 175, 55, 0.15);
  margin: 1.75rem auto 0.75rem auto;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.loader-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #9A7B1C 0%, #D4AF37 50%, #FBE6A2 100%);
  box-shadow: 0 0 10px #D4AF37;
  transition: width 0.1s ease-out;
}

.animate-fade-in {
  opacity: 1 !important;
}

/* Custom Cursor Elements */
.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

body.custom-cursor-active .cursor-dot,
body.custom-cursor-active .cursor-ring {
  opacity: 1;
}

.cursor-ring.hover-cta {
  width: 55px;
  height: 55px;
  border-color: #FBE6A2;
  background-color: rgba(254, 230, 162, 0.08);
}

/* Single Page Spotlight Stage Styling */
.single-page-stage {
  background: 
    radial-gradient(ellipse 90% 70% at 50% 30%, rgba(19, 44, 82, 0.55) 0%, transparent 75%),
    radial-gradient(circle at 20% 10%, rgba(212, 175, 55, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(212, 175, 55, 0.12) 0%, transparent 40%),
    linear-gradient(180deg, #03060C 0%, #050811 50%, #08101E 100%);
}

/* Metallic Gold Transparent Emblem Styling */
.nav-brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 15px rgba(212, 175, 55, 0.4));
  transition: transform 0.4s ease, height 0.3s ease;
}

@media (min-width: 640px) {
  .nav-brand-logo {
    height: 48px;
  }
}

@media (min-width: 1024px) {
  .nav-brand-logo {
    height: 60px;
  }
}

.nav-brand-logo:hover {
  transform: scale(1.03);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #FFF6D6 0%, #E2C075 45%, #C29837 80%, #FBE6A2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.25));
}

/* Hero Showcase Image Frame */
.hero-stage-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 175, 55, 0.18);
  background: rgba(10, 19, 37, 0.8);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  opacity: 1 !important;
}

.hero-stage-frame:hover {
  border-color: rgba(254, 230, 162, 0.6);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(212, 175, 55, 0.3);
}

.hero-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1 !important;
}

.hero-stage-frame:hover .hero-stage-img {
  transform: scale(1.03);
}

/* Spotlights Beam Effect */
.spotlight-left {
  position: absolute;
  top: -15%;
  left: 15%;
  width: 250px;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(254, 230, 162, 0.15) 0%, rgba(19, 44, 82, 0) 70%);
  transform: rotate(-25deg);
  pointer-events: none;
  z-index: 5;
}

.spotlight-right {
  position: absolute;
  top: -15%;
  right: 15%;
  width: 250px;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(254, 230, 162, 0.15) 0%, rgba(19, 44, 82, 0) 70%);
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 5;
}

/* Luxury Input & Buttons */
.input-premium {
  background-color: rgba(10, 19, 37, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-cream);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.input-premium:focus {
  border-color: var(--color-gold);
  background-color: rgba(10, 19, 37, 0.9);
  outline: none;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.btn-gold-luxe {
  background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
  color: #050811;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold-luxe:hover {
  background: linear-gradient(135deg, #FBE6A2 0%, #D4AF37 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
}
