/* Custom styles for Loc_Starz */

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

/* Service card stagger animation */
.service-card {
  opacity: 1;
  transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #FFF8F0;
}
::-webkit-scrollbar-thumb {
  background: #D6D6DE;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B0B0BE;
}

/* Selection color */
::selection {
  background: #FFAA96;
  color: #2D2D37;
}

/* Focus visible styles */
*:focus-visible {
  outline: 2px solid #F06050;
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .service-card,
  .group img {
    transition: none;
  }
  .group:hover img {
    transform: none;
  }
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar scrolled state */
.nav-scrolled {
  background: rgba(255, 248, 240, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06) !important;
}

/* Hero image gradient overlay for accessibility */
.hero-img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(45, 45, 55, 0.1) 100%);
  pointer-events: none;
}
