body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background-color: #f8f8f8;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.bg-image {
  /* Full height */
  height: 180%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Images used */
.img1 { background-image: url("bd.jpg"); }
.img2 { background-image: url("The Hills-140.jpg"); }
.img3 { background-image: url("Meahia Feb89.jpg"); }
.img4 { background-image: url("Haven's Babyshower-006.jpg"); }
.img5 { background-image: url("grad.jpg"); }
.img6 { background-image: url("904.JPG"); }

/* Position text in the middle of the page/image html page */
.bg-text {
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  color: white;
  font-weight: bold;
  font-size: 40px;
  border: 10px solid #f1f1f1;
  position: fixed; /* Stay fixed */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 300px;
  padding: 20px;
  text-align: center;
}

/*Logo*/

.logo-container {
  display: flex;
  justify-content: center;
  padding:40px 0; /*space above & below*/
  align-items: center;
  background-color: #fff; /* or match your site’s background */
}

.logo {
  max-width: 180px; /* adjust as needed */
  height: auto;
  opacity: 0.95; /* slight transparency for seamless blending */
  display: block; 
  margin: 0 auto;
}



 /* Gallery Slideshow */


.gallery-section {
 
 Position: relative; 
}



/* Outer Container */
div.scroll-container {
  background-color: white; 
  overflow: hidden;
  white-space: nowrap;
  position: relative ;
  width: 100% ;
  padding: 10px 0;
  border: none; 
  box-shadow: none;
  margin-bottom: 20px;

  
}
/* Inner content that moves */
.scroll-content {
  display: inline-block;
 animation: scroll 30s linear infinite; /* Increase duration to slow down */
  animation-play-state: running;
}




div.scroll-container img {
  height: auto;
  width: 100%;
  max-width: 400px; /* limit image size on large screens */
  margin: 0 10px;
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;
  border-radius: 12px;
  display: inline-block;

}
div.scroll-container img:hover {
  opacity: 1; /* image becomes fully visible on hover */
}


/* Auto-scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}



/* Nav Wrapper (handles sticky behavior) */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 10;
}


/* Menu Bar */
.menu-bar {
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: all 0.4s ease;
}

/* NAV ITEMS */
.menu-bar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin: 0;
  padding: 0 18px;
}

/* LINKS */
.menu-bar a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  letter-spacing: 2px; /* luxury spacing */
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: opacity 0.3s ease;
}

/* Subtle hover */
.menu-bar a:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .logo-container {
    padding: 28px 0;
  }

  .logo {
    max-width: 140px;
  }

  .menu-bar {
    padding: 14px 0;
  }

  .menu-bar ul {
    gap: 12px 18px;
  }

  .menu-bar a {
    font-size: 11px;
    letter-spacing: 1px;
  }
}

@media (max-width: 390px) {
  .menu-bar ul {
    gap: 10px 12px;
  }

  .menu-bar a {
    font-size: 10px;
    letter-spacing: 0.7px;
  }
}

/* =========================
   Footer
========================= */
.lux-footer {
  position: relative; 
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  z-index: 5;
  margin-top: 60px;
  padding-top:50px;
} 
  .lux-footer {
  font-family: Arial, Helvetica,sans-serif;

}

/* GRID LAYOUT */
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

/* BRAND */
.footer-brand h2 {
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  margin-bottom: 10px;
 }

.footer-brand p {
  font-size: 13px;
  color: #777;
  
}

/* CONTACT + LOCATION */
.footer-contact p,
.footer-location p {
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 5px;
}

.footer-contact a {
  display: block;
  text-decoration: none;
  color: #111;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
 
}

/* SOCIAL */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  font-size: 18px;
  color: #111;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  opacity:1;
  transform: translateY(-2px);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: #888;
}


/* =========================
   Booking Page 
========================= */

/* BOOKING FORM WRAPPER */
.booking-form {
  max-width: 650px;
  margin: 80px auto;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;

  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* INPUT FIELDS */
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #fafafa;

  transition: all 0.3s ease;
}

/* FOCUS EFFECT */
.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  border-color: #111;
  background: #fff;
}

/* TEXTAREA */
.booking-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* PLACEHOLDER STYLE */
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #aaa;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.field-label {
  margin-bottom: -12px;
  color: #555;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-disclaimer {
  margin: -8px 0 4px;
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}

.deposit-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #333;
  font-size: 13px;
  line-height: 1.6;
}

