<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
* Holodnaya Zeleni - Animations Stylesheet
* Contains all animations for the vaporwave/neon styled tourism website
*/

/* Pulse Animation - Used for elements that need attention */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Bounce Animation - Used for scroll indicators */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Glitch Animation - For cyberpunk/vaporwave text effect */
@keyframes glitch {
  0% {
    text-shadow: 0.05em 0 0 rgba(255, 0, 255, 0.75),
                -0.05em -0.025em 0 rgba(0, 255, 255, 0.75),
                -0.025em 0.05em 0 rgba(0, 255, 0, 0.75);
  }
  15% {
    text-shadow: -0.05em -0.025em 0 rgba(255, 0, 255, 0.75),
                0.025em 0.025em 0 rgba(0, 255, 255, 0.75),
                -0.05em -0.05em 0 rgba(0, 255, 0, 0.75);
  }
  30% {
    text-shadow: 0.025em 0.05em 0 rgba(255, 0, 255, 0.75),
                0.05em 0 0 rgba(0, 255, 255, 0.75),
                0 -0.05em 0 rgba(0, 255, 0, 0.75);
  }
  45% {
    text-shadow: -0.025em 0 0 rgba(255, 0, 255, 0.75),
                -0.025em -0.025em 0 rgba(0, 255, 255, 0.75),
                -0.025em -0.05em 0 rgba(0, 255, 0, 0.75);
  }
  60% {
    text-shadow: -0.025em 0.025em 0 rgba(255, 0, 255, 0.75),
                -0.025em -0.025em 0 rgba(0, 255, 255, 0.75),
                -0.025em -0.05em 0 rgba(0, 255, 0, 0.75);
  }
  75% {
    text-shadow: 0.05em 0.05em 0 rgba(255, 0, 255, 0.75),
                0.025em 0 0 rgba(0, 255, 255, 0.75),
                0 -0.05em 0 rgba(0, 255, 0, 0.75);
  }
  90% {
    text-shadow: 0.025em 0 0 rgba(255, 0, 255, 0.75),
                -0.05em -0.025em 0 rgba(0, 255, 255, 0.75),
                -0.025em -0.025em 0 rgba(0, 255, 0, 0.75);
  }
  100% {
    text-shadow: 0.05em 0 0 rgba(255, 0, 255, 0.75),
                -0.05em -0.025em 0 rgba(0, 255, 255, 0.75),
                -0.025em 0.05em 0 rgba(0, 255, 0, 0.75);
  }
}

/* Neon Glow Animation - Pulsing glow effect for neon elements */
@keyframes neonGlow {
  0% {
    text-shadow: 0 0 5px rgba(0, 238, 255, 0.7),
                0 0 10px rgba(0, 238, 255, 0.5),
                0 0 15px rgba(0, 238, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 10px rgba(0, 238, 255, 0.9),
                0 0 20px rgba(0, 238, 255, 0.7),
                0 0 30px rgba(0, 238, 255, 0.5);
  }
  100% {
    text-shadow: 0 0 5px rgba(0, 238, 255, 0.7),
                0 0 10px rgba(0, 238, 255, 0.5),
                0 0 15px rgba(0, 238, 255, 0.3);
  }
}

/* Float Animation - Subtle floating effect for cards */
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(0px);
  }
}

/* Badge Flicker - For creating a flashing/flickering effect on elements */
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.5;
  }
}

/* Rotate Animation - For spinning elements */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Gradient Shift - For background gradient animations */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Slide In From Right - For elements entering from the right */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Slide In From Left - For elements entering from the left */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Fade In Up - For elements fading in while moving up */
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Wave Animation - For creating wave effects */
@keyframes wave {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Apply Animations to Elements */

/* Apply glitch effect to glitch-text class */
.glitch-text {
  animation: glitch 2.5s infinite;
  position: relative;
}

.glitch-text:hover {
  animation: glitch 0.5s infinite;
}

/* Apply neon glow to glow-text class */
.glow-text {
  animation: neonGlow 2s infinite;
}

/* Floating animation for cards on hover */
.destination-card:hover,
.service-card:hover,
.blog-card:hover {
  animation: float 3s ease-in-out infinite;
}

/* Rotate animation for loading elements */
.loading-spinner {
  animation: rotate 1.5s linear infinite;
}

/* Gradient shift for buttons on hover */
.btn-primary:hover,
.btn-secondary:hover {
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

/* Scroll trigger animations - these will be activated by JavaScript */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Animated underline effect for navigation links */
.nav-list a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
  box-shadow: 0 0 5px var(--primary-color);
}

.nav-list a:not(.btn):hover::after,
.nav-list a.active:not(.btn)::after {
  width: 100%;
}

.nav-list a:not(.btn) {
  position: relative;
}

/* Animated loading placeholder for images */
.image-loading {
  position: relative;
  overflow: hidden;
}

.image-loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: wave 1.5s infinite;
}

