/* Custom styles for Red Roof Inn Maumee */

@keyframes scrollDown {
  0% { top: -16px; opacity: 0; }
  50% { opacity: 1; }
  100% { top: 48px; opacity: 0; }
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #060e1a;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a1628;
}
::-webkit-scrollbar-thumb {
  background: #162a4a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #c8a45e;
}

/* Selection color */
::selection {
  background: rgba(200, 164, 94, 0.3);
  color: #fff;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gold shimmer effect on hover for cards */
.group:hover .group-hover\:scale-105 {
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Smooth focus styles */
input:focus,
textarea:focus {
  box-shadow: 0 0 0 1px rgba(200, 164, 94, 0.2);
}

/* Navbar glass effect */
.navbar-scrolled {
  background: rgba(6, 14, 26, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Subtle gold gradient line separator */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8a45e, transparent);
  opacity: 0.3;
}
