/* Custom styles for Lost and Found */

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* Service card hover effects */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C4613A, #E2C9A0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Navbar scroll effect */
nav.scrolled {
  background: rgba(15, 15, 15, 0.95) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

nav.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Geometric accent shapes */
.geo-accent {
  position: absolute;
  pointer-events: none;
}

/* Mobile menu transition */
#mobileMenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

#mobileMenu.open {
  max-height: 400px;
  padding-top: 0;
}

/* Form focus styles */
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 3px rgba(196, 97, 58, 0.15);
}

/* Selection color */
::selection {
  background: rgba(196, 97, 58, 0.2);
  color: #1A1A1A;
}

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

::-webkit-scrollbar-track {
  background: #FAF5EC;
}

::-webkit-scrollbar-thumb {
  background: #D4B47E;
  border-radius: 4px;
}

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