
/* typefaces */:root {
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif-italic: 'Libre Baskerville', Georgia, serif;
}
body {
  font-family: var(--font-sans);
}

.emphasis,
.italic {
  font-family: var(--font-serif-italic);
  font-style: italic;
}


/* Crown persistent nav */
.crown-nav {
  background: transparent;
  padding-top: 18px;
  padding-bottom: 18px;
  z-index: 1000;
}

/* Typography */
.crown-nav .navbar-brand,
.crown-nav .nav-link {
  color: #000;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hover states */
.crown-nav .nav-link:hover {
  opacity: 0.6;
}

/* Prevent content from hiding under nav */
body {
  padding-top: 80px;
}

/* Optional mobile background */
@media (max-width: 991px) {
  .crown-nav {
    background: rgba(255, 255, 255, 0.96);
  }
}



/* hero.css? */
.hero {
  height: 100svh;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  text-align: center;
  max-width: 720px;
  padding: 0 1rem;
}

.hero-plus {
  font-size: 1.25rem;
  opacity: 0.5;
  margin-bottom: 2rem;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.1;
  margin: 0 0 2rem;
  font-weight: 400;
}

.hero-cta {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
}

.hero-cta:hover {
  opacity: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/*parallax */
.parallax {
  background: #000;
  padding-bottom: 15rem;
  overflow: hidden;
}

.parallax-stage {
  position: relative;
  height: 120svh;
  opacity: 0.1;
  transition: opacity 0.25s ease;
  min-height: 120svh;
}

.parallax-stage.is-ready {
  opacity: 1;
}

.parallax-item {
  position: absolute;
  width: 300px;
  height: auto;
  border-radius: 6px;
  will-change: transform;
  transform: translate3d(0, var(--py, 0px), 0);
    object-fit: cover;
  background: #000;
 opacity: 0.1;
  transition: opacity 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

video.parallax-item {
  pointer-events: none;
  height: 180px; /* or whatever matches your image ratio */
   width: auto;
}

.parallax-item.is-loaded {
  opacity: 1;
}

/* rough layout positions */
.parallax-item:nth-child(1) { top: 10%; left: 10%; }
.parallax-item:nth-child(2) { top: 30%; left: 55%; }
.parallax-item:nth-child(3) { top: 55%; left: 25%; }
.parallax-item:nth-child(4) { top: 70%; left: 60%; }
.parallax-item:nth-child(5) { top: 85%; left: 40%; }




