/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Graphic:wght@300;400;500;600;700&display=swap');

/* Tailwind CSS via CDN - included in HTML */

/* Custom CSS for additional styling */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Graphik', system-ui, sans-serif;
  line-height: 1.6;
}

/* Custom button styles */
.btn-primary {
  background-color: #41B990;
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: #3BA682;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(65, 185, 144, 0.3);
}

.btn-vibrant-coral {
  background-color: #E76455;
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-vibrant-coral:hover {
  background-color: #D55A4A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(231, 100, 85, 0.3);
}

.btn-secondary {
  background-color: white;
  color: #41B990;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid #41B990;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #FDFEFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(65, 185, 144, 0.2);
}

/* Card styles */
.card {
  background: #FDFEFF;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(26, 27, 29, 0.1);
  padding: 1.5rem;
  transition: all 0.3s;
  border: 1px solid rgba(131, 165, 178, 0.1);
}

.card:hover {
  box-shadow: 0 20px 40px rgba(26, 27, 29, 0.15);
  transform: translateY(-2px);
}

/* Gradient background */
.gradient-bg {
  background: linear-gradient(135deg, #FDFEFF 0%, #AECFDF 20%, #FDFEFF 100%);
}

/* Form styles */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(131, 165, 178, 0.3);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
  background-color: #FDFEFF;
}

.form-input:focus {
  outline: none;
  border-color: #41B990;
  box-shadow: 0 0 0 3px rgba(65, 185, 144, 0.1);
}

/* Animation for hero elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

/* Success message styling */
.success-message {
  background-color: #41B990;
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  display: none;
}

.success-message.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}
/* Tab styles */
.tab-btn {
  color: #83A5B2;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.tab-btn.active {
  color: #41B990;
  background-color: #41B990;
  color: white;
  box-shadow: 0 2px 8px rgba(65, 185, 144, 0.3);
}

.tab-btn:hover:not(.active) {
  color: #41B990;
  background-color: rgba(65, 185, 144, 0.1);
}

.tab-content {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.tab-content.hidden {
  display: none;
}