.deposit-agreement input {
  width: auto;
  padding: 0;
  border: 0;
  margin-top: 4px;
  background: transparent;
  accent-color: #111;
  flex: 0 0 auto;
}

/* BUTTON (LUXURY STYLE) */
.booking-form button {
  margin-top: 10px;
  padding: 14px;
  border: 1px solid #111;
  background: #111;
  color: #fff;

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;

  cursor: pointer;
  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.booking-form button:hover {
  background: transparent;
  color: #111;
}

/* OPTIONAL: FORM TITLE */
.form-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}


/* Notice */
.booking-notice {
  font-size: 15px;
  text-align: center; 
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.booking-notice span {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: #000;
}

.booking-form {
  animation: fadeUp 0.8s ease forwards;
}


/* INPUT HOVER */
.booking-form input:hover,
.booking-form textarea:hover,
.booking-form select:hover {
  background: #fff;
}

/* BUTTON PREMIUM EFFECT */
.booking-form button {
  position: relative;
  overflow: hidden;
}

.booking-form button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  left: -100%;
  top: 0;
  transition: 0.4s;
  z-index: 0;
}

.booking-form button:hover::after {
  left: 0;
}

.booking-form button span {
  position: relative;
  z-index: 2;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
/* =========================
   Policy Page Only Style
========================= */

/* Container */
.policy-container {
  max-width: 900px;
  margin: 80px auto;
  padding: 20px;
}

/* Title */
.policy-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 50px;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid #eee;
}

/* Header */
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 10px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.accordion-header i {
  color: black;
}

/* Hover */
.accordion-header:hover {
  color: #555;
}

/* Plus Icon */
.accordion-header .icon::after {
  content: "+";
  position: absolute;
  right: 10px;
  font-size: 20px;
  transition: 0.3s;
}

/* Active State */
.accordion-item.active .accordion-header .icon::after {
  content: "−";
}

/* Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content p {
  padding: 0 10px 20px;
  color: #555;
  line-height: 1.7;
}





/* RESPONSIVENESS */

/* Tablets */
@media (max-width: 900px) {
  .scroll-container img {
    max-width: 250px;
  }
}

/* Phones */
@media (max-width: 600px) {
  .scroll-container img {
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .lux-footer {
    Padding: 30px 10px;
  }
}

/* Scroll Container Gallery Page */

@media (max-width: 600px) {
  div.scroll-container img {
    max-width: 160px;
    margin: 0 6px;
  }
}


/* =========================
   360 PAGE ONLY STYLES
========================= */

.booth-page {
  background: #f8f8f8;
  color: #111;
}

/* NAV stays same but darker vibe */
.booth-page .menu-bar {
  background: rgba(0,0,0,0.9);
}

.booth-page .menu-bar a {
  color: #e6e6e6;
}


.booth-page .booking-notice {
  color: #aaa;
}

/* VIDEO SECTION - make it cinematic */
.booth-page .video-box {
  height: 500px;
}

.booth-page .video-box video {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  height: 100%;
  object-fit: cover;
}




/* BUTTONS */
.booth-page button {
  background: #111;
  color: #fff;
  border: none; 
}

.booth-page button:hover {
  background: #c8a27a;
  color: #000;
}

/* FORM (KEEP SAME STRUCTURE, JUST STYLE) */
.booth-page .booking-form {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.booth-page .booking-form input:focus,
.booth-page .booking-form textarea:focus,
.booth-page .booking-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

/* FLYER SIDE */
.booth-page .booth-flyer img {
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
/*Booth Page */

/* =========================
   LUXURY HERO SECTION
========================= */

.luxury-hero {
  position: relative;

  /* responsive height instead of fixed */
  min-height: 85vh;
  height: auto;
  padding: 80px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;

  /* 🔑 IMAGE CONTROL */
  background-image: url("360 Booth.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .luxury-hero {
    min-height: 70vh;
    padding: 60px 20px;

    /* shift image slightly for better framing */
    background-position: left center;
  }
}

/* DARK OVERLAY FOR READABILITY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.4)
  );
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* MAIN TITLE */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 10px;
}

/* SCRIPT "EXPERIENCE" */
.hero-title span {
  display: block;
  font-family: 'Great Vibes', cursive; /* swap if you have a script font */
  font-size: 55px;

  color: #b8a1d9; /* lavender accent */
  margin-top: 10px;
}

/* SUBTEXT */
.hero-subtitle {
  font-size: 16px;
  color: #ddd;
  line-height: 1.6;
  margin-top: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-title span {
    font-size: 34px;
  }
}



/* BOTH COLUMNS */
/* VIDEO */
.video-box,
.includes-box{
  flex: 1;
  max-width: 550px; /* keeps it balanced */
  position: relative;
  overflow: hidden;
}

.video-box video {
  width: 100%;
  height: 100%;
  max-height: 500px; /* controls size */
  object-fit: cover;/* keeps it clean, no distortion */
  border-radius: 12px;
  transform: scale(1.05);
  animation: slowZoom 20s linear infinite;
}

/* GRADIENT OVERLAY */
.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.2));
  pointer-events: none;
}

