/* Tailwind CSS */
@import url("https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css");

/* Custom styles for Valley Wings Flight School */

/* Color scheme based on the original website */
:root {
  --flight-green: #9ACD32;
  --flight-gold: #FFD700;
  --flight-dark: #1a1a1a;
  --flight-gray: #333333;
}

/* Hero section styles */
.hero-section {
  background: linear-gradient(135deg, var(--flight-dark) 0%, var(--flight-gray) 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

/* Gradient text effect */
.gradient-text {
  background: linear-gradient(135deg, var(--flight-green), var(--flight-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Button styles */
.btn-primary {
  background: linear-gradient(135deg, var(--flight-green), var(--flight-gold));
  border: none;
  color: var(--flight-dark);
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(154, 205, 50, 0.3);
}

/* Card hover effects */
.feature-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(154, 205, 50, 0.2);
  border-radius: 0.75rem;
  background-color: white;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--flight-green);
}

/* Navigation styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.navbar-dark {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: 
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--flight-green);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile menu styles */
.mobile-menu {
  display: none;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
}

.mobile-menu.active {
  display: block;
}

/* Testimonial styles */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(154, 205, 50, 0.2);
  border-radius: 0.75rem;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Section spacing */
.section-padding {
  padding: 5rem 0;
}

/* Responsive images */
.responsive-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* FAQ accordion styles */
.faq-item {
  border-bottom: 1px solid rgba(154, 205, 50, 0.2);
}

.faq-question {
  background: rgba(154, 205, 50, 0.1);
  transition: background 0.3s ease;
  cursor: pointer;
}

.faq-question:hover {
  background: rgba(154, 205, 50, 0.2);
}

.faq-answer {
  display: none;
  padding: 1.5rem;
}

.faq-answer.active {
  display: block;
}

/* Contact form styles */
.contact-form {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--flight-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(154, 205, 50, 0.1);
}

/* Improved text colors for better contrast */
.text-gray-600 {
  color: #4a5568 !important;
}

.text-gray-500 {
  color: #6b7280 !important;
}

.text-gray-400 {
  color: #9ca3af !important;
}

.text-gray-300 {
  color: #d1d5db !important;
}

/* Ensure dark text on light backgrounds */
.bg-white .text-gray-600,
.bg-gray-50 .text-gray-600 {
  color: #374151 !important;
}

.bg-white .text-gray-500,
.bg-gray-50 .text-gray-500 {
  color: #4b5563 !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .gradient-text {
    font-size: 2rem;
    line-height: 1.2;
  }
}


