/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #333;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: #ebc99a;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

nav .logo {
  display: flex;
  align-items: center;
}

nav .logo img {
  height: 50px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  border-bottom: 2px solid #ff6600;
  padding-bottom: 2px;
  color: #ff6600;
}

.donate-btn {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.donate-btn:hover {
  background: #e65c00;
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:  
              url('mandirfront(1).png') 
              no-repeat center center/cover;
  color: rgb(0, 0, 0);
  position: relative;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero button {
  background: transparent;
  border: 2px solid white;
  padding: 12px 24px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: white;
  color: #ff6600;
}

/* Responsive */
@media(max-width: 768px) {
  nav {
    padding: 15px 30px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
/* About Temple Section */
.about-temple {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.about-temple .subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #a52a2a;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-temple .title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #2c2c2c;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fafafa;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.feature-card .icon {
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


.video-section {
  margin-top: 40px;
}

.video-section h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #444;
}

.video-section video {
  width: 80%;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}
/* ================= Footer Section ================= */
.temple-footer {
  width: 100%;  /* Make it span full screen */
  background: linear-gradient(135deg, #e7a93e, #d36836); /* golden to saffron spiritual theme */
  color: white;
  text-align: center;
  padding: 100px; ;  /* Increased padding for bigger footer */
  margin-top: 100px;
  box-sizing: border-box;
}

.temple-footer h2 {
  font-size: 28px;   /* Bigger temple name */
  margin-bottom: 10px;
  font-weight: bold;
}

.temple-footer p {
  margin:px 0;
  font-size: 16px;   /* Slightly larger font */
}

.footer-info {
  margin: 20px 0;
  font-size: 15px;
}

.social-icons {
  margin: 20px 0;
}

.social-icons a img {
  width: 36px;   /* Bigger icons */
  margin: 0 12px;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}

.social-icons a img:hover {
  transform: scale(1.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.4);
  margin-top: 25px;
  padding-top: 12px;
  font-size: 14px;
}



.gallery-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
  }

  .gallery-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #e65100;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 10px;
  }

  .gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
  }

  .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
  }

  .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }