/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
  background: #000; /* fallback if canvas fails */
  margin: auto;
}

#bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at center, #0c3c36 10%, #000 100%);
}

/* Header */
header {
  background: transparent;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.logo {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.verse {
  font-style: italic;
  margin: 20px 0;
}

nav {
  background-color: rgba(19, 152, 89, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
  position: sticky;
  top: 0;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: white;
}

.serv {
  color: white;
}

#contact, #about, #services, #location {
  background: rgba(19, 152, 89, 0.3); /* transparent green tint */
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  max-width: 500px;
  margin: 30px auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
}

.contact-form button {
  background-color: #d7bb5e;
  color: #0c3c36;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  background-color: #bfa04d;
}

/* Footer */
footer {
  background-color: rgba(44,62,80,0.8);
  backdrop-filter: blur(8px);
  color: white;
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* Bible Verse */
.bible-verse {
  background: rgba(52,73,94,0.4);
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}
/* Popup Image Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 700px;
  max-height: 400px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close {
  position: absolute;
  top: 20px; right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #d7bb5e;
}
/* visitorcount */
#visitorcount {
  padding: 50px;
  display: flex;
  justify-content: center; 
  align-items: center;      
  text-align: center;
}
.card {
  max-width: 500px;
  max-height: fit-content;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}