:root {
  --plum: #2B1B2F;
  --wine: #6B1E3C;
  --wine-light: #8A2A4E;
  --gold: #C9A24B;
  --gold-soft: #E4CE9B;
  --ivory: #FBF3EE;
  --white: #FFFDF9;
  --ink: #2A2323;
}

* { scroll-behavior: smooth; }

html { scroll-padding-top: 88px; }

body  {
  background: var(--white);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
}

.font-display { font-family: 'Fraunces', serif; }

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Navbar ---------- */
#navbar {
  transition: background-color .4s ease, box-shadow .4s ease, padding .4s ease;
  background-color: transparent;
  overflow: visible;
z-index: 99999;
}
#navbar1 {
  transition: background-color .4s ease, box-shadow .4s ease, padding .4s ease;
  background-color:rgba(43,27,47,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15) ;
  overflow: visible;
z-index: 99999;
}
#navbar.scrolled {
  background-color: rgba(43,27,47,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
#navbar .nav-link {
  position: relative;
}
#navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0%; height: 1.5px;
  background: var(--gold);
  transition: width .3s ease;
}
#navbar .nav-link:hover::after { width: 100%; }

.dropdown-panel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.group:hover .dropdown-panel,
.dropdown-panel:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #B78A36);
  color: var(--plum);
  font-weight: 700;
  transition: transform .3s ease, box-shadow .3s ease, letter-spacing .3s ease;
  box-shadow: 0 8px 24px rgba(201,162,75,0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,162,75,0.4);
  letter-spacing: 0.03em;
}
.btn-outline {
  border: 1.5px solid var(--gold-soft);
  color: var(--ivory);
  transition: all .3s ease;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--plum);
  border-color: var(--gold);
}

/* ---------- Ribbon divider signature element ---------- */
.ribbon-divider {
  width: 100%;
  height: 60px;
  display: block;
  overflow: visible;
}
.ribbon-divider path {
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.6s cubic-bezier(.22,.9,.28,1);
}
.ribbon-divider.in-view path {
  stroke-dashoffset: 0;
}
.ribbon-divider .ribbon-dot {
  opacity: 0;
  transition: opacity .6s ease .9s;
}
.ribbon-divider.in-view .ribbon-dot { opacity: 1; }

/* ---------- Floating petals (hero ambient motion) ---------- */
.petal {
  position: absolute;
  border-radius: 50% 0 50% 50%;
  background: var(--gold-soft);
  opacity: 0.35;
  animation: drift 14s linear infinite;
}
@keyframes drift {
  0% { transform: translateY(-10%) rotate(0deg); }
  100% { transform: translateY(110%) rotate(220deg); }
}

/* ---------- Service / package cards ---------- */
.card-elegant {
  background: var(--white);
  border: 1px solid rgba(201,162,75,0.25);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.card-elegant:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(43,27,47,0.15);
  border-color: var(--gold);
}

.package-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(107,30,60,0.12);
  transition: transform .4s ease, box-shadow .4s ease;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(43,27,47,0.18);
}
.package-card.featured {
  border: 1.5px solid var(--gold);
}
.corner-ribbon {
  position: absolute;
  top: 18px;
  right: -34px;
  background: var(--wine);
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: .12em;
  padding: 4px 40px;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ---------- Gallery ---------- */
.gallery-item { cursor: pointer; overflow: hidden; }
.gallery-item img { transition: transform .6s ease, filter .6s ease; }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.85); }
.gallery-item .gallery-overlay {
  opacity: 0;
  transition: opacity .4s ease;
  background: linear-gradient(to top, rgba(43,27,47,0.85), transparent 60%);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.filter-pill {
  transition: all .3s ease;
  border: 1px solid rgba(107,30,60,0.25);
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--wine);
  color: var(--ivory);
  border-color: var(--wine);
}

/* ---------- Lightbox ---------- */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(24,14,20,0.94);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }
#lightbox img {
  max-height: 82vh;
  max-width: 90vw;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: lbIn .35s ease;
}
@keyframes lbIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }

/* ---------- Testimonials ---------- */
.testi-track {
  transition: transform .6s cubic-bezier(.22,.9,.28,1);
}
.quote-mark {
  font-family: 'Fraunces', serif;
  color: var(--gold-soft);
  line-height: 0.6;
}

/* ---------- WhatsApp floating button ---------- */
#whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 26px;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  animation: pulse-wa 2.4s ease-in-out infinite;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.12); }
}
/* Call Button */
.call-float{
    position: fixed;
    right: 25px;
    bottom: 105px; /* Above WhatsApp */
    width: 65px;
    height: 65px;
    background: #007BFF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,123,255,.4);
    z-index: 9999;
    transition: .3s;
}

.call-float:hover{
    transform: scale(1.1);
}

/* ---------- Section eyebrow ---------- */
.eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--wine);
  letter-spacing: 0.04em;
}

/* Mobile menu */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}
#mobile-menu.open { max-height: 640px; }

/* scrollbar */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 6px; }


/* RESPONSIVE DESIGN */
/* ========================================= */

/* Laptop */
@media (max-width:1200px){

}

/* Tablet */
@media (max-width:992px){

}

/* Mobile */
@media (max-width:768px){

}

/* Small Mobile */
@media (max-width:576px){

}
html,
body {
    width: 100%;
    overflow-x: hidden;
}

section,
header,
footer,
nav {
    max-width: 100%;
    overflow-x: hidden;
}

img,
iframe {
    max-width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
}
/* Fix Services Dropdown */
#navbar1,
#navbar {
    overflow: visible !important;
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.3s ease;
}

.group:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
#services {
    position: relative;
    z-index: 1;
}

#navbar1 {
    z-index: 99999;
}