/* Shree Shyam Tour & Travels - Sikkim & Darjeeling Custom CSS Styles */

:root {
  --color-primary: #0a59a1;
  --color-primary-dark: #074177;
  --color-primary-light: #1674c9;
  --color-orange: #ff7900;
  --color-orange-dark: #e06a00;
  --color-orange-light: #ff9433;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

/* Glassmorphism Classes */
.glass-panel {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.glass-dark {
  background: rgba(7, 45, 84, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Mountain Scenic Hero Background */
.hero-bg {
  background-image: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(5, 31, 56, 0.92) 0%, rgba(10, 89, 161, 0.82) 50%, rgba(5, 31, 56, 0.94) 100%);
}

/* Infinite Scrolling Ticker Animation */
.ticker-track {
  display: inline-flex;
  animation: ticker-slide 28s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Card Hover Elevation */
.hover-lift {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -10px rgba(10, 89, 161, 0.18);
}

/* Toast Animation */
@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.toast-show {
  animation: slideDownFade 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

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

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
