/* ================= THEME 9 – ROYAL JEWELLERS ================= */

:root {
  --theme9-maroon: #800020;
  --theme9-gold: #CFB53B;
  --theme9-cream: #FFF5E1;
  --theme9-dark: #4a0012;
  --theme9-light-bg: linear-gradient(180deg, #fff5e1, #f3e7c7);
}


/* ================= HERO ================= */

.theme9-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.theme9-hero .bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme9-hero .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(128,0,32,0.85),
    rgba(0,0,0,0.65)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content {
  color: #ffffff;
  max-width: 900px;
}

.hero-content h1 {
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--theme9-gold);
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 35px;
}


/* ================= CONTACT CARDS ================= */

.contact-cards-theme9 {
  background: var(--theme9-light-bg);
}


/* ================= POSTER ================= */

.theme9-poster {
  background: linear-gradient(
    135deg,
    var(--theme9-maroon),
    var(--theme9-dark)
  );
  padding: 70px 80px;
}

.poster-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.poster-left { flex: 1; }

.poster-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.poster-right img {
  max-width: 420px;
  width: 100%;
}

.poster-name {
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  color: var(--theme9-gold);
  margin-bottom: 20px;
}

.poster-location-heading {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  color: var(--theme9-gold);
  margin-top: 40px;
  margin-bottom: 15px;
}

.poster-contact {
  font-size: 1.4rem;
  margin: 12px 0;
  display: flex;
  gap: 10px;
}

.poster-contact i,
.poster-contact a {
  color: #ffffff;
}

.poster-location p {
  font-size: 1.2rem;
  color: #f3e7c7;
}


/* ================= BUTTON ================= */

.btn-Know-theme9 {
  background: var(--theme9-gold);
  color: #000;
}

.btn-Know-theme9:hover {
  background: #a88f2a;
  color: #fff;
}


/* ================= SERVICES ================= */

.theme9-services {
  padding: 80px 20px;
  background: var(--theme9-cream);
  text-align: center;
}

.theme9-services .section-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--theme9-maroon);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.services-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s;
}

.services-grid img:hover {
  transform: scale(1.05);
}

.services-save {
  margin-top: 50px;
}


/* ================= MAP ================= */

.theme9-map {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.map-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
}


/* ================= PAYMENT ================= */

.theme9-payment {
  padding: 80px 20px;
  background: var(--theme9-cream);
  text-align: center;
}

.upi-id {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--theme9-maroon);
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.payment-icons img {
  width: 90px;
  padding: 15px;
  background: #ffffff;
  border-radius: 20px;
}


/* ================= FOLLOW SECTION (FULL FIX) ================= */

.contact-social-section-theme9 {
  padding: 70px 20px;
  background: var(--theme9-light-bg);
  text-align: center;
}

.contact-social-section-theme9 .section-title {
  margin-bottom: 40px;
  color: var(--theme9-maroon);
}

/* Force override global styles */

.contact-social-section-theme9 .social-cards {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 40px !important;
  flex-wrap: wrap !important;
}

.contact-social-section-theme9 .social-card {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Critical Fix */

.contact-social-section-theme9 .social-card img {
  width: 65px !important;
  height: auto !important;
  max-width: 65px !important;
  transition: 0.3s;
}

.contact-social-section-theme9 .social-card img:hover {
  transform: translateY(-6px) scale(1.08);
}


/* ================= SLIDER ================= */

.slide-bg {
  height: 85vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(128,0,32,0.75),
    rgba(0,0,0,0.55)
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.slide-content h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  color: var(--theme9-gold);
}

.slide-content p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 25px;
}


/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .poster-content {
    flex-direction: column;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width:576px){

  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid img {
    height: 200px;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  /* Mobile Follow Fix */

  .contact-social-section-theme9 .social-card img {
    width: 45px !important;
  }

}
