@import "https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap";

/* src/style.css */
body {
  overflow-x: hidden;
  font-family: Inter, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Cormorant, serif;
}

.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.card-hover {
  transition: all .3s;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px #667eea33;
}

.timeline-dot {
  position: absolute;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 4px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  top: 0;
  left: -10px;
  box-shadow: 0 0 0 2px #667eea;
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s;
}

.accordion-content.active {
  max-height: 2000px;
}

.parallax {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px #667eea80;
  }

  50% {
    box-shadow: 0 0 40px #667eeacc;
  }
}

.scroll-fade {
  opacity: 0;
  transition: all .6s;
  transform: translateY(30px);
}

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

.sticky-cta {
  position: fixed;
  z-index: 1000;
  display: none;
  bottom: 20px;
  right: 20px;
}

.sticky-cta.show {
  display: block;
  animation: slideIn .3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.schedule-item {
  transition: all .3s;
}

.schedule-item:hover {
  background: linear-gradient(135deg, #667eea1a 0%, #764ba21a 100%);
  transform: translateX(10px);
}

@media (max-width: 768px) {
  .sticky-cta {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
}
