/* Import Luxury Serif and Sans Serif fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  /* Premium Aesthetic Color Scheme matching Logo */
  --pixie-champagne: #e8dcd0;      /* Soft warm nude-beige blob background */
  --pixie-lavender: rgb(234, 224, 242); /* #eae0f2 pastel lavender accent */
  --pixie-gold: #c5a880;           /* Soft muted gold accent */
  --pixie-gold-dark: #9e825e;
  --pixie-gold-light: #f7f3ee;     /* Very light sand tone */
  --pixie-charcoal: #2c2c2a;       /* Warm black text from logo */
  --pixie-bronze: #545450;         /* Muted charcoal for body text */
  --pixie-alabaster: #fdfcfb;      /* Alabaster background */
  --pixie-white: #ffffff;
  --pixie-gray-light: #f8f6f3;
  --pixie-shadow: rgba(44, 44, 42, 0.05);

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Poppins', sans-serif;
  --transition-luxury: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: var(--font-sans);
  color: var(--pixie-bronze);
  background-color: var(--pixie-alabaster);
  line-height: 1.7;
  font-size: 0.95rem;
  overflow-x: hidden;
}

/* Headings with high contrast and luxury typeface */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--pixie-charcoal);
  font-weight: 600;
  letter-spacing: 0.02em;
}

p {
  font-weight: 300;
}

/* Utility classes */
.text-gold { color: var(--pixie-gold) !important; }
.text-charcoal { color: var(--pixie-charcoal) !important; }
.bg-champagne { background-color: var(--pixie-champagne) !important; }
.bg-alabaster { background-color: var(--pixie-alabaster) !important; }
.bg-gold-light { background-color: var(--pixie-gold-light) !important; }

/* Sticky Luxury Navbar */
.navbar-luxury {
  background-color: rgba(253, 252, 251, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 25px rgba(37, 34, 33, 0.03);
  transition: var(--transition-luxury);
  padding: 18px 0;
  border-bottom: 1px solid rgba(200, 159, 118, 0.1);
}
.navbar-luxury.scrolled {
  padding: 10px 0;
}
.navbar-luxury .navbar-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--pixie-charcoal) !important;
  text-decoration: none;
}
.navbar-luxury .navbar-brand span {
  font-weight: 300;
  color: var(--pixie-gold);
}
/* Full Logo layout with blend-mode and negative margin to reduce navbar padding */
.logo-full-nav {
  height: 95px;
  width: auto;
  mix-blend-mode: multiply; /* Blends white logo canvas background away */
  display: block;
  margin-top: -16px;
  margin-bottom: -16px;
  transition: var(--transition-luxury);
}
.navbar-luxury.scrolled .logo-full-nav {
  height: 75px;
  margin-top: -12px;
  margin-bottom: -12px;
}
.navbar-luxury .nav-link {
  color: var(--pixie-charcoal) !important;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px !important;
  border-radius: 20px;
  transition: var(--transition-luxury);
}
.navbar-luxury .nav-link:hover,
.navbar-luxury .nav-link.active {
  color: var(--pixie-gold) !important;
  background-color: var(--pixie-champagne);
}

/* Premium Buttons */
.btn-pixie-gold {
  background-color: var(--pixie-gold);
  color: var(--pixie-white);
  border: 1px solid var(--pixie-gold);
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 12px 30px;
  border-radius: 30px;
  transition: var(--transition-luxury);
}
.btn-pixie-gold:hover {
  background-color: var(--pixie-charcoal);
  color: var(--pixie-white);
  border-color: var(--pixie-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 34, 33, 0.12);
}
.btn-pixie-dark {
  background-color: var(--pixie-charcoal);
  color: var(--pixie-white);
  border: 1px solid var(--pixie-charcoal);
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 12px 30px;
  border-radius: 30px;
  transition: var(--transition-luxury);
}
.btn-pixie-dark:hover {
  background-color: var(--pixie-gold);
  color: var(--pixie-white);
  border-color: var(--pixie-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 159, 118, 0.2);
}
.btn-pixie-outline {
  background-color: transparent;
  color: var(--pixie-charcoal);
  border: 1px solid var(--pixie-charcoal);
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 12px 30px;
  border-radius: 30px;
  transition: var(--transition-luxury);
}
.btn-pixie-outline:hover {
  background-color: var(--pixie-charcoal);
  color: var(--pixie-white);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-luxury {
  background: linear-gradient(135deg, #fbf7f4 0%, #ede3dc 50%, var(--pixie-lavender) 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px 0 80px 0; /* Reduced top padding to move banner closer to navbar */
  border-bottom: 1px solid rgba(200, 159, 118, 0.08);
}
.hero-circles {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(200, 159, 118, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.hero-luxury .container {
  position: relative;
  z-index: 3;
}
.hero-luxury h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 24px;
}
.hero-luxury h1 strong {
  font-weight: 700;
  display: block;
  color: var(--pixie-gold);
}
.hero-img-wrapper {
  position: relative;
  border-radius: 24px;
  background: transparent;
  padding: 0;
  box-shadow: 0 15px 35px rgba(37,34,33,0.08);
  max-width: 540px;
  margin: 0 auto;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

/* Service Card List */
.service-card {
  background: var(--pixie-white);
  border: 1px solid rgba(200, 159, 118, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: var(--transition-luxury);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px var(--pixie-shadow);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(200, 159, 118, 0.12);
  border-color: var(--pixie-gold);
}
.service-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--pixie-charcoal);
  font-weight: 500;
}
.service-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pixie-gold-dark);
  font-weight: 500;
  margin-bottom: 12px;
}
.service-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--pixie-charcoal);
  font-weight: 700;
  margin-bottom: 20px;
}
.service-badge {
  display: inline-block;
  background: var(--pixie-lavender);
  color: var(--pixie-charcoal);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Interactive Tabs */
.tabs-luxury {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
}
.tab-btn {
  background: var(--pixie-white);
  border: 1px solid rgba(200, 159, 118, 0.2);
  color: var(--pixie-bronze);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-luxury);
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--pixie-lavender);
  color: var(--pixie-charcoal);
  border-color: var(--pixie-lavender);
  box-shadow: 0 4px 12px rgba(234, 224, 242, 0.4);
}
.bg-lavender {
  background-color: var(--pixie-lavender) !important;
  color: var(--pixie-charcoal) !important;
}

