body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  color: #1a237e;
}

.hero {
  position: relative;
  height: 60vh;
  min-height: 350px;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(26, 35, 126, 0.6);
  color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(26, 35, 126, 0.2);
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: #ffd700;
  text-shadow: 1px 1px 8px #1a237e;
}

.hero blockquote {
  font-size: 1.3rem;
  font-style: italic;
  margin: 0;
  color: #fff;
}

.hero blockquote span {
  display: block;
  margin-top: 0.5em;
  font-size: 1rem;
  color: #ffd700;
}

section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

h2 {
  color: #1a237e;
  border-bottom: 2px solid #ffd700;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 18px;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.hours ul {
  list-style: none;
  padding: 0;
}

.hours li {
  background: #e3eafc;
  margin-bottom: 8px;
  padding: 10px 16px;
  border-radius: 6px;
  color: #1a237e;
  font-weight: 500;
  border-left: 5px solid #ffd700;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 35, 126, 0.08);
  margin-top: 10px;
}

.links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.links li {
  background: #1a237e;
  border-radius: 6px;
  padding: 8px 16px;
  transition: background 0.2s;
}

.links a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}

.links li:hover {
  background: #3949ab;
}

span.links {
  color: #ffd700;
  font-weight: 600;
  text-decoration: underline dotted transparent;
  transition: text-decoration-color 0.2s, color 0.2s;
  cursor: pointer;
  padding: 0 2px;
  border-radius: 3px;
  outline: none;
  display: inline-block;
}
span.links:hover, span.links:focus {
  color: #fff;
  background: #ffd700;
  text-decoration-color: #fff;
}

footer {
  background: #1a237e;
  color: #fff;
  text-align: center;
  padding: 18px 0 10px 0;
  margin-top: 40px;
  font-size: 1rem;
  border-top: 3px solid #ffd700;
}

.bible-carousel {
  background: #e3eafc;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(26, 35, 126, 0.06);
  margin-bottom: 40px;
  padding: 24px 0 18px 0;
}
.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}
.carousel-btn {
  background: #1a237e;
  color: #ffd700;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(26, 35, 126, 0.08);
}
.carousel-btn:hover {
  background: #3949ab;
}
.carousel-quote {
  min-width: 220px;
  max-width: 400px;
  font-size: 1.2rem;
  color: #1a237e;
  background: #fff;
  border-left: 4px solid #ffd700;
  border-radius: 6px;
  padding: 18px 20px;
  box-shadow: 0 1px 6px rgba(26, 35, 126, 0.04);
  text-align: center;
}
.carousel-ref {
  color: #3949ab;
  font-size: 1rem;
  font-style: italic;
}

.contact {
  background: #e3eafc;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(26, 35, 126, 0.06);
  padding: 24px 0 18px 0;
  margin-bottom: 40px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}
.contact-form label {
  font-weight: 600;
  color: #1a237e;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #b0bec5;
  border-radius: 5px;
  padding: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: #1a237e;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #ffd700;
  outline: none;
}
.contact-form button {
  background: #1a237e;
  color: #ffd700;
  border: none;
  border-radius: 5px;
  padding: 10px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #3949ab;
}
.form-success {
  text-align: center;
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  section {
    padding: 0 8px;
  }
  .links ul {
    flex-direction: column;
    gap: 6px;
  }
  .carousel-quote {
    font-size: 1rem;
    padding: 12px 8px;
    min-width: 120px;
  }
  .carousel-container {
    gap: 8px;
  }
  .contact-form {
    max-width: 98%;
  }
} 