:root {
  --theme14-primary: #d8a7b1;
  --theme14-accent: #b76e79;
  --theme14-dark: #2b2b2b;
  --theme14-light: #fff6f8;
}

/* HERO */

.theme14-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.theme14-hero .bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme14-hero .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(43, 43, 43, 0.7),
    rgba(183, 110, 121, 0.6)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content {
  color: white;
  max-width: 900px;
  margin: auto;
}

.hero-content h1 {
  font-family: "Playfair Display";
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 35px;
}

/* BUTTON */

.btn-Know-theme14 {
  background: var(--theme14-accent);
  color: white;
}

.btn-Know-theme14:hover {
  background: var(--theme14-primary);
}

/* ABOUT */

.theme14-about {
  padding: 85px 20px;
  background: white;
}

.theme14-about .col-lg-6:last-child {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.theme14-about img {
  width: 100%;
  max-width: 360px;
  max-height: 480px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* GALLERY */

.theme14-gallery {
  padding: 85px 20px;
  background: var(--theme14-light);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  transition: 0.4s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* MAP */

.theme14-map {
  padding: 85px 20px;
  background: white;
  text-align: center;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* PAYMENT */

.theme14-payment {
  padding: 85px 20px;
  background: var(--theme14-light);
  text-align: center;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.payment-icons img {
  width: 90px;
  padding: 15px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* SOCIAL */

.contact-social-section-theme14 {
  padding: 70px 20px;
  text-align: center;
  background: white;
}

/* SLIDER */

.banner .slide-bg::before {
  background: linear-gradient(
    to bottom,
    rgba(43, 43, 43, 0.7),
    rgba(183, 110, 121, 0.6)
  );
}

.slide-content h2 {
  font-family: "Playfair Display";
  font-size: 3rem;
  color: white;
}

.slide-content p {
  color: #f5f5f5;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .theme14-about .col-lg-6:last-child {
    justify-content: center;
    margin-top: 30px;
  }

  .theme14-about img {
    max-width: 300px;
  }

}

@media (max-width: 576px) {

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 200px;
  }

  .theme14-about img {
    max-width: 240px;
  }

}