@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&display=swap');

/* style.css */
body {
  margin: 0;
  font-family: 'Merriweather', serif;
  background-color: #f5f5f5;
  color: #333;
}

.header {
  background-color: #e3e5e9e5; /* soft light gray */
  color: #000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo img {
  height: 100%;
  max-height: 90px;
  vertical-align: middle;
  object-fit: contain;
}

.nav a {
  color: #000;
  margin-left: 20px;
  text-decoration: none;
}

.login-button {
  background-color: #002b36;
  color: white !important; /* forces visibility */
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.cta-button,
form button {
  background-color: #002b36; /* Button color = old dark header */
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.login-button:hover,
.cta-button:hover,
form button:hover {
  background-color: #013140;
}

.hero {
  background-image: url('appalachian-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 2rem;
  min-height: 100vh; /* Full screen */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section {
  padding: 4rem 2rem;
  background-color: white;
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

form input,
form textarea {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.footer {
  background-color: #f0f0f0;
  color: #000;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

.service-block {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-left: 4px solid #268bd2;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-block h3 {
  margin-top: 0;
  color: #002b36;
}

.contact-options {
  display: flex;
  gap: 1rem;
  margin: 0.5rem 0 1.5rem;
  flex-wrap: wrap;
}

.contact-options label {
  background-color: #e5e5e5;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  user-select: none;
}

.contact-options input[type="radio"] {
  margin-right: 0.5rem;
}

textarea::-webkit-input-placeholder {
  font-style: normal;
  font-family: inherit;
}

textarea::-moz-placeholder {
  font-style: normal;
  font-family: inherit;
}

textarea:-ms-input-placeholder {
  font-style: normal;
  font-family: inherit;
}

textarea:-moz-placeholder {
  font-style: normal;
  font-family: inherit;
}

form textarea {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-style: normal;
}