@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

.font-open-sans {
  font-family: 'Open Sans', sans-serif;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(to right, #22c55e, #86efac);
  color: #1e3a8a;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  border: 2px solid #1e40af;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  background: linear-gradient(to right, #16a34a, #4ade80);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.3);
}

.faq-question {
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e40af;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #2563eb;
}

.faq-answer {
  margin-top: 0.5rem;
  color: #4b5563;
  font-family: 'Open Sans', sans-serif;
}

.footer-link {
  color: #ffffff;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #86efac;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: #ffffff;
  font-size: 1.125rem;
  z-index: 50;
  padding: 1.5rem;
}

.mobile-menu a, .mobile-menu button {
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.mobile-menu a:hover, .mobile-menu button:hover {
  background: #1e40af;
  color: #86efac;
}

.close-menu-button {
  position: absolute;
  top: 1rem;
  left: 1.5rem; /* Slightly adjusted for better alignment on right side */
  padding: 1rem;
  background: none; /* No background */
  color: #ffffff; /* White X icon */
  cursor: pointer;
  transition: color 0.2s ease; /* Smooth color transition for hover */
}

.close-menu-button:hover {
  background: none !important;
  color: #86efac; /* Green tint on hover to match website theme */
}