/* Staggered animation for list items */
.staggered-list li {
  opacity: 0;
  transform: translateY(20px);
}

.staggered-list li.visible {
  animation: fadeInUp 0.6s forwards;
}

.staggered-list li:nth-child(1).visible {
  animation-delay: 0.1s;
}

.staggered-list li:nth-child(2).visible {
  animation-delay: 0.2s;
}

.staggered-list li:nth-child(3).visible {
  animation-delay: 0.3s;
}

.staggered-list li:nth-child(4).visible {
  animation-delay: 0.4s;
}

.staggered-list li:nth-child(5).visible {
  animation-delay: 0.5s;
}

/* Flicker animation for neon effect */
.neon-flicker {
  animation: flicker 3s linear infinite;
}

/* Special animations for hero section */
.hero-content h1 {
  animation: fadeInUp 1s ease-out 0.2s forwards, neonGlow 2s infinite 1s;
  opacity: 0;
  transform: translateY(20px);
}

.hero-content .subtitle {
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.6s forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Circle pulse animation for icon backgrounds */
.service-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(0, 238, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 2s infinite;
}

.service-icon {
  position: relative;
}

/* Cursor animation for text typing effect */
.typing-effect::after {
  content: '|';
  animation: cursor 1s infinite;
}

@keyframes cursor {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Number counter animation */
.stat-number.animating {
  animation: numberCount 2s forwards;
}

@keyframes numberCount {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile menu animation */
.mobile-menu-toggle {
  transition: transform 0.3s ease;
}

.mobile-menu-toggle.active {
  transform: rotate(90deg);
}

/* Thank you page check animation */
.thank-you-icon {
  animation: pulse 2s infinite;
}

/* Preloader animation (full screen) */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--z-index-overlay) + 10;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-icon {
  width: 80px;
  height: 80px;
  border: 3px solid transparent;
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}

.preloader-icon::before,
.preloader-icon::after {
  content: '';
  position: absolute;
  border: 3px solid transparent;
  border-radius: 50%;
}

.preloader-icon::before {
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  border-top-color: var(--secondary-color);
  animation: rotate 2s linear infinite;
}

.preloader-icon::after {
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border-top-color: var(--accent-color);
  animation: rotate 1.5s linear infinite reverse;
}

/* Parallax effect for background images */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-position 0.1s ease-out;
}

/* Animation for testimonial slider */
.testimonial-slide {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
}

/* Button click effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.btn.clicked::after {
  animation: buttonRipple 0.6s ease-out;
}

@keyframes buttonRipple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* Scroll to top button animation */
.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--primary-color);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: var(--z-index-high);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--secondary-color);
  box-shadow: 0 0 15px var(--secondary-color);
  transform: translateY(-5px);
}

/* Form input focus animation */
.form-group input:focus {
  transition: all 0.3s ease;
  box-shadow: 0 0 0 3px rgba(0, 238, 255, 0.2);
}

/* Checkbox animation */
.form-group.checkbox input[type="checkbox"] {
  position: relative;
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 238, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-group.checkbox input[type="checkbox"]:checked {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.form-group.checkbox input[type="checkbox"]:checked::before {
  content: 'âœ“';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-primary);
  font-size: 12px;
}

/* Image hover zoom effect */
.card-image img,
.blog-image img,
.activity-card img {
  transition: transform 0.5s ease;
}

.destination-card:hover .card-image img,
.blog-card:hover .blog-image img,
.activity-card:hover img {
  transform: scale(1.1);
}

/* Link hover effect */
.read-more {
  position: relative;
  transition: all 0.3s ease;
}

.read-more::after {
  content: 'â†’';
  position: absolute;
  opacity: 0;
  right: -15px;
  transition: all 0.3s ease;
}

.read-more:hover {
  padding-right: 20px;
}

.read-more:hover::after {
  opacity: 1;
  right: 0;
}

/* Cookie banner slide up animation */
.cookie-banner {
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

/* Modal animation */
.modal {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-content {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: translateY(0);
}

/* Smooth page transitions */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-dark);
  z-index: var(--z-index-overlay) + 5;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}

.page-transition-overlay.active {
  transform: translateX(0);
}

.page-transition-overlay.exit {
  transform: translateX(-100%);
}
</pre></body></html>