/* Testimonial Scroller (Infinite loops) */
.scroller-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}
.scroller-inner {
  display: flex;
  width: max-content;
  animation: scrollLeft 45s linear infinite;
  gap: 24px;
}
.scroller-inner:hover {
  animation-play-state: paused;
}
.testimonial-card {
  background: var(--pixie-white);
  border: 1px solid rgba(200, 159, 118, 0.06);
  border-radius: 12px;
  padding: 30px;
  width: 380px;
  box-shadow: 0 6px 20px var(--pixie-shadow);
}
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-404px * 4)); }
}

/* Before and After Image Comparison Slider */
.ba-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1; /* Square aspect ratio matches Instagram post dimensions */
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px var(--pixie-shadow);
  border: 1px solid rgba(200, 159, 118, 0.1);
  background-color: var(--pixie-gray-light);
}
.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Prevents cropping on top, bottom, or sides */
  pointer-events: none;
}
.ba-after {
  z-index: 1; /* Underneath */
}
.ba-before {
  z-index: 2; /* On top, gets clipped to reveal before state */
  width: 100%;
  clip-path: inset(0 25% 0 0); /* Start at 75% reveal (25% clipped from right) */
}
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--pixie-white);
  z-index: 4;
  left: 75%; /* Match 75% start position */
  transform: translateX(-50%);
  pointer-events: none;
  /* Shadow falls on the right side (onto the after image) by default, shading ~15% of container width */
  box-shadow: 20px 0 55px 12px rgba(0, 0, 0, 0.75);
  transition: box-shadow 0.3s ease;
}
.ba-divider.moving {
  /* Shadow swaps to the left side (onto the before image) when cursor moves */
  box-shadow: -20px 0 55px 12px rgba(0, 0, 0, 0.75);
}
.ba-overlay-label {
  position: absolute;
  bottom: 12px;
  background: rgba(37,34,33,0.7);
  color: #fff;
  padding: 4px 10px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 3;
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

/* Contact Forms */
.form-luxury {
  background: var(--pixie-white);
  border: 1px solid rgba(200, 159, 118, 0.08);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 15px 45px var(--pixie-shadow);
}
.form-luxury .form-control {
  border: 1px solid rgba(200, 159, 118, 0.15);
  border-radius: 8px;
  padding: 12px 18px;
  background-color: var(--pixie-gray-light);
  font-size: 0.95rem;
  transition: var(--transition-luxury);
}
.form-luxury .form-control:focus {
  border-color: var(--pixie-gold);
  background-color: var(--pixie-white);
  box-shadow: 0 0 0 3px rgba(200, 159, 118, 0.12);
  outline: none;
}

/* Footer Section */
.footer-luxury {
  background: var(--pixie-charcoal);
  color: rgba(253, 252, 251, 0.7);
  padding: 80px 0 30px 0;
  font-size: 0.9rem;
  border-top: 2px solid var(--pixie-gold);
}
.footer-luxury h5 {
  color: var(--pixie-white);
  margin-bottom: 25px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}
.footer-luxury a {
  color: rgba(253, 252, 251, 0.7);
  text-decoration: none;
  transition: var(--transition-luxury);
}
.footer-luxury a:hover {
  color: var(--pixie-gold);
  padding-left: 4px;
}
.footer-bottom-luxury {
  border-top: 1px solid rgba(253, 252, 251, 0.08);
  padding-top: 25px;
  margin-top: 40px;
}

/* Booking Modal */
.modal-luxury .modal-content {
  border-radius: 20px;
  border: 1px solid rgba(200, 159, 118, 0.15);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  background-color: var(--pixie-alabaster);
}
.modal-luxury .modal-header {
  border-bottom: 1px solid rgba(200, 159, 118, 0.08);
  padding: 24px;
}
.modal-luxury .modal-footer {
  border-top: 1px solid rgba(200, 159, 118, 0.08);
  padding: 20px 24px;
}

/* Cookie Consent Banner Styling */
.cookie-banner-luxury {
  position: fixed;
  bottom: -200px; /* Start hidden off-screen */
  left: 0;
  right: 0;
  background: rgba(253, 252, 251, 0.98);
  border-top: 1px solid rgba(200, 159, 118, 0.15);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(44, 44, 42, 0.08);
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cookie-banner-luxury.show {
  bottom: 0;
}
.cookie-banner-luxury .cookie-text a {
  font-weight: 500;
}


