/* Navigation Bar CSS Begins here */

.nav-wrapper {
  padding-left: 3rem;
  padding-right: 3rem;
}

.glass-nav {
  background: rgba(15, 15, 16, 0.7);
  backdrop-filter: blur(20px);
}

/* Navigation Bar CSS Ends here */

.service-card:hover .service-icon {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

/* ── existing styles (unchanged) ── */
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 24;
  color: #e7c186;
}

.book-stack:hover img {
  transform: translateY(-20px) rotate(-2deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #16130f;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #e7c186;
}

/* Hero Section CSS Ends here */

/* Premade Artworks Section CSS Begins here */
/* ===================================================
   PREMADE GALLERY
=================================================== */

/* ===================================================
   BOOK FLOAT ANIMATION
   =================================================== */

.book-float {
  animation: bookFloat 8s ease-in-out infinite;
}

@keyframes bookFloat {
  0% {
    transform: translateY(0px) var(--book-transform);
  }

  50% {
    transform: translateY(-8px) var(--book-transform);
  }

  100% {
    transform: translateY(0px) var(--book-transform);
  }
}

/* Disable the animation completely while hovering
   so the existing hover transform can take control. */
.book-float:hover {
  animation: none !important;
}