/* INCLUDES MATCH HEIGHT */
.includes-box {
  justify-content: center; /* centers content vertically */
  height: 100%;
}


.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.include-item {
  background: rgba(255, 255, 255, 0.7); /* translucent */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 12px;

  padding: 20px;
  transition: all 0.3s ease;
}

/* HOVER = PREMIUM FEEL */
.include-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.85);
}
.include-item i {
  font-size: 28px;
  color: #b8a1d9;
  margin-bottom: 12px;
  display: block;
}

.include-item h4 {
  color: #111;
  Margin-bottom: 8px;
}

.include-item p {
  color: #555;
}

.video-includes-section {
  min-height: 500px; /* tallness of the video */
  display: flex;
  gap: 60px;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  align-items: center; /* 🔥 better alignment */
}
/* TAP SOUND BUTTON */
.sound-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 18px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.sound-btn:hover {
  background: #333;
}
/* What's INCLUDES */
.includes-box {
  flex: 1;
  flex-direction: column;
  justify-content: center;
}






/* MOBILE STACK */
@media (max-width: 768px) {
  .video-includes-section {
    flex-direction: column;
  }

 
}

/* SIDE BY SIDE LAYOUT */
.booth-booking-section {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  align-items: flex-start;
}

/* FLYER */
.booth-flyer {
  flex: 1;
  display: flex;
  justify-content: center;
}

.booth-flyer img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  
}

/* FORM SIDE */
.booth-form {
  flex: 1;
  border-left: 1px solid #eee;
  padding-left: 40px;
}

/* Booking Disclaimer */
.booking-disclaimer {
  margin-top: 20px;
  margin-bottom: 20px;

  padding: 16px 18px;

  background: rgba(255,255,255,0.7);
  border: 1px solid #e5e5e5;
  border-radius: 10px;

  font-size: 12px;
  line-height: 1.7;
  color: #666;

  text-align: left;
}

.booking-disclaimer strong {
  display: block;
  color: #111;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
} 

/* SUCCESS MESSAGE */
#successMsg {
  margin-top: 20px;
  font-size: 14px;
  color: #111;
  text-align: center;
}

/* SUCCESS BOX */
.success-box {
  display: none;
  margin-top: 30px;
  padding: 25px;
  border: 1px solid #eee;
  text-align: center;
  animation: fadeUp 0.8s ease forwards;
}

.success-box h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}


/* MOBILE */
@media (max-width: 768px) {
  .booth-booking-section {
    flex-direction: column;
  }

  .booth-form {
    border-left: none;
    padding-left: 0;
  }

  .community-partnership-content {
    padding: 34px 22px;
  }

  .community-partner-list {
    grid-template-columns: 1fr;
  }

  .community-partnership-content button {
    width: 100%;
  }
}
/* GLOBAL FADE-IN */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}



/* Price Packaging */
.packages-section {
  max-width: 1100px;
  margin: 80px auto;
  text-align: center;
}

.packages-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}




.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* FEATURED (middle card) */
.package-card.featured {
  border: 2px solid #111;
  transform: scale(1.05);
}

.price {
  color: #d8a7b1;
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 20px;
  letter-spacing: 1px;
}

/* =========================
   PREMIUM PACKAGE COLORS
========================= */
/* TITLE */
.packages-section .form-title {
  color: #b8a1d9; /* lavender */
  letter-spacing: 3px;
}

/* PACKAGE NAMES */
.package-card h3 {
  color: #3a3a3a; /* charcoal */
}

/* HOVER */
.package-card:hover h3 {
  color: #d6c6f0;
}

/* FEATURED */
.package-card.featured h3 {
  color: #b8a1d9;
}

/* LIST STYLE */
.package-card ul {
  list-style: none;
  padding: 0;
}

