/* Executive Inn — Custom Styles */

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

/* Selection color */
::selection {
  background: rgba(245, 158, 11, 0.3);
  color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1a0610;
}
::-webkit-scrollbar-thumb {
  background: #6d1e40;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #8b2f56;
}

/* Nav transition */
nav.scrolled {
  background: rgba(26, 6, 16, 0.95);
  backdrop-blur-lg;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating card animations */
@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes float-medium {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
@keyframes float-fast {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

.hero-card-1 { animation: float-slow 6s ease-in-out infinite; }
.hero-card-2 { animation: float-medium 5s ease-in-out infinite 0.5s; }
.hero-card-3 { animation: float-fast 7s ease-in-out infinite 1s; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.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; }

/* Mobile menu */
#mobile-menu {
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Input autofill override */
input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px rgba(255,255,255,0.05) inset !important;
  -webkit-text-fill-color: #fff !important;
}

/* Image aspect ratio fallbacks */
img {
  vertical-align: middle;
}

/* Print styles */
@media print {
  nav, #contact, .hero-card-1, .hero-card-2, .hero-card-3 { display: none; }
  body { background: #fff; color: #000; }
}
