/* Prestige Barber Shop - Custom Styles */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Navbar background on scroll */
#navbar {
  background: transparent;
}

#navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(80, 80, 80, 0.2);
}

/* Subtle text glow on hero heading */
#hero h1 {
  text-shadow: 0 0 80px rgba(212, 163, 56, 0.08);
}

/* Service card hover lift */
#services .group:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Gallery image hover zoom */
#gallery .group:hover {
  transform: scale(1.02);
}

/* Smooth transitions for all interactive elements */
a, button {
  transition: all 0.2s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
  background: #303030;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #505050;
}

/* Selection color */
::selection {
  background: rgba(212, 163, 56, 0.3);
  color: white;
}

/* Fade-in animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Mobile menu animation */
#mobile-menu {
  transition: all 0.3s ease;
}

#mobile-menu.active {
  display: block;
}
