/* =======================================
   Ethos Themes – Main Stylesheet
   Organized and scalable for future growth
   ======================================= */

/* Global Typography */
body {
  font-family: 'Work Sans', sans-serif;
  background-color: #f8f9fa;
  color: #2f3e46;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  color: #3a6f6a;
  font-weight: 700;
}

p.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: #555;
}

/* Links and Buttons */
a {
  color: #3a6f6a;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.btn-primary {
  background-color: #3a6f6a;
  border: none;
}
.btn-primary:hover {
  background-color: #2f5c58;
}

/* Cards */
.card {
  transition: box-shadow 0.2s ease;
  cursor: pointer;
}
.card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

/* Form Fields */
.form-label {
  font-weight: 600;
  color: #2f3e46;
}
.form-control, .form-select {
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Status Box */
.status-box {
  background-color: #eaf2f1;
  border-left: 5px solid #3a6f6a;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 4px;
}

/* Multi-step Form */
.multi-step-form {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.step {
  display: none;
}
.step.active {
  display: block;
}
.step-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
}

/* Utilities */
.text-center {
  text-align: center;
}
.mt-5 {
  margin-top: 3rem !important;
}
