* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: #7a1f1f;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  position: relative;
}

.top-links {
  position: absolute;
  right: 20px;
  top: 10px;
}

.top-links a {
  color: #fff;
  margin-left: 10px;
  text-decoration: none;
}

/* ================= HEADER ================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #3d0505;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 140px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
}

.quote-btn {
  background: #7a1f1f;
  padding: 8px 14px;
  border-radius: 4px;
}

/* ================= HERO ================= */
.hero-section {
  background: url("../assets/home page banner.webp") center/cover no-repeat;
  color: #fff;
  padding: 140px 20px;
  text-align: center;
}

.hero-section h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-section p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
}

/* ================= WELCOME ================= */
.welcome-section {
  padding: 80px 20px;
  background: #fafafa;
}

.welcome-container {
  max-width: 1100px;
  margin: auto;
}

.welcome-container h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #7a1f1f;
}

.welcome-container p {
  margin-bottom: 28px;
  line-height: 1.85;
  font-size: 16.5px;
  color: #333;
  text-align: justify;
}

/* ================= COLLECTIONS ================= */
.mandir-collection-section,
.murti-collection-section {
  padding: 70px 20px;
  max-width: 1200px;
  margin: auto;
}

.mandir-collection-section h2,
.murti-collection-section h2,
.why-choose-section h2 {
  text-align: center;
  padding-bottom: 30px;
  color: #7a1f1f;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.image-card {
  position: relative;
}

.image-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.image-card span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 12px;
}

/* ================= WHY CHOOSE ================= */
.why-choose-section {
  padding: 70px 20px;
  background: rgb(238, 207, 30);
}

.why-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: center;
  font-weight: 600;
}

/* ================= CONTACT ================= */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 70px 20px;
  gap: 30px;
  align-items: center;
}

.contact-section img {
  width: 100%;
  border-radius: 30px;
}

.contact-section h2 {
  margin-bottom: 15px;
  color: #7a1f1f;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
}

button[type="submit"] {
  background-color: #b38b59;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

/* ================= FOOTER ================= */
.footer-section {
  background: radial-gradient(circle, #7a1f1f, #3b0f0f);
  color: #fff;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-section img {
  height: 90px;
  margin-bottom: 10px;
}

.footer-section a {
  color: #fff;
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
}

/* ================= COPYRIGHT ================= */
.copyright {
  text-align: center;
  padding: 20px;
}

/* ================= ANCHOR FIX ================= */
#hero,
#welcome,
#mandir-collection,
#murti-collection,
#why-us,
#contact {
  scroll-margin-top: 160px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .main-header {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo {
    height: 110px;
  }

  .hero-section {
    padding: 100px 20px;
  }

  .hero-section h1 {
    font-size: 30px;
  }

  .welcome-container p {
    text-align: left;
    font-size: 15.5px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .footer-section {
    text-align: center;
  }
}

@media (max-width: 480px) {

  .logo {
    height: 85px;
  }

  .nav-menu {
    flex-direction: column;
  }

  .hero-section h1 {
    font-size: 24px;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }
}