.package-card li::before {
  content: "✦ ";
  color: #c8a27a; /* match your new color */
  font-size: 12px;
}



/* =========================
    Package LUXURY BUTTON (LAVENDER)
========================= */

.package-card button {
  margin-top: 15px;
  padding: 14px;
  width: 100%;

  border-radius: 30px; /* softer = luxury */
  border: 1px solid rgba(184,161,217,0.4);

  background: linear-gradient(135deg, #b8a1d9, #d6c6f0);
  color: #2f2f2f;

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;

  cursor: pointer;
  transition: all 0.4s ease;

  box-shadow: 0 8px 25px rgba(184,161,217,0.25);
}

/* HOVER = SOFT GLOW */
.package-card button:hover {
  transform: translateY(-3px);

  background: linear-gradient(135deg, #d6c6f0, #ffffff);

  box-shadow: 0 12px 35px rgba(184,161,217,0.35);
  color: #111;
}

/* =========================
   COMMUNITY PARTNERSHIPS
========================= */

.community-partnership-section {
  max-width: 1100px;
  margin: 20px auto 90px;
  padding: 0 20px;
}

.community-partnership-content {
  padding: 44px;
  border: 1px solid #e8e5ee;
  background: rgba(255,255,255,0.82);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.community-partnership-content h2 {
  max-width: 720px;
  margin: 0 auto 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.12;
}

.community-partnership-content p {
  max-width: 760px;
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
}

.community-partner-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.community-partner-list span {
  padding: 15px;
  border: 1px solid #e8e5ee;
  background: #fff;
  color: #333;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.community-note {
  font-weight: 600;
}

.community-partnership-content button {
  margin-top: 28px;
  padding: 14px 24px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.community-partnership-content button:hover {
  background: #9d88c7;
  border-color: #9d88c7;
  color: #fff;
}

.community-partnership-content button span {
  position: relative;
  z-index: 2;
}
/* Form Group 360 Photo Booth */



.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.next-btn, .prev-btn {
  margin-top: 15px;
  margin-right: 10px;
  padding: 10px 15px;
  cursor: pointer;
}

.booth-booking-form button {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  padding: 14px 18px;
  border: 1px solid #111;
  border-radius: 0;
  background: #111;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booth-booking-form button:hover {
  background: transparent;
  color: #111;
}

.booth-booking-form button.submit-btn {
  display: block;
  width: 100%;
}

.booth-booking-form button span {
  position: relative;
  z-index: 2;
}

.booth-booking-form .prev-btn {
  background: transparent;
  color: #111;
}

.booth-booking-form .prev-btn:hover {
  background: #111;
  color: #fff;
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  background: transparent;
}

.form-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  font-size: 14px;
  color: #aaa;
  transition: 0.2s;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  font-size: 11px;
  background: #fff;
  padding: 0 5px;
  color: #333;
}

.addons-title {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#addonsSection label {
  display: block;
  margin: 6px 0;
  font-size: 14px;
}

#addonsSection input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #111;
}

.success-box {
  display: none;
  text-align: center;
  margin-top: 20px;
}

/* =========================
   FORCE LUXURY PACKAGES
========================= */


/* =========================
   VIDEO SECTION CONTAINER
========================= */

.booth-page .video-includes-section {
  margin: 100px auto;
  padding: 60px;
  max-width: 1100px;

  background: rgba(255, 255, 255, 0.55); /* LIGHT TRANSLUCENT */
  backdrop-filter: blur(12px); /* GLASS EFFECT */
  -webkit-backdrop-filter: blur(12px);

  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.4);

  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

/* KEEP VIDEO SHARP */
.booth-page .video-box video {
  position: relative;
  z-index: 1;
}

.booth-page .video-box::after {
  pointer-events: none;
}
 .booth-page .package-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;

  padding: 40px 30px;
  max-width: 320px;

  transition: all 0.4s ease;

  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* =========================
   INCLUDES SECTION TITLE FIX
========================= */

.booth-page .booth-hero{
    padding: 100px 20px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

 


/* ADD LEFT BORDER FOR STRUCTURE */
.booth-page .includes-box {
 padding-left: 30px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.booth-page .package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
}

.booth-page .hero-section {
  text-align: center;
  padding: 60px 20px 20px;
}



/* PRICE POP */
.booth-page .price {
  font-size: 30px;
  color: #111 !important;
  font-weight: 600;
}

/* =========================
   FEATURED PACKAGE (LAVENDER GLOW)
========================= */

.package-card.featured {
  border: 1px solid rgba(184,161,217,0.5);

  background: rgba(255,255,255,0.9);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.08),
    0 0 25px rgba(184,161,217,0.35); /* lavender glow */

  transform: scale(1.05);
}
  .package-card.featured::before {
  content: "";
  position: absolute;
  inset: -2px;

  border-radius: 18px;

  background: linear-gradient(135deg, #b8a1d9, #e9ddff, #b8a1d9);

  z-index: -1;
  filter: blur(12px);
  opacity: 0.6;
}

/* =========================
   GALLERY PAGE (EDITORIAL STYLE)
========================= */

.gallery-page {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

/* HEADER */
.gallery-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.gallery-header p {
  color: #888;
  font-size: 14px;
  letter-spacing: 1px;
}

/* AUTO SCROLL CLEANER LOOK */
.scroll-container {
  margin-top: 40px;
  background: transparent;
}

/* HOVER GRID */
.hover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 80px auto;
  max-width: 1200px;
}
/* TABLETS */
@media (max-width: 900px) {

  .hover-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

}

/* MOBILE */
@media (max-width: 600px) {

  .hover-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 50px auto;
  }

  .grid-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  .overlay span {
    font-size: 14px;
  }

  .overlay p {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .gallery-nav {
    gap: 8px;
    padding: 0 10px;
  }

  .gallery-nav button {
    font-size: 10px;
    padding: 8px 12px;
  }

}
.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: transparent; /* REMOVE gray cast */
}

/* IMAGE ALWAYS CLEAR */
.grid-item img {
  width: 100%;
  height: 100%;
  display: block;

  opacity: 1; /* IMPORTANT FIX */
  transform: scale(1);
  transition: transform 0.6s ease;
}

/* ONLY ZOOM ON HOVER (NO FADE) */
.grid-item:hover img {
  transform: scale(1.05);
}

/* OVERLAY STARTS HIDDEN */
.overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: rgba(255,255,255,0.55); /* soft luxury glass */
  backdrop-filter: blur(6px);

  opacity: 0;
  transition: 0.4s ease;
}

/* SHOW OVERLAY ONLY ON HOVER */
.grid-item:hover .overlay {
  opacity: 1;
}

/* TEXT */
.overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #222;
}

