@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

@layer utilities {
  .animate-float {
    animation: float 6s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base custom classes to match React implementation */
body {
  font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

.text-gradient-cyan {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(135deg, hsl(200 100% 50%), hsl(195 100% 55%));
}

.bg-gradient-hero {
  background-image: linear-gradient(135deg, hsl(200 100% 50% / 0.08), hsl(145 100% 45% / 0.05));
}

.shadow-premium {
  box-shadow: 0 20px 60px -15px hsl(200 100% 50% / 0.15);
}

.shadow-card {
  box-shadow: 0 4px 20px -4px hsl(220 20% 15% / 0.08);
}

.shadow-card-hover {
  box-shadow: 0 12px 40px -8px hsl(200 100% 50% / 0.2);
}

.line-accent {
  height: 2px;
  width: 4rem;
  background: linear-gradient(135deg, hsl(200 100% 50%), hsl(195 100% 55%));
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.glass-card {
  background-color: rgb(255 255 255 / 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgb(220 220 220 / 0.5);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
}
.dark .glass-card {
  background-color: rgb(30 30 30 / 0.8);
  border-color: rgb(50 50 50 / 0.5);
}

.glass-card-hover {
  transition: all 0.5s ease;
}
.glass-card-hover:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

/* Animations for JS */
.smooth-scroll {
  scroll-behavior: smooth;
}

/* Hero bg slider transition */
.hero-bg-img {
  transition: opacity 1.5s ease-in-out, transform 5s ease-out;
  opacity: 0;
}
.hero-bg-img.active {
  opacity: 1;
  transform: scale(1.05);
}
