* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fffaf2;
  color: #333;
}

/* Sticky Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #c97b2c;
  color: white;
  padding: 15px;
  text-align: center;
}

header nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

/* Fix anchor navigation */
section {
  scroll-margin-top: 90px;
}

/* Hero */
.hero {
  background: url("images/temple.jpg") center/cover no-repeat;
  height: 70vh;
  text-align: center;
  padding-top: 120px;
  color: white;
  background-color: rgba(0,0,0,0.45);
  background-blend-mode: overlay;
}

/* Sections */
.section {
  padding: 50px 12%;
  text-align: center;
}

.light {
  background: #fff1dc;
}

/* Gallery */
.gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.gallery img {
  width: 250px;
  border-radius: 6px;
  cursor: pointer;
}

/* Lightbox */
#lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

#lightbox img {
  max-width: 90%;
  border-radius: 10px;
}

/* Map */
iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
  margin-top: 15px;
}

/* WhatsApp */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 28px;
  padding: 12px 16px;
  border-radius: 50%;
  text-decoration: none;
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  background: #c97b2c;
  color: white;
  padding: 12px;
  text-align: center;
}
/* Language Toggle */
.lang-toggle {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 2000;
}

.lang-toggle button {
  padding: 5px 8px;
  margin-left: 5px;
  border: none;
  cursor: pointer;
  background: #c97b2c;
  color: white;
}

/* About Section */
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content {
  flex: 2;
  min-width: 300px;
  text-align: left;
}

.temple-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}



.info-item i {
  font-size: 24px;
  color: #c97b2c;
}

/* Events Section */
.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.event-card {
    width: 300px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  margin: 20px auto;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-image {
    width: 100%;
  height: 70%;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-content {
  padding: 20px;
}

.event-date {
  color: #c97b2c;
  font-weight: 500;
  margin: 10px 0;
}

.event-date i {
  margin-right: 8px;
}

/* Members Section */
.members-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.member-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.member-card:hover {
  transform: translateY(-5px);
}

.member-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  background: #f8f8f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-img i {
  font-size: 60px;
  color: #c97b2c;
}

.member-role {
  color: #c97b2c;
  font-weight: 600;
  margin: 8px 0;
}

.member-contact {
  margin-top: 10px;
  color: #666;
}

.member-contact i {
  margin-right: 8px;
  color: #c97b2c;
}

/* Gallery Updates */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* Contact Updates */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #c97b2c;
  color: white;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-icon:hover {
  background: #a86625;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  
  .about-content {
    text-align: center;
  }
  
  .members-container,
  .events-container {
    grid-template-columns: 1fr;
  }
  
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .temple-info {
    grid-template-columns: 1fr;
  }
}
/* Main section */
.coming-soon-section {
  position: relative;
}

/* Blur everything inside except overlay */
.coming-soon-section .committee-container,
.coming-soon-section .section-title {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

/* Overlay covering full section */
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 246, 230, 0.75);
  backdrop-filter: blur(3px);
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Text styling */
.coming-soon-overlay h3 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #c7772a;
  text-transform: uppercase;
  line-height: 1.3;
}
*.member-card{
filter: blur(6px);
  pointer-events: none;
  user-select: none;}
  #aboutText {
  font-size: 29px;
  line-height: 1.9;
  color: #333;
  text-align: justify;
}
/* css for donation page */
