/* SpringfieldHair.com Main Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');



body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  background-color: #ffffff;
  padding: 1.25rem;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: auto;
}

nav h1 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: color 0.2s;
}

nav a:hover {
  color: #666;
}

.hero {
  text-align: center;
  padding: 6rem 1.5rem 7rem;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url(/assets/images/hero.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f0f0f0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.cta-button {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.2s;
  margin-top: 1.5rem;
}

.cta-button:hover {
  background-color: #000;
}

.how-it-works {
  background: #f5f5f5;
  padding: 2.5rem 1.25rem;
  text-align: center;
}

.how-it-works h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: #333;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 650px;
  margin: auto;
}

.step h4 {
  font-size: 1.75rem;
  color: #333;
  margin: 0;
}

.match-form {
  background-color: #fff;
  border-radius: 8px;
  padding: 2.5rem 1.25rem;
  max-width: 520px;
  margin: 3rem auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.match-form h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: #333;
}

form label {
  display: block;
  margin: 0.75rem 0 0.3rem;
  font-weight: 600;
  color: #222;
}

form input,
form select,
form button {
  width: 100%;
  padding: 0.65rem;
  margin-bottom: 1.25rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

form input:focus,
form select:focus {
  border-color: #333;
  outline: none;
  box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.2);
}

form button {
  background-color: #333;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background-color 0.25s;
}

form button:hover {
  background-color: #000;
}

.trust {
  background-color: #f5f5f5;
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 1rem;
  color: #777;
  border-top: 1px solid #eee;
}

footer {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.9rem;
  color: #aaa;
  background: #fcfcfc;
  border-top: 1px solid #eee;
}

@media (min-width: 600px) {
  .steps {
    flex-direction: row;
    justify-content: center;
  }

  .step {
    flex: 1;
    max-width: 200px;
  }
}