html,
body {
  font-family: 'Lato', sans-serif !important
}


/* compact mobile nav CSS (same as index) */
#mobileNavToggle {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 2200;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px) saturate(120%)
}

#mobileNavToggle .bar {
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px
}

#mobileNavOverlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(rgba(6, 6, 6, 0.55), rgba(6, 6, 6, 0.72));
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px
}

#mobileNavOverlay.open {
  display: flex
}

.mobile-nav-panel {
  width: 92%;
  max-width: 420px;
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px)
}

.mobile-nav {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.mobile-nav .nav-item {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04)
}

.mobile-nav .dropdown-menu {
  display: none
}

.mobile-nav .dropdown.open .dropdown-menu {
  display: flex
}




body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* FADE IN CONTENT (all devices) */
.container {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
  animation-delay: s;
  /* delay 4s */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    /* optional: slide up */
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Background Video */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.container {
  display: flex;
  flex-direction: column;
  margin-bottom: 22%;
  align-items: center;
  text-align: center;
  padding: 20px;
  max-width: 1200px;
  z-index: 1;
}

h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.description {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 400px;
  margin-bottom: 20px;
}

/* SLIDER BASE */
.slider {
  /* gap controls spacing between images (mobile default) */
  --gap: 12px;
  position: relative;
  margin-top: -14px;
  width: 250px;
  height: 300px;
  overflow: hidden;
}

.slider .hover-reveal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 140ms ease;
  --reveal-x: 50%;
  --reveal-y: 50%;
  --reveal-radius: 86px;
  --reveal-softness: 30px;
  clip-path: circle(var(--reveal-radius) at var(--reveal-x) var(--reveal-y));
  -webkit-mask-image: radial-gradient(circle at var(--reveal-x) var(--reveal-y),
      rgba(0, 0, 0, 1) 0 calc(var(--reveal-radius) - var(--reveal-softness)),
      rgba(0, 0, 0, 0.74) calc(var(--reveal-radius) - 10px),
      rgba(0, 0, 0, 0) var(--reveal-radius));
  mask-image: radial-gradient(circle at var(--reveal-x) var(--reveal-y),
      rgba(0, 0, 0, 1) 0 calc(var(--reveal-radius) - var(--reveal-softness)),
      rgba(0, 0, 0, 0.74) calc(var(--reveal-radius) - 10px),
      rgba(0, 0, 0, 0) var(--reveal-radius));
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  filter: saturate(1.03) contrast(1.02);
}

.slider .hover-reveal-overlay.is-active {
  opacity: 1;
}

.slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 300px;
  object-fit: contain;
  /* smooth GPU-accelerated transitions */
  transition: transform 520ms cubic-bezier(.22, .9, .28, 1), opacity 300ms ease, filter 300ms ease, left 520ms cubic-bezier(.22, .9, .28, 1);
  will-change: transform, opacity, filter;
  opacity: 0;
  filter: blur(5px) brightness(0.6);
  z-index: 1;
  transform: translateX(0) scale(0.96);
}

.slider img.is-changing {
  animation: sliderImageChange 460ms cubic-bezier(.22, .9, .28, 1);
}

.slider img.active {
  opacity: 1;
  filter: blur(0) brightness(1);
  z-index: 3;
  transform: translateX(0) scale(1);
}

/* position secondary images using the image width + gap so spacing is consistent */
.slider img.second {
  opacity: 0.82;
  z-index: 2;
  transform: translateX(calc(100% + var(--gap))) scale(0.94);
  filter: blur(4px) brightness(0.85);
}

.slider img.third {
  opacity: 0.7;
  z-index: 1;
  transform: translateX(calc(2 * (100% + var(--gap)))) scale(0.9);
  filter: blur(5px) brightness(0.8);
}

@keyframes sliderImageChange {
  0% {
    filter: blur(8px) brightness(0.72);
  }
  55% {
    filter: blur(2px) brightness(1.05);
  }
  100% {
    filter: blur(0) brightness(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .slider img {
    transition: none !important;
  }
  .slider img.is-changing {
    animation: none !important;
  }
  .slider .hover-reveal-overlay {
    transition: none !important;
  }
}

/* CONTROLS */
.controls {
  margin-top: -120px;
  display: flex;
  gap: 15px;
  justify-content: center;
  z-index: 10;
  position: relative;
}

.btn {
  background: #333;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

/* replaced .btn.customize with glassmorphism styles */
.btn.customize {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: #fff;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  box-shadow: 0 8px 22px rgba(6, 6, 6, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* optional: reduced size on very small screens */


@keyframes slideInFromRight {
  from {
    transform: translateX(180px);
    opacity: 0;
  }

  60% {
    transform: translateX(20px);
    opacity: 1;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRightDim {
  from {
    transform: translateX(240px);
    opacity: 0;
  }

  60% {
    transform: translateX(40px);
    opacity: 0.85;
  }

  to {
    transform: translateX(0);
    opacity: 0.85;
  }
}

/* Desktop Layout */


/* Hide desktop nav on mobile */


/* Background image (full-bleed) placed behind the video */
.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  /* behind the background video (which is -1) */
  display: block;
}

/* add mobile positioning so the customize button sits at the bottom center */
