/* === Base Typography === */
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fdfbf7;
  color: #1e3a34;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: 'Philosopher', serif;
  margin-top: 0;
  color: #1e3a34;
}

p {
  color: #1e3a34;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* === Card / Section Styling === */
.card,
.section-box {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

/* === Button Classes === */
.btn-primary {
  background-color: #e6b800;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #cfa000;
}

.btn-outline {
  border: 2px solid #1e3a34;
  color: #1e3a34;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background-color: #1e3a34;
  color: white;
}

/* === Input Fields === */
.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: white;
  color: #1e3a34;
}

.input-field:focus {
  outline: none;
  border-color: #e6b800;
  box-shadow: 0 0 0 2px rgba(230, 184, 0, 0.2);
}

/* === Utility === */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}
.input-field {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  background-color: #fdfbf7;
  color: #1e3a34;
  border: 1px solid #d4ccc0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  font-family: 'Open Sans', sans-serif;
}

.input-field:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 184, 0, 0.4);
  border-color: #e6b800;
}

.btn-primary {
  background-color: #e6b800;
  color: white;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.btn-primary:hover {
  background-color: #cfa000;
}