.overlay p {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

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

.overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
}

.overlay p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 20px;
  margin: 40px auto;
  max-width: 900px;
}

.gallery-nav button {
  flex: 0 1 auto;

  min-width: 120px;

  padding: 12px 18px;

  border: 1px solid #ddd;
  border-radius: 40px;

  background: white;

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;

  cursor: pointer;
  transition: all .3s ease;
}



.gallery-nav button:hover {
  border-color: #b8a1d9;
  color: #b8a1d9;
}

.gallery-nav .active {
  background: #b8a1d9;
  border-color: #b8a1d9;
  color: #fff;
}
@media (max-width: 600px) {

  .gallery-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .gallery-nav button {
    width: 100%;
    min-width: unset;

    font-size: 11px;
    padding: 12px;
  }

}



/* CTA */
.gallery-cta {
  margin-top: 100px;
}

.gallery-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
}

.gallery-cta p {
  color: #888;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  letter-spacing: 2px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #111;
  color: #fff;
}

/* =========================
   CREATIVE OFFERINGS PAGE
========================= */

.offerings-page {
  background: #fbfbfc;
  color: #111;
  overflow-x: hidden;
}

.offerings-page .menu-bar {
  background: rgba(255,255,255,0.92);
}

.offerings-page .menu-bar ul {
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 12px;
  padding: 0 18px;
}

.offerings-hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  text-align: center;
}

.offerings-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  padding: 90px 24px;
}

.section-kicker {
  margin: 0 0 14px;
  color: #9d88c7;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.offerings-hero h1,
.offerings-intro h2,
.section-heading h2,
.custom-cta h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0;
}

.offerings-hero h1 {
  max-width: 620px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
}

.offerings-hero-content p:not(.section-kicker) {
  max-width: 590px;
  margin: 24px 0 0;
  color: #e6e1ec;
  font-size: 16px;
  line-height: 1.8;
}

.offerings-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.offerings-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid #111;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.35;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.offerings-hero .offerings-btn {
  border-color: #fff;
}

.offerings-btn.primary {
  background: #111;
  color: #fff;
}

.offerings-hero .offerings-btn.primary {
  background: #fff;
  color: #111;
}

