@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Quicksand:wght@400;500;700&display=swap');
:root {
  --blue: #4A90E2;
  --yellow: #FFD86B;
  --text: #2E2E2E;
  --bg: #FAF9F6;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
}

.navbar {
  background-color: white;
  padding: 1rem 0;
  font-family: 'Quicksand', sans-serif;
}

.container {
  max-width: 960px;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--blue);
  font-weight: 700;
  margin: 0;
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue);
  text-decoration: underline;
}

/* Add some spacing around the content */
main {
  max-width: 80%;
  margin: 40px auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1 {
  color: #2E2E2E;
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Quicksand', sans-serif;
  text-align: center;
}

/* Paragraphs */
p {
  line-height: 1.6;
  margin-bottom: 16px;
  color: 2E2E2E;
  font-family: 'Inter', sans-serif;
  text-align: center;
  font-size: 1.5rem;
}

.highlight {
  color: #4A90E2; /* Your primary blue */
  font-weight: 700; /* Optional: make it bold */
}

/* Links */
a {
  color: #007BFF;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.button-group {
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  justify-content: center; /* Center the buttons horizontally */
}

.btn-primary {
  background-color: var(--blue);
  color: white;
  padding: 0.75rem 1.5rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2.0rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 30%;
  height: 100px;
}

.btn-primary:hover {
  background-color: var(--yellow);
  color: var(--text);
}

.site-footer {
  background-color: white;
  border-top: 1px solid #eee;
  padding: 1.5rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #666;
}

.site-footer p {
  font-size: 1.1rem; /* smaller size just for footer */
}

.footer-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--blue);
}

.main-container {
  max-width: 960px;
  margin: 40px auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block; /* important to stack child elements */
}


.lead {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  display: block;
}

.feature-section h2 {
  font-family: 'Quicksand', sans-serif;
  color: var(--blue);
  margin-bottom: 1rem;
}

.feature-section ul {
  list-style: disc inside;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  max-width: 600px;
}

.cta-section button {
  margin-right: 1rem;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Hide dropdown menu initially */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  border-radius: 8px;
  z-index: 1000;
}

/* Style dropdown links */
.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: var(--blue);
  color: white;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

.btn-login {
  background-color: var(--blue);
  color: white;
  padding: 0.5rem 1.2rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  align-self: center;
  margin-left: 1.5rem;
}

.btn-login:hover {
  background-color: var(--yellow);
  color: var(--text);
}

button[type="submit"], 
input[type="submit"] {
  background-color: var(--blue);
  color: white;
  padding: 0.75rem 2rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 8px rgba(74, 144, 226, 0.4);
}

button[type="submit"]:hover, 
input[type="submit"]:hover {
  background-color: var(--yellow);
  color: var(--text);
  box-shadow: 0 6px 12px rgba(255, 216, 107, 0.6);
}

button[type="submit"]:focus, 
input[type="submit"]:focus {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

/* Labels */
form label {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

/* Text inputs and textarea */
form input[type="text"],
form input[type="email"],
form input[type="password"],
form textarea {
  padding: 0.6rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
  color: var(--text);
  text-align: center;
  width: 20%;
}

.password-wrapper {
  position: relative;
  width: 20%;          /* fixed width for input+button container */
  margin: 0 auto;      /* center horizontally */
}

.password-wrapper input[type="password"],
.password-wrapper input[type="text"] {
  width: 100%;         /* fill wrapper width */
  padding-right: 2.5rem; /* space for the toggle button */
  box-sizing: border-box;
}

.toggle-password {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--blue);
  padding: 0;
  line-height: 1;
  user-select: none;
}

