:root {
  --bg-color: #FDF4E0;
  --text-color: #222;
  --link-color: #475B37;
  --link-hover: #003d7a;
  --accent-color: #5B8C97;
  /* --accent-hover: #A64E1E; */
  --accent-hover: #7B5D2F;
  --max-width: 750px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  /* font-family: "Montserrat", system-ui, sans-serif; */
  font-family: "Gill Sans", "Trebuchet MS", Calibri, system-ui, sans-serif;
  font-size: 95%; /* Global tweak. */
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.4;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

header, h2, footer {
  text-align: center;
}

h1, h2 {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

h1 a {
  color: inherit;
  text-decoration: none;
}

h1 a:hover {
  color: var(--link-color);
}

.features {
  margin: 1rem 0 0 0;
}

.features ul {
  list-style: disc inside;
  margin: 0 0.1rem 0 1.5rem;
  padding: 0;
}

.contact-intro {
  margin: 2rem 0;
  text-align: center;
}
.contact-intro a {
  color: var(--link-color);
  text-decoration: underline;
}
form {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

label {
  font-weight: 600;
}
label em {
font-weight: 100;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #222;
  font-size: 1rem;
}

input:focus, textarea:focus {
  border-color: var(--accent-color);
  outline: none;
}

input:invalid, textarea:invalid {
  /* background: #FFF5C8; */
  border: 1px solid #777;
}

.submit-btn {
  background-color: var(--accent-color);
  color: #fff;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px; /* rounded pill shape */
  cursor: pointer;
  transition: background-color 0.5s ease, transform 0.1s ease;
}

.submit-btn:hover {
  background-color: var(--accent-hover);
}

.submit-btn:active {
  transform: scale(0.98);
}

footer {
  font-size: 0.75rem;
  margin-top: 2rem;
}

footer a {
  color: #A8A295;
  text-decoration: none;
}

footer a:hover {
  color: var(--link-hover);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  body {
    font-size: 1rem;
  }
  h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  h2 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.site-header {
  text-align: center;
  margin-bottom: 1rem;
}

.site-logo {
  max-width: 100%;
  height: auto;
}

.status h2, .status p {
  text-align: center;
}

.status a {
  color: var(--link-color);
  text-decoration: underline;
}




