/** General Layout **/
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #eef6f7;
  color: #333;
  transition: background-color 0.5s, color 0.5s;
}
/* 🔹 Dark Mode (Grey & Blue Theme) */
body.dark-mode {
  background-color: #2c3e50;
  color: #ecf0f1;
}

body.dark-mode .section {
  background-color: #34495e;
}

/* 🎖️ Slideshow Section */
#slideshow-section {
  width: 100%;
  max-width: 2000vw;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #007bff00; /* Blue background */
}

.slideshow-container {
  width: 100%;
  max-width: 1000px; /* Adjust width to fit content */
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the section */
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* 📱 Responsive Fixes */
@media (max-width: 1000px) {
  #slideshow-section {
    height: 1000px;
  }

  .slideshow-container {
    max-width: 1000px;
  }
}

@media (max-width: 768px) {
  #slideshow-section {
    height: 1000px;
  }
}


/* 🌓 Toggle Button */
#themeToggle {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}

#themeToggle:hover {
  background: #0056b3;
}

body.dark-mode #themeToggle {
  background: #ecf0f1;
  color: #2c3e50;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: white;
  padding: 15px 20px;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo-img {
  height: 50px;
  margin-right: 10px;
}

header ul {
  list-style: none;
  display: flex;
}

header ul li {
  margin: 0 10px;
}

header ul li a {
  text-decoration: none;
  color: white;
}

header ul li a.active {
  font-weight: bold;
  text-decoration: underline;
}

.section {
  border: 2px solid #333;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: #eef6f7;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 5px;
  transition: transform 0.3s;
}

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

.view-more {
  display: block;
  margin-top: 20px;
  text-align: center;
  font-size: 1.2em;
  color: #007bff;
  text-decoration: none;
}

.view-more:hover {
  text-decoration: underline;
}
/* Bible Verse Section */
.bible-verse {
  font-size: 1.2em;
  font-style: italic;
  background: #1063b65e;
  border-left: 5px solid #007bff;
  padding: 15px;
  margin-top: 20px;
  border-radius: 5px;
  transition: background 0.3s;
}

.bible-verse:hover {
  background: #50a7dc;
}
/* 📩 Contact Form Styling */
#contact {
  background: #eef6f7;
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#contact h2 {
  text-align: center;
  color: #007bff;
  font-size: 2em;
  margin-bottom: 20px;
}

/* Form Elements */
form {
  display: flex;
  flex-direction: column;
}

form label {
  font-weight: bold;
  margin: 10px 0 5px;
  color: #444;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  transition: border-color 0.3s;
}

form input:focus,
form textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.3);
}

/* Submit Button */
form button {
  background: #007bff;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s ease;
}
/* Lightbox Styling */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  margin: auto;
  display: block;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


form button:hover {
  background: #0056b3;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  #contact {
    width: 90%;
    padding: 30px;
  }
}

