/* ================= GLOBAL ================= */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 140px; /* top-bar + navbar */
}

/* ================= TOP BAR ================= */
.top-bar {
  background: #5a0000;
  color: #fff;
  font-size: 13.5px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  padding: 10px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

.top-bar a:hover {
  opacity: 0.85;
}

.divider {
  margin: 0 10px;
  opacity: 0.5;
}

/* ================= MAIN NAVBAR ================= */
.main-navbar {
  background: #fff;
  border-bottom: 2px solid #7b0000;
  height: 90px; /* FIXED HEIGHT */
  display: flex;
  align-items: center;
  position: fixed;
  top: 35px;
  width: 100%;
  z-index: 1000;
}

/* Brand */
.navbar-brand {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.site-logo {
  max-height: 160px; /* SAFE SIZE */
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #7b0000;
}

/* Nav links */
.nav-link {
  color: #333 !important;
  font-weight: 500;
  padding: 8px 14px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #7b0000 !important;
}

.nav-item .nav-link.active {
  color: #7b0000 !important;
  border-bottom: 2px solid #7b0000;
}

/* CTA Button */
.btn-quote {
  background: #7b0000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
}

.btn-quote:hover {
  background: #5a0000;
  color: #fff;
}

/* Mobile Toggle */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(123,0,0,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ================= HERO ================= */
.hero-section {
  background: url("home page banner.webp") center/cover no-repeat;
  height: 85vh;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.5);
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* ================= SECTIONS ================= */
.section-padding {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

/* ================= COLLECTION CARDS ================= */
.collection-card {
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.collection-card > * {
  position: relative;
  z-index: 1;
}

/* Mandir images */
.mandir-marble { background-image: url("marble mandir.webp"); }
.mandir-wooden { background-image: url("wooden mandir.webp"); }
.mandir-corian { background-image: url("corien mandir.webp"); }

/* Murti images */
.murti-marble { background-image: url("marble statue.webp"); }
.murti-wooden { background-image: url("wooden statue.webp"); }
.murti-brass  { background-image: url("brass statue.webp"); }

/* ================= WELCOME SECTION ================= */
.welcome-box {
  max-width: 900px;
  margin: auto;
  background: #fafafa;
  padding: 40px 36px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.welcome-para {
  font-size: 15.5px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
  text-align: justify;
}

.welcome-para.highlight {
  background: #fff5f5;
  border-left: 4px solid #7b0000;
  padding: 14px 18px;
  border-radius: 6px;
  font-weight: 500;
}

/* ================= WHY CHOOSE ================= */
.why-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 14px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.why-icon {
  font-size: 22px;
  color: #7b0000;
  margin-bottom: 12px;
}

.why-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #555;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-box {
  display: flex;
  gap: 50px;
  background: #fafafa;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* LEFT */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #7b0000;
}

.contact-subtitle {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 480px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 16px;
}

.contact-label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: #7b0000;
  margin-bottom: 4px;
}

.contact-list a {
  color: #333;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* RIGHT FORM */
.contact-form {
  width: 360px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-form h4 {
  font-weight: 600;
  margin-bottom: 18px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #7b0000;
}

.contact-form button {
  width: 100%;
  background: #7b0000;
  color: #fff;
  border: none;
  padding: 11px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #5a0000;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
    padding: 30px 22px;
  }

  .contact-form {
    width: 100%;
  }
}


/* ================= FOOTER ================= */
/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(135deg, #5a0000, #9b0000);
  color: #fff;
  padding: 60px 0 20px;
  font-size: 14px;
}

.footer-logo {
  max-height: 100px;
  margin-bottom: 14px;
}

.footer-about {
  color: #f2f2f2;
  line-height: 1.7;
  font-size: 14px;
}

.footer-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 36px;
  height: 2px;
  background: #fff;
  display: block;
  margin-top: 6px;
  opacity: 0.6;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #f0f0f0;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin: 0 6px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }
}

/* ================= MOBILE FIXES ================= */
@media (max-width: 768px) {
  body {
    padding-top: 120px;
  }

  .main-navbar {
    height: auto;
    padding: 10px 0;
  }

  .site-logo {
    max-height: 100px;
  }

  .brand-text {
    font-size: 18px;
  }
}


