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

/* Apply Poppins font globally */
body {
    font-family: 'Poppins', sans-serif; /* Updated font */
}

/* Simple mobile menu transition */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Style for active nav link (optional) */
/* Add JS to handle active state based on scroll position if needed */
.nav-link.active {
     font-weight: bold;
     /* Add other active styles */
}

/* Add some extra margin-top to sections for the sticky header */
section {
     scroll-margin-top: 60px; /* Adjust based on header height */
}

/* Note: Tailwind CSS classes handle most styling.
   This file is mainly for global styles like fonts,
   transitions, or custom CSS overrides if needed. */
body {
  font-family: Arial, sans-serif;
  margin: 40px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}

label {
  margin-top: 10px;
}

input,
textarea {
  padding: 8px;
  margin-top: 4px;
}

button {
  margin-top: 15px;
  padding: 10px;
  cursor: pointer;
}

#successModal {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  background: white;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.hidden {
  display: none;
}
