@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --primary-color: #3b82f6;
  --secondary-color: #1e40af;
  --dark-bg: #0f172a;
  --light-text: #f1f5f9;
}

body {
  background-color: var(--dark-bg);
  color: var(--light-text);
  overflow-x: hidden;
}

.hero-section {
  min-height: 90vh;
}

.features-section {
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.live-event-card {
  transition: all 0.3s ease;
}

.live-event-card:hover {
  transform: translateY(-5px);
}

.pricing-card {
  transition: all 0.3s ease;
}

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

.testimonial-card {
  transition: all 0.3s ease;
}

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

/* Feather Icons customization */
.feather {
  width: 24px;
  height: 24px;
}

/* Custom animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
  }
  .pricing-card:last-child {
    margin-bottom: 0;
  }
}

/* FAQ Styles */
.faq-question {
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #334155;
}

.faq-answer {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
