.hero {
  background-image: url('images/hero-bg.jpg'); /* Replace with your image path or URL */
  background-size: cover;          /* Make it cover the whole header */
  background-position: center;     /* Center the image */
  background-repeat: no-repeat;    /* Prevent tiling */
  min-height: 100vh;               /* Full viewport height (hero effect) */
  position: relative;
}

.hero::before {
  /* Optional dark overlay for better text visibility  */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* Adjust transparency */
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2; /* Keep text above overlay */
}

.important-info-box {
  background: #fffbe7;
  border: 2px solid #ffcb6b;
  color: #7d5230;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  font-size: 1.12rem;
  text-align: center;
  margin: 2rem auto 1rem auto;
  box-shadow: 0 2px 12px rgba(125,82,48,0.08);
  max-width: 650px;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fa;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  padding: 2rem;
  backdrop-filter: brightness(0.85);
}

/* ABOUT PAGE IMAGE */
.col-lg-6 img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* PARALLAX SECTION */
.parallax {
  background: url('parallax-temple.jpg') center/cover fixed no-repeat;
}

/* ANIMATE ON SCROLL */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
}

/* For all footer links */
footer a {
  text-decoration: none;
}

/* ===== Contact Us Page Styles ===== */
body {
  background-color: #f5f5f5;
}

/* Main Contact Section */
#contact-us {
  background-color: #ffffff;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

/* Clickable contact number styling without underline or blue color */
.contact-number {
  color: inherit;           /* Normal text color */
  text-decoration: none;    /* Remove underline */
  cursor: pointer;          /* Pointer on hover */
  user-select: text;
  display: inline-block;
  padding: 2px 4px;
}

.contact-number:hover {
  background: #fffbe7;      /* subtle highlight */
}

/* Popup styling for Call/WhatsApp options */
.contact-options-popup {
  display: none;
  position: absolute;
  left: 0;
  top: 28px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(60,60,60,0.12);
  min-width: 140px;
  padding: 8px 0;
}

.contact-options-popup button {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: #313131;
  padding: 8px 16px;
  text-align: left;
  cursor: pointer;
  font-size: 1.03rem;
  border-radius: 0;
  transition: background 0.15s;
}

.contact-options-popup button:hover {
  background: #f2efce;
  color: #7d5230;
}

/* Social Media Section */
.social-links {
  margin-top: 30px;
}

.social-links h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.social-links a {
  font-size: 2rem; /* Icon size */
  color: #555;
  margin: 0 15px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: #000;
  transform: scale(1.1);
}

/* 🎵 Fixed circular music player styling with temple gold theme */
#music-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  /* circular container */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #d4af37; /* gold color */
  box-shadow:
    0 0 10px #d4af37,
    inset 0 0 10px #ffd700;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#toggle-music {
  all: unset; /* reset default button styles */
  font-size: 28px;
  color: #000000cc;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#toggle-music:hover {
  background-color: #ffd700cc; /* lighter gold on hover */
  color: #000;
}

#toggle-music:focus-visible {
  outline: 2px solid #ffd700; /* visible outline for accessibility */
  outline-offset: 3px;
}
