/* ================= THEME 6 – ELEGANT PURPLE FLORIST ================= */

:root {
  --theme6-primary: #6a2c91;
  --theme6-dark: #3a145c;
  --theme6-light-bg: #f3e9fb;
}


/* ================= HERO ================= */

.theme6-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.theme6-hero .bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme6-hero .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(106,44,145,0.75),
    rgba(58,20,92,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;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 35px;
}


/* ================= BACKGROUND SECTIONS ================= */

.contact-cards-theme6,
.contact-social-section-theme6 {
  background: var(--theme6-light-bg);
}


/* ================= POSTER ================= */

.theme6-poster {
  background: linear-gradient(135deg, var(--theme6-primary), var(--theme6-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%;
}

.theme6-poster .poster-name {
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.theme6-poster .poster-location-heading {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #ffffff;
}

.theme6-poster .poster-contact {
  font-size: 1.4rem;
  margin: 12px 0;
  display: flex;
  gap: 10px;
}

.theme6-poster .poster-contact i,
.theme6-poster .poster-contact a {
  color: #ffffff;
}

.theme6-poster .poster-location p {
  color: #f0e6ff;
  font-size: 1.2rem;
  margin: 6px 0;
}


/* ================= BUTTON ================= */

.btn-Know-theme6 {
  background: #ffffff;
  color: var(--theme6-primary);
}

.btn-Know-theme6:hover {
  background: var(--theme6-primary);
  color: #ffffff;
}


/* ================= SERVICES ================= */

.theme6-services {
  padding: 80px 20px;
  background: var(--theme6-light-bg);
  text-align: center;
}

.theme6-services .section-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--theme6-primary);
}

.theme6-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.theme6-services .services-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.theme6-services .services-grid img:hover {
  transform: scale(1.05);
}

.theme6-services .services-save {
  margin-top: 50px;
}


/* ================= MAP ================= */

.theme6-map {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.theme6-map .section-title {
  color: var(--theme6-primary);
}

.theme6-map .map-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(106,44,145,0.2);
}

.theme6-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}


/* ================= PAYMENT ================= */

.theme6-payment {
  padding: 80px 20px;
  background: var(--theme6-light-bg);
  text-align: center;
}

.theme6-payment .section-title {
  color: var(--theme6-primary);
}

.theme6-payment .upi-id {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--theme6-dark);
}

.theme6-payment .payment-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.theme6-payment .payment-icons img {
  width: 90px;
  padding: 15px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(106,44,145,0.2);
  transition: 0.3s;
}

.theme6-payment .payment-icons img:hover {
  transform: translateY(-8px);
}


/* ================= FOLLOW SECTION (FIXED PROPERLY) ================= */

.contact-social-section-theme6 {
  padding: 70px 20px;
  background: var(--theme6-light-bg);
  text-align: center;
}

.contact-social-section-theme6 .section-title {
  margin-bottom: 40px;
  color: var(--theme6-primary);
}

.contact-social-section-theme6 .social-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}

.contact-social-section-theme6 .social-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.contact-social-section-theme6 .social-card:hover {
  transform: translateY(-6px);
}

.contact-social-section-theme6 .social-card img {
  width: 45px;
}


/* ================= SLIDER ================= */

.banner .slide-bg::before {
  background: linear-gradient(
    to bottom,
    rgba(106,44,145,0.75),
    rgba(58,20,92,0.65)
  );
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .poster-content {
    flex-direction: column;
    text-align: center;
  }

  .poster-right {
    margin-top: 30px;
  }

  .theme6-poster {
    padding: 50px 25px;
  }

  .theme6-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .theme6-services .services-grid img {
    height: 240px;
  }
}

@media (max-width: 576px) {

  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }

  .theme6-services .services-grid {
    grid-template-columns: 1fr;
  }

  .theme6-services .services-grid img {
    height: 200px;
  }

  .theme6-map iframe {
    height: 300px;
  }

  .contact-social-section-theme6 .social-cards {
    gap: 20px;
  }

  .contact-social-section-theme6 .social-card {
    padding: 18px;
  }

}
