/* Custom styles for Skywings website */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-blue: #3b82f6;
  --primary-light-blue: #eff6ff;
  --dark-text: #1f2937;
  --light-text: #6b7280;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Loading animation styles */
#loading-screen {
  transition: opacity 0.5s ease-in-out;
}

.loading-fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Custom animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

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

/* Apply float animation to airplane image */
.hero-airplane {
  animation: float 6s ease-in-out infinite;
}

/* Fade-in animations for sections */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Custom card hover effects */
.destination-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Custom button hover effects */
.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Testimonial carousel */
.testimonial-wrapper {
  overflow: hidden;
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .mobile-hide {
    display: none;
  }
} 