body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: url("churchpic.jpg") no-repeat center center fixed;
  background-size: cover;
  color: whitesmoke;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
.sticky-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #001f3f;
  color: gold;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo,
.apostle-photo {
  width: clamp(90px, 18vw, 160px);
  height: clamp(90px, 18vw, 160px);
  border-radius: 50%;
  object-fit: cover;
}

.nav-bar {
  display: flex;
  justify-content: center;
  background-color: #002b5b;
  padding: 10px;
}
/* Mobile menu */
.menu-toggle {
  display: none;
  background: #f1c40f;
  color: #001f3f;
  border: 0;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.nav-links { display: flex; gap: 10px; flex-wrap: wrap; }

header {
  background: #002b5c;
  text-align: center;
  padding: 20px;
}

.logo {
  border-radius: 100%;
}
nav a {
  color: #f1c40f;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to bottom, #001f3f, #002b5c);
}

.hero h2 {
  font-size: 2.5rem;
  color: gold;
}

.hero p {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #f1c40f;
  color: #001f3f;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  line-height: 1;
}

.btn:hover {
  background-color: #ffd700;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.content-section {
  text-align: center;
  padding: 60px 20px;
  background-color: rgba(0, 0, 0, 0.6);
  margin: 20px;
  border-radius: 15px;
}

.content-section h2 {
  color: gold;
   font-size: 2.5em;
  margin-bottom: 20px;
}

.content-section ul {
  list-style-type: none;
  padding: 0;
}


#map {
  width: 100%;
  height: 340px;
  border-radius: 8px;
  margin: 20px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid #f1c40f;
  position: relative;
}

/* Style for map error message */
#map p {
  margin: 0;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
}

/* Custom map button styling */
.custom-map-button {
  background-color: #f1c40f;
  color: #001f3f;
  border: none;
  padding: 10px 15px;
  margin: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.custom-map-button:hover {
  background-color: #ffd700;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

/* Actions under the map */
.map-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn.btn-outline {
  background: transparent;
  color: #f1c40f;
  border: 2px solid #f1c40f;
}

.btn.btn-outline:hover {
  background: #ffd700;
  color: #001f3f;
}

.route-info {
  margin-top: 10px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
}

.social-links a {
  color: #f1c40f;
  margin: 10px;
  display: inline-block;
  text-decoration: none;
}

.social-links a:hover {
  color: #000c1a;
}

footer {
  background: #000c1a;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

.translate-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.header-buttons {
  text-align: center;
  margin-top: 15px;
}

.header-buttons .btn {
  display: inline-block;
  background-color: #f1c40f;
  color: #000c1a;
  padding: 10px 20px;
  margin: 5px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.header-buttons .btn:hover {
  background-color: #f1c40f;
}

/* Accessibility */
:focus-visible { outline: 3px solid #ffd700; outline-offset: 2px; }

/* Responsive: tablets/phones */
@media (max-width: 992px) {
  .sticky-header { gap: 12px; }
}

@media (max-width: 768px) {
  .sticky-header { flex-direction: column; align-items: center; padding: 12px; }
  .nav-bar { flex-direction: column; align-items: stretch; }
  .menu-toggle { display: inline-block; align-self: center; margin-bottom: 8px; }
  .nav-links { display: none; flex-direction: column; align-items: center; }
  .nav-links.open { display: flex; }
  .hero { padding: 60px 16px; }
  .hero h2 { font-size: 2rem; }
  .hero p { font-size: 1.2rem; }
  #map { height: 300px; }
}

@media (max-width: 480px) {
  .logo, .apostle-photo { width: 96px; height: 96px; }
  .btn { padding: 10px 16px; }
  #map { height: 260px; }
}


