/* static/css/tourism.css - TOURISM PAGE SPECIFIC STYLES */

.tourism-hero-bg {
  background-image: url('/static/img/to.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Animation classes */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease-out;
}

/* Stagger delays for animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Hover effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.hover-glow:hover {
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}

/* Custom rounded button */
.rounded-button {
  border-radius: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tourism-hero-bg {
    background-attachment: scroll;
    background-position: 70% center;
  }
  
  .slide-in-left,
  .slide-in-right {
    transform: translateX(0);
  }
}

/* Image hover effects */
img {
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.02);
}

/* Gradient text for special highlights */
.gradient-text {
  background: linear-gradient(135deg, #1e3a8a, #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Custom shadow for cards */
.custom-shadow {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}