:root{
  --p3e-purple:#6f2dbd;
  --p3e-purple-dark:#5a23a8;
  --p3e-purple-soft: rgba(111,45,189,.12);
  --p3e-bg:#ffffff;
  --p3e-text:#1c1c1c;
}
body{background:var(--p3e-bg);color:var(--p3e-text);}
a{color:var(--p3e-purple);text-decoration:none;}
a:hover{color:var(--p3e-purple-dark);text-decoration:underline;}
.btn-primary{background:var(--p3e-purple);border-color:var(--p3e-purple);}
.btn-primary:hover{background:var(--p3e-purple-dark);border-color:var(--p3e-purple-dark);}
.btn-outline-primary{border-color:var(--p3e-purple);color:var(--p3e-purple);}
.btn-outline-primary:hover{background:var(--p3e-purple);border-color:var(--p3e-purple);color:#fff;}
.badge-purple{background:var(--p3e-purple);}
.navbar-brand img{height:40px;width:auto;object-fit:contain;}
.card{border-radius:18px;}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg, rgba(111,45,189,.75), rgba(111,45,189,.40));
}
.carousel-caption{background:rgba(0,0,0,.35);border-radius:16px;padding:14px 18px;}
.whatsapp-float{background:var(--p3e-purple)!important;color:#fff;}
.whatsapp-float:hover{transform:translateY(-2px);transition:.2s}

/* HERO SLIDER FULLSCREEN */
#heroSlider .carousel-item,
#heroSlider .slider-img {
  height: 900px;
}

.slider-img {
  width: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.carousel-caption {
  bottom: 25%;
}

@media (max-width: 768px) {
  #heroSlider .carousel-item,
  #heroSlider .slider-img {
    height: 520px;
  }
}
/* FOOTER PURPLE BACKGROUND */
.footer {
  background: #6f2dbd;
}

/* FOOTER LINKS */
.footer-link {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* SOCIAL ICONS */
.social-icon {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.social-icon:hover {
  text-decoration: underline;
}

/* STICKY CTA BAR */
.sticky-cta {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #5a23a8;
  padding: 10px 0;
  z-index: 998;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 70px;
  background: #6f2dbd;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}


/* GALLERY HOVER + LIGHTBOX */
.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(111,45,189,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-text {
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 10px;
}

<style>
.lightbox-wrapper{
  overflow:hidden;
  text-align:center;
}
.lightbox-img{
  max-height:80vh;
  transition: transform .3s ease;
  cursor: zoom-in;
}
.lightbox-img:hover{
  transform: scale(1.15);
}

/* NAV BUTTONS */
.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,.6);
  color:#fff;
  border:none;
  font-size:2rem;
  padding:10px 15px;
  cursor:pointer;
  z-index:10;
}
.lightbox-nav.prev{ left:10px; }
.lightbox-nav.next{ right:10px; }
</style>