.offerings-btn.secondary {
  background: transparent;
  color: #111;
}

.offerings-hero .offerings-btn.secondary {
  color: #fff;
}

.offerings-btn:hover {
  background: #9d88c7;
  border-color: #9d88c7;
  color: #fff;
}

.offerings-intro,
.signature-offerings,
.premium-addons,
.custom-cta {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 24px;
}

.offerings-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: 60px;
  align-items: start;
}

.offerings-intro h2,
.section-heading h2,
.custom-cta h2 {
  color: #111;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-list span,
.premium-addons span {
  padding: 14px 16px;
  border: 1px solid #e8e5ee;
  background: #fff;
  color: #333;
  font-size: 13px;
  letter-spacing: 0.5px;
}


.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p:not(.section-kicker) {
  color: #555;
  line-height: 1.8;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.offering-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 360px;
  background: #fff;
  border: 1px solid #e8e5ee;
  overflow: hidden;
}

.offering-card img,
.offering-card video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.offering-card video {
  display: block;
  background: #111;
}

.offering-card div {
  padding: 32px;
}

.offering-card h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-weight: 600;
}

.offering-card p {
  color: #555;
  line-height: 1.7;
}

.offering-card .starting {
  color: #9d88c7;
  font-size: 15px;
  font-weight: 600;
}

.offering-card ul {
  padding-left: 18px;
  color: #333;
  line-height: 1.8;
}

.offering-card a {
  display: inline-block;
  margin-top: 12px;
  color: #111;
  font-size: 12px;
  letter-spacing: 1.7px;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid #9d88c7;
}

.premium-addons div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.premium-addons span {
  flex: 1 1 220px;
  background: #fff;
  text-align: center;
}

.custom-cta {
  text-align: center;
}

.custom-cta p:not(.section-kicker) {
  max-width: 660px;
  margin: 20px auto 0;
  color: #555;
  line-height: 1.8;
}

.custom-cta .offerings-actions {
  justify-content: center;
}

@media (min-width: 981px) {
  .offerings-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offering-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .offering-card img,
  .offering-card video {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #f4f1f7;
  }
}

@media (max-width: 980px) {
  .offerings-intro,
  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .offering-card {
    grid-template-columns: 1fr;
  }

  .offering-card img,
  .offering-card video {
    min-height: 320px;
    max-height: 520px;
    aspect-ratio: 16 / 10;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .offerings-page .logo-container {
    padding: 28px 0;
  }

  .offerings-page .logo {
    max-width: 140px;
  }

  .offerings-page .menu-bar {
    padding: 14px 0;
  }

  .offerings-page .menu-bar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 14px;
    padding: 0 14px;
  }

  .offerings-page .menu-bar a {
    font-size: 10px;
    letter-spacing: 0.8px;
  }

  .offerings-page .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .offerings-hero-content,
  .offerings-intro,
  .signature-offerings,
  .premium-addons,
  .custom-cta {
    padding: 52px 18px;
  }

  .offerings-hero {
    min-height: auto;
  }

  .offerings-hero h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  .offerings-hero-content p:not(.section-kicker),
  .section-heading p:not(.section-kicker),
  .custom-cta p:not(.section-kicker) {
    font-size: 14px;
    line-height: 1.75;
  }

  .offerings-intro {
    gap: 28px;
  }

  .offerings-intro h2,
  .section-heading h2,
  .custom-cta h2 {
    font-size: 31px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .offerings-grid {
    gap: 18px;
  }

  .offering-card {
    min-height: auto;
  }

  .offering-card img,
  .offering-card video {
    min-height: 260px;
    max-height: 360px;
    aspect-ratio: 4 / 3;
  }

  .offering-card div {
    padding: 26px 22px;
  }

  .offering-card h3 {
    font-size: 23px;
  }

  .offering-card a {
    line-height: 1.5;
  }

  .offerings-actions,
  .offerings-btn {
    width: 100%;
  }

  .premium-addons div {
    gap: 10px;
  }

  .premium-addons span {
    flex-basis: 100%;
  }
}

@media (max-width: 390px) {
  .offerings-page .menu-bar ul {
    gap: 10px 12px;
  }

  .offerings-page .menu-bar a {
    font-size: 9.5px;
  }

  .offerings-hero h1 {
    font-size: 34px;
  }

  .offerings-intro h2,
  .section-heading h2,
  .custom-cta h2 {
    font-size: 28px;
  }
}
