/* Watauga County Genealogy Theme */

body {
  font-family: 'Georgia', serif;
  background-color: #f4ecd8; /* Sepia background */
  color: #333;
  margin: 0;
  padding: 2rem;
  background-image: url('parchment-border.png'); /* Provide a parchment texture image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  background: #fefaf2;
  border: 5px solid #004080; /* Hero header blue */
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

h1, h2, h3 {
  color: #004080;
  text-align: center;
  margin-bottom: 1rem;
}

.hero-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 1.5rem auto;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.image-regular {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.image-small {
  display: block;
  width: 200px;
  max-width: 90%;
  height: auto;
  margin: 1rem auto;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

input, textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-family: inherit;
}

button {
  background-color: #004080;
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #002d5e;
}
.header-link {
  text-decoration: none;
  color: #004080;
  transition: color 0.3s;
}

.header-link:hover {
  color: #002d5e;
}
.iframe-wrapper {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto;
}

.iframe-wrapper iframe {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.quick-links a {
  background-color: #f8f8f8;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.quick-links a:hover {
  background-color: #336699;
  color: #fff;
  transform: translateY(-3px);
}

table {
  table-layout: fixed;
  overflow-wrap: break-word;
  width: 100%;
  overflow: auto;
  border-collapse: collapse;
  margin-top: 1rem;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 2rem;
}
