:root {
  --tan: #D2B48C;
  --red: #8B0000;
  --gold: #D4AF37;
  --wood: #8B4513;
}
* { box-sizing: border-box; }
body { margin:0; font-family: Georgia, serif; background: var(--tan); color: #333; line-height: 1.6; }

.container {
  flex: 1;
  /* margin-top: -2.5rem;   delete or comment this line */
  padding-top: 1.5rem;     /* or 2rem — whatever gap you like */
}
.red-header {
  background: var(--red);
  width: 100%;
  padding: 0.4rem 1rem; /* Tighter than 1.5rem */
  text-align: center;
  display: block;
  line-height: 0;
}

.full-width-logo {
  width: 100%;
  max-width: 1180px; /* Slightly less than 1220 to avoid edge crush */
  height: auto;
  max-height: 68px; /* Shorter than 80px — matches your "used to be" */
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border: none;
  background: transparent;
}

nav ul { list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; flex-wrap: wrap; }
nav li { margin: 0.5rem 1rem; }
nav a { color: var(--red); text-decoration: none; font-weight: bold; font-size: 1.1rem; }

nav a:hover {
  color: #5D4037; /* Dark wood — readable & on-brand */
}
.hero { text-align: center; padding: 4rem 1rem; background: center/cover; color: white; text-shadow: 2px 2px 6px #000; }
.hero h1 { font-size: 3rem; margin: 0; }
.container { max-width: 1200px; margin: auto; padding: 2rem; }
.card { background: white; border-radius: 12px; padding: 2rem; margin: 1.5rem 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.btn { display: inline-block; background: var(--red); color: white; padding: 0.75rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: bold; }
.btn:hover { background: var(--gold); color: #000; }
.hero {
  background-image: url('img/homechurch1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  min-height: 500px;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
  text-shadow: 2px 2px 6px #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero {
  background-image: url('../img/homechurch1.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  text-shadow: 2px 2px 6px #000;
  text-align: center;
  position: relative;
  padding: 0;
  margin: 0;
}

.hero h1, .hero p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  width: 100%;
  text-align: center;
}

.hero h1 {
  top: 1.5rem;
  font-size: 2.8rem;
  font-weight: bold;
}

.hero p {
  top: 5.5rem;
  font-size: 1.4rem;
}

<!--1st century map-->
.map-section {
  margin: 2rem 0;
  text-align: center;
}
.map-section h2 {
  font-family: Georgia, serif;
  color: #8B0000;
  margin-bottom: 1rem;
}

.episodes {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.episode {
  background: rgba(139, 0, 0, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #8B0000;
}
.episode audio {
  width: 100%;
  margin: 1rem 0;
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto 1rem;
}
.newsletter input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #8B0000;
  border-radius: 4px;
}
.newsletter button {
  background: #8B0000;
  color: white;
  border: none;
  padding: 0 1rem;
  border-radius: 4px;
  cursor: pointer;
}

/* Mobile optimizations  */
@media (max-width: 768px) {
  /* Bigger, easier-to-tap text */
  body { font-size: 17px; }          /* iOS 17px minimum */
  h1 { font-size: 2.2rem !important; }
  h2 { font-size: 1.8rem !important; }
  p, li, input, textarea, button { font-size: 1.1rem !important; }

  /* Navigation becomes vertical & tap-friendly */
  nav ul { flex-direction: column; text-align: center; }
  nav li { margin: 0.6rem 0; }
  nav a { padding: 0.6rem; display: block; }

  /* Buttons & inputs get bigger tap targets */
  button, input[type="submit"] {
    padding: 1rem 2rem !important;
    min-height: 54px;
    font-size: 1.2rem !important;
  }

  /* Cards get more room */
  .container, div[style*="woodonly"] {
    padding: 2.5rem 1.5rem !important;
  }
}

footer { text-align: center; padding: 2rem; background: var(--red); color: white; font-size: 0.9rem; }
input, select, button { width: 100%; padding: 0.75rem; margin: 0.5rem 0; border-radius: 8px; border: 1px solid #ccc; }
@media (max-width: 768px) { nav ul { flex-direction: column; } .hero h1 { font-size: 2rem; } }
