* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); 
  color: #f5f5f5;
  /* padding-top: 0px; */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo img {
  max-height: 50px; 
   border-radius: 10px;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  height: auto;
  transition: max-height 0.4s ease-in-out;
  padding-left: 10px;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
  color: #00e6e6; /* cyan */
  text-shadow: 0 0 8px rgba(0, 230, 230, 0.7);
}


.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #f5f5f5;
  margin: 4px;
  transition: all 0.3s ease;
}

/* Mobile view */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    right: 0;
    top: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    flex-direction: column;
    width: 100%;
    height: auto;
    max-height: 0;
  }

  .nav-links.open {
    max-height: 400px;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .hamburger {
    display: flex;
  }
}

/* Hamburger animation */
.hamburger.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.toggle .line2 {
  opacity: 0;
}
.hamburger.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Overlay background */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 900;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('/image/gwan3.jpeg') no-repeat center center/cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 32, 39, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
  color: #f5f5f5;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #00e6e6, #ffd700); /* cyan to gold */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
  color: #dcdcdc;
}
/* About Section */
.about {
  padding: 80px 10%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.about-image img {
  width: 350px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.about-text {
  flex: 1;
  min-width: 280px;
  color: #f5f5f5;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #00e6e6, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #dcdcdc;
}

.about-text .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(45deg, #00e6e6, #ffd700);
  color: #111;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 230, 230, 0.4);
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 60px 5%;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-text .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Worship Extreme Section */
.worship {
  padding: 80px 10%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.worship-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.worship-text {
  color: #f5f5f5;
}

.worship-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ffd700, #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.worship-text h3 {
  font-size: 1.6rem;
  margin: 25px 0 10px;
  color: #00e6e6;
}

.worship-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.worship-text ul,
.worship-text ol {
  margin: 15px 0 20px 20px;
}

.worship-text li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.worship-text .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(45deg, #ff6a00, #ffd700);
  color: #111;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.worship-text .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 106, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .worship {
    padding: 60px 7%;
  }

  .worship-text h2 {
    font-size: 2rem;
  }

  .worship-text h3 {
    font-size: 1.3rem;
  }

  .worship-text p, .worship-text li {
    font-size: 0.95rem;
  }
}

/* Contact & Booking */
.contact {
  padding: 80px 10%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-text {
  color: #f5f5f5;
}

.contact-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #ff6a00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1rem;
}

.contact-text ul {
  list-style: none;
  padding: 0;
}

.contact-text li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #e0e0e0;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(45deg, #ff6a00, #ffd700);
  color: #111;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 106, 0, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-text h2 {
    text-align: center;
  }

  .contact-text p,
  .contact-text ul {
    text-align: center;
  }
}

/* Donation Section */
.donation {
  padding: 80px 10%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.donation-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.donation-text {
  color: #f5f5f5;
}

.donation-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ff4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.donation-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.donation-details h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ffd700;
}

.donation-details ul {
  list-style: none;
  padding: 0;
}

.donation-details li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #ddd;
}

.donation-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.donation-form select{
  padding: 12px 15px;
  border: none;
  border-radius: 10px;
  outline: none;
  background: rgba(219, 11, 11, 0.08);
  color: #c27612;
  font-size: 1rem;
}
.donation-form input{
  padding: 12px 15px;
  border: none;
  border-radius: 10px;
  outline: none;
  background: rgba(0, 0, 0, 0.08);
  color: #fff;
  font-size: 1rem;
}

.donation-form input::placeholder {
  color: rgba(245, 245, 245, 0.7);
}

.donation-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(45deg, #ff6a00, #ffd700);
  color: #111;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 106, 0, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .donation-container {
    grid-template-columns: 1fr;
  }

  .donation-text h2 {
    text-align: center;
  }

  .donation-text p,
  .donation-details ul {
    text-align: center;
  }
}

/* Donate Section */
.donate {
  padding: 60px 10%;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 15px;
  margin: 50px auto;
  max-width: 700px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.donate h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffd700;
}

.donate p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #eee;
}

.bank-details {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.bank-details p {
  margin: 8px 0;
  font-size: 1rem;
  color: #fff;
}

.bank-details strong {
  color: #ffd700;
}

/* Copy Button */
.bank-details button {
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(45deg, #ff6a00, #ffd700);
  border: none;
  border-radius: 8px;
  color: #111;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bank-details button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 106, 0, 0.4);
}

/* Responsive */
@media (max-width: 600px) {
  .donate {
    padding: 40px 5%;
  }

  .donate h2 {
    font-size: 1.6rem;
  }

  .bank-details p {
    font-size: 0.95rem;
  }
}

.gallery {
  padding: 60px 10%;
  text-align: center;
  background: linear-gradient(135deg, #141e30, #243b55);
  color: #fff;
}

.gallery h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #ffd700, #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #ddd;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.6);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

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

 📱 Responsive tweaks */
 @media (max-width: 768px) {
  .gallery h1 {
    font-size: 2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 480px) {
  .gallery h1 {
    font-size: 1.6rem;
  }
  .gallery p {
    font-size: 1rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
} 
 
Gallery Grid 
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  padding: 0 10px;
}

.gallery-item {
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
  height: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.95);
}

.modal-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 800px;
  border-radius: 15px;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 2100;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  user-select: none;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.4);
  transform: translateY(-50%);
}

.next { right: 10px; }
.prev { left: 10px; }

.prev:hover, .next:hover {
  background-color: rgba(255,255,255,0.3);
}

#caption {
  text-align: center;
  color: #fff;
  padding: 10px 0;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-item {
    height: 150px;
  }

  .modal-content {
    width: 95%;
  }

  .prev, .next {
    font-size: 1.5rem;
    padding: 8px;
  }

  #caption {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    height: 120px;
  }

  .prev, .next {
    font-size: 1.2rem;
    padding: 6px;
  }

  #caption {
    font-size: 0.8rem;
  }
}
