/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Buttons */
/* .btn-primary {
  background-color: #ff6b98;
  color: white;
  border: none;
  padding: 12px 30px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background-color: #e05a84;
} */

.btn-primary {
  background: linear-gradient(135deg, #e4a8ca, #f6afad);
  color: white;
  border: none;
  padding: 20px 30px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 26px;
  display: inline-block;
  position: relative;
}

/* Float animation keyframes */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Hover effect */
.btn-primary:hover {
  background: linear-gradient(135deg, #f6afad, #e4a8ca);
  animation: float 1.2s ease-in-out infinite;
}


.search-btn {
  background-color: #ff6b98;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  color: #333;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #1a1a1a;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
header {
  background-color: #000;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.transparent-header {
  background-color: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.logo-img {
  height: 40px;
  filter: invert(1);
}

.contact-info {
  display: flex;
  align-items: center;
  font-size: 17px !important;
  gap: 20px;
  color: #f7b6d2;
  font-size: 0.9rem;
}

.contact-link {
  font-size: 17px;
  color: #f7b6d2;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-link:hover {
  color: #ff6b98;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo a {
  color: white;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

/* .nav-menu a.active {
  text-decoration: underline;
} */

.product--text--bolder {
  font-weight: 600;
  font-size: 1.25rem;
  color: rgb(233, 177, 213)
}

.nav-menu li a:hover {
  color: #ff6b98;
}
/* Base styles for nav links */
.nav-menu li a {
  position: relative;
  text-decoration: none;
  color: #fff; /* adjust to your theme */
  padding-bottom: 4px; /* space for underline */
  transition: color 0.3s ease;
}

p a{
  color: rgb(233, 177, 213);
  text-decoration: none;
}

.nav-link {
  color: white;
}

.container-reviews {
  padding: 50px;
}

a .booth-card h3, .booth-card a {
  color: black;
  text-decoration: none;
}

p a:hover, a .booth-card h3:hover, .no-line {
  color: rgb(238, 204, 226);
  text-decoration: none;
}

/* Active item underline */
.nav-menu li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px; /* underline thickness */
  background-color: #fff; /* your underline color */
  border-radius: 2px;
}

/* Optional: Hover effect for other items */
.nav-menu li a:not(.active):hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #ccc; /* hover underline color */
  border-radius: 2px;
}


/* .nav-menu li a.active {
  border-bottom: 2px solid #ff6b98;
} */

/* .nav-menu a.active {
    border-bottom: 2px solid #fff !important; 
  } */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
}

@media (max-width: 1024px) {
  .booth-grid {
    gap: 15px !important;
  }

  .why-img-front {
    left: -10px !important;
  }

  .slider-container {
    max-width: 100% !important;
  }
}


/* Sticky header */
.transparent-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  background: black;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
  padding-block: 20px;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1003;
}

/* Hero Section */
.hero {
  /* background-image: url("../src/images/img3.jpg"); */
  background-image: url("/img/main-photo-slider.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  background-color: #000;
}

.hero-with-vid {
  /* background-image: url("../src/images/img3.jpg"); */
  /* background-image: url("/img/main-photo-slider.jpg"); */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  background-color: #000;
}

#ai-hero {
  background-image: url("/img/AI-BG.webp")
}

#vintage-hero {
  background-image: url("/img/vintage-booth-banner.webp");
}

#roaming-hero {
  background-image: url("/img/roamer-dslr-hero.jpeg")
}

#uplighting-hero {
  background-image: url('/img/uplighting-hero.jpg')
}

#mirror-hero {
  background-image: url('/img/Mirror-Landscape.jpeg')
}

#audiobook-hero {
  background-image: url('/img/guestbook.webp')
}

#classic-hero {
  background-image: url('/img/classic-booth-2024-wide.jpeg')
}

/* 1. CONTAINER STYLING */
#reflection-hero {
  /* This ensures the video positioning is relative to the hero section */
  position: relative; 
  /* Hides any parts of the video that might extend beyond the section */
  overflow: hidden; 
  /* If you previously used 'background-image' here, you should remove it, 
     but it's good practice to keep a 'background-color' as a fallback 
     in case the video fails to load.
  */
  background-color: #333; /* Example fallback color */
}

/* 2. VIDEO STYLING */
#background-video {
  /* Positions the video relative to the container */
  position: absolute;
  top: 0;
  left: 0;
  /* Make the video fill the entire container */
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  /* Ensures the video maintains aspect ratio and covers the area, cropping if needed */
  object-fit: cover;
  /* CRITICAL: Pushes the video behind your content (`.hero-content`) 
     which must have a z-index of 1 or greater (or just `position: relative`).
  */
  z-index: 1;
}

/* 3. CONTENT STYLING (Ensure content appears above the video) */
.hero-content {
  /* Ensures your text and buttons appear above the video (which is at z-index: -1) */
  position: relative; 
  z-index: 3; /* This is optional but good for clarity */
  /* Add padding, text colors, etc., here to ensure readability over the video */
}

/* Add this new CSS rule */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15); /* Black with 50% opacity */
  z-index: 2; /* Important: It should be above the video (-1) but below the content (1) */
}


.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 60px;
  /* Space for the header */
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.play-button {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  cursor: pointer;
  transition: all 0.3s;
}

.play-button i {
  font-size: 30px;
  color: white;
}

.play-button:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 80%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.btn-outline {
  padding: 12px 30px;
  border: 2px solid #f6afad;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 38px;
}

.btn-outline:hover {
  background-color: white;
  color: #000;
}

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

/* Brands Section */
.brands {
  padding: 80px 0;
  background-color: white;
  border-bottom: 1px solid #eaeaea;
}

h2.section-title.animate.fade-in.animated {
  margin-bottom: 20px;
}

.brands-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 30px;
}

.brand-logo {
  height: 65px;
  margin: 0 20px;
  transition: opacity 0.3s;
  object-fit: contain;
}

/* Feature Section */
.feature {
  padding: 100px 0;
  background-color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-image {
  position: relative;
}

.feature-image img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 15px solid #ff6b98;
}

img.second-img {
  margin-top: -35rem;
  margin-left: -55%;
}

/* .feature-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #ff6b98;
    z-index: 0;
} */

.feature-content {
  padding-right: 40px;
}

.feature-subtitle {
  color: #f7b6d2;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.feature-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #222;
}

.feature-content p {
  margin-bottom: 30px;
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 1.1rem;
}

.feature-content .btn-primary {
  margin-top: 10px;
}

/* Booths Section */
.booths {
  padding-top: 50px;
  padding-bottom: 80px;
  background-color: #fff;
}

.booth-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.booth-card {
  background-color: #f7f7f7;
  border-radius: 0px 0px 10px 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
  transition: transform 0.3s;
}

.booth-card.animate.scale.animated {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booth-card.animate.scale.animated:hover {
  transform: scale(1.05); /* slightly grow on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* subtle shadow */
  cursor: pointer;
}

.booth-card:hover {
  transform: translateY(-10px);
}

.booth-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.booth-card h3 {
  padding: 15px;
  text-align: center;
  font-size: 22px;
  line-height: 24px;
}

/* What We Include Section */

.what-we-include {
  padding: 80px 0;
  background-color: #f6f6f6;
}

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

.service-card.animate.slide-up.delay-1.animated {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.service-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  color: #1a1a1a;
}

.image-container img {
  width: 75px;
  height: 65px;
}

/* Who We Are Section */
.why-section {
  display: flex;
  justify-content: space-between;
  padding: 80px 0 0 0;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.why-left {
  flex: 1 1 55%;
  margin-top: 50px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-brand {
  color: #f7b6d2;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.why-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: -1px;
}
.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.why-reason {
  background: #fff;
  border-left: 8px solid #f7b6d2;
  padding: 18px 22px;
  box-sizing: border-box;
  box-shadow: none;
}
.why-reason-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.why-reason-desc {
  font-size: 0.97rem;
  color: #1a1a1a;
  line-height: 1.5;
}
.why-cta {
  margin-top: 18px;
}
.why-cta-btn {
  background: #f7b6d2;
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: none;
  letter-spacing: 1px;
}
.why-cta-btn:hover {
  background: #e89fc2;
}
.why-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  min-width: 420px;
}
.why-img-stack {
  position: relative;
  width: 420px;
  height: 520px;
  margin-top: 30px;
}
.why-img-bg {
  position: absolute;
  top: 0;
  left: -20px;
  width: 380px;
  height: 500px;
  object-fit: cover;
  border-radius: 0;
  z-index: 1;
  border-bottom: 10px solid;
  border-image: linear-gradient(135deg, #e4a8ca, #f6afad) 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.why-img-solo {
  position: absolute;
  top: 0;
  /* left: -20px;
  width: 380px;
  height: 500px; */
  max-width: 90%;;
  object-fit: cover;
  border-radius: 0;
  z-index: 1;
  border-bottom: 10px solid;
  border-image: linear-gradient(135deg, #e4a8ca, #f6afad) 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.why-img-front {
  position: absolute;
  top: 250px;
  left: -100px;
  width: 320px;
  height: 450px;
  object-fit: cover;
  border-radius: 0;
  z-index: 2;
  border-bottom: 10px solid;
  border-image: linear-gradient(135deg, #e4a8ca, #f6afad) 1;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Events Section */

.events-section {
  background: #2c2a2a;
  padding: 80px 0 80px 0;
  text-align: center;
}
.events-title {
  color: #e6b6c9;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.events-desc {
  color: #e0e0e0;
  font-size: 1.08rem;
  max-width: 600px;
  margin: 0 auto 48px auto;
  line-height: 1.5;
}
.events-list {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 0;
  flex-wrap: wrap;
}
.event-item {
  flex: 1 1 200px;
  max-width: 320px;
  min-width: 220px;
  background: transparent;
  padding: 0 18px;
  box-sizing: border-box;
}
.event-icon {
  display: block;
  margin: 0 auto 18px auto;
  width: 48px;
  height: 48px;
  stroke: #e6b6c9;
  fill: none;
}
.event-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.event-desc {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.5;
}

/* Gallery Section */

.gallery-section, .gallery-section-vid {
  padding: 80px 0;
  background: #f7f7f7;
}
.gallery-header, .gallery-header-vid {
  max-width: 600px;
  margin-left: 60px;
  margin-bottom: 24px;
}
.gallery-title, .gallery-title-vid {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.gallery-desc, .gallery-desc-vid {
  font-size: 1.08rem;
  color: #1a1a1a;
  line-height: 1.5;
}
.gallery-slider-container, .gallery-slider-container-vid {
  margin: 0 40px;
  position: relative;
}
.gallery-slider-wrapper, .gallery-slider-wrapper-vid {
  position: relative;
  width: 100%;
  height: 480px;
  margin-bottom: 24px;
  overflow: hidden;
}
.gallery-slide, .gallery-slide-vid {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s;
  background: #fff;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.gallery-slide video, .gallery-slide-vid video {
  width: 100%;        /* Makes the video take up the full width of its container */
  height: 100%;       /* Makes the video take up the full height of its container */
  object-fit: cover;  /* Ensures the video covers the entire container, similar to background-size: cover. It may crop the video edges. */
}

.gallery-slide img, .gallery-slide-vid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Pagination dots */
.gallery-pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
  margin-bottom: 0;
  height: 8px;
}
.gallery-dot {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: #e0e0e0;
  transition: background 0.2s;
}
.gallery-dot.active {
  background: #222;
}
/* Arrows */
.gallery-arrows {
  position: absolute;
  right: 60px;
  display: flex;
  z-index: 2;
}
.gallery-arrow-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.15s;
  font-size: 0;
}
.gallery-arrow-btn:hover {
  background: #ececec;
}
.gallery-arrow-icon {
  width: 32px;
  height: 32px;
  stroke: #222;
  stroke-width: 2.5;
  fill: none;
  display: block;
}

/* Reviews Section */

.reviews-section {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  gap: 50px;
  background: url("../src/images/download.svg");
  object-fit: cover;
}

.reviews-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafaf8;
  padding: 25px 20px;
  margin-bottom: 50px;
}
.reviews-summary {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.reviews-summary .stars {
  color: #fbbc05;
  font-size: 20px;
}
.review-btn {
  background: #de238e;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
}

/* Slider */
.slider-container {
  max-width: 1160px;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 15px;
}

.review-card {
  flex: 0 0 20%; /* 5 slides per view */
  box-sizing: border-box;
  margin: 0; /* remove side margins to avoid extra spacing */
  padding: 15px;
  background: #fafaf8;
  border-radius: 12px;
  text-align: left;
  user-select: none;
}

.review-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}
.review-card .stars {
  color: #fbbc05;
  margin: 10px 0;
}
.review-card p {
  font-size: 14px;
  color: #1a1a1a;
}
.read-more {
  color: #e91e63;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
}

/* Arrows */
.slider-arrows {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.arrow {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 16px;
  padding: 9px 15px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
}
/* Footer */

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin: 50px auto 30px auto;
  max-width: 1200px;
  align-items: flex-start;
}
.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 700;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 10px;
}
.footer-column a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1rem;
}
.footer-column a:hover {
  color: #ff6b98;
}
.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #333;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.social-icons a:hover {
  background-color: #ff6b98;
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: left;
  padding-top: 20px;
  border-top: none;
  color: #333;
  font-size: 1rem;
  max-width: 1200px;
  margin: 0 auto 30px auto;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #ff6b98;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #e05a84;
  transform: translateY(-5px);
}

.case-study-image {
  width: 100%;
}

.case-study-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Add spacing between duplicate sections */
section.case-study + section.case-study,
section.testimonial + section.testimonial,
section.photo-booth-machine + section.photo-booth-machine {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 50px;
}

section.case-study {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 160px 20px;
  box-sizing: border-box;
}

.intternal-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

/* Top Tag */
.tag {
  color: #f7b6d2;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Title */
.banner-heading {
  font-size: 4.2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 56px;
}

.subtitle {
  max-width: 650px;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Tags */
.tags {
  display: flex;
  color: #f9e6f0;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.tags span {
  background: #E0ADC0;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 400;
}

/* Main Image */
.hero-section {
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}

.hero-section img {
  width: 100%;
  display: block;
}

/* Section Layout */
.section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 50px;
}

.section .text {
  flex: 1 1 400px;
}

.section .image {
  flex: 1 1 300px;
}

.section img {
  width: 100%;
  display: block;
}

h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.main-content--h2 {
  font-size: 1.75rem !important;
  margin-top: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.third-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px; /* space for arrows below */
}

.third-slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px; /* 👈 center gap between slides */
}

.third-slide {
  flex: 0 0 calc(50% - 10px); /* 👈 adjust width for gap (20px total split) */
  box-sizing: border-box;
}

.third-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.third-slider-nav {
  display: flex;
  justify-content: flex-end; /* push to right */
  margin-top: -25px; /* overlap gap if needed */
  padding-right: 15px;
}

.third-slider-nav button {
  color: #000;
  border: none;
  padding: 8px 14px;
  margin-left: 8px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 18px;
  transition: background 0.3s;
}

.third-slider-nav button:hover {
  background: #555;
  color: #fff;
}

/* ===============================================
   RESPONSIVE DESIGN - All Media Queries Consolidated
   =============================================== */

/* Base Responsive Styles */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive Container Styles */
.container,
section,
.section {
  width: 100%;
  box-sizing: border-box;
}

/* Responsive Flex Containers */
.flex-container {
  display: flex;
  flex-wrap: wrap;
}

/* Responsive Grid Layouts */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Extra Large Devices (1200px and down) */
@media (max-width: 1200px) {
  /* Layout & Container Adjustments */
  .container,
  section.case-study {
    width: 100%;
    padding: 60px 5%;
  }

  /* Case Study Section */
  .case-study-content p {
    max-width: 100%;
  }

  /* Testimonial & Photo Booth Machine Sections */
  .testimonial,
  .photo-booth-machine {
    padding: 60px 5%;
  }

  /* Banner & Hero Elements */
  .banner-heading {
    font-size: 3.5rem;
    line-height: 48px;
  }
}

/* Mobile styles */
@media (max-width: 1024px) {
  section.case-study {
    padding-top: 180px !important;
  }
  .transparent-header {
    padding: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }

  /* Slide-in nav menu */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 350px;
    background: black;
    flex-direction: column;
    padding: 80px 20px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1002;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
  }

  /* Slide in */
  .nav-menu.active {
    transform: translateX(0);
  }

  /* Menu items animation */
  .nav-menu li {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
  }
  .nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
  }

  /* Overlay behind menu */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1001;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Hide contact info on mobile */
  .contact-info {
    display: none;
  }
}

/* Large Devices (992px and down) */
@media (max-width: 992px) {
  /* Grid Layouts */
  .feature-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .feature-content {
    padding-right: 0px;
    padding-inline: 10px;
  }

  .service-card.animate.slide-up.delay-1.animated {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 25px;
}

  .booths {
    padding-top: 0;
  }

  .booth-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .booth-card img {
    height: 380px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  /* Testimonial & Photo Booth Machine Sections */
  .testimonial,
  .photo-booth-machine {
    flex-direction: column;
    gap: 30px;
  }

  .testimonial-text,
  .testimonial-images,
  .machine-info,
  .machine-images {
    flex: none;
    width: 100%;
  }

  .testimonial-images img,
  .machine-images img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
  }

  /* Why Section */
  .why-section {
    flex-direction: column;
    padding: 40px 0 0 0;
    align-items: center;
  }

  .why-left,
  .why-right {
    padding: 0 30px;
    margin: 0;
    min-width: 0;
  }



  .why-right {
    align-items: center;
    margin-top: 0;
  }

  .why-img-stack {
    width: 320px;
    height: 370px;
  }

  .why-img-bg,
  .why-img-front {
    width: 220px;
    height: 220px;
  }

  .why-img-solo {
    max-width: 100%;
    margin: 0 auto;
  }

  .stack-solo {
    margin-bottom: 100px;
  }

  .why-img-front {
    top: 80px;
    left: 0;
    height: 260px;
  }

    .why-img-bg {
    left: 90px;
  }

  /* Gallery Section */
  .gallery-slider-wrapper, .gallery-slider-wrapper-vid {
    height: 320px;
  }

  .gallery-header, .gallery-header-vid {
    margin-left: 24px;
  }

  .gallery-slider-container, .gallery-slider-container-vid {
    margin: 0 10px;
  }

  .gallery-arrows {
    right: 20px;
  }

  /* Banner Elements */
  .banner-heading {
    font-size: 3rem;
    line-height: 42px;
  }
}

/* Medium Devices (768px and down) */
@media (max-width: 768px) {
  /* Grid Layouts */
  .booth-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .events-section {
    padding-inline: 20px;
  }

  .reviews-section {
    padding: 0;
  }

  .gallery-section, .gallery-section-vid {
    padding: 50px 20px;
  }

  .social-icons {
    justify-content: center;
  }

  /* Case Study Section */
  .case-study-content h1 {
    font-size: 28px;
  }

  .button-group {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .button-group button {
    width: 100%;
  }

  /* Typography */
  h1 {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .tags {
    flex-wrap: wrap;
  }

  /* Events Section */
  .events-list {
    flex-direction: column;
    gap: 36px;
    align-items: center;
  }

  .event-item {
    max-width: 400px;
  }

  .reviews-header {
    padding: 15px 10px;
  }

  .booths {
    padding: 0;
  }
}
/* Small Devices (576px and down) */
@media (max-width: 576px) {
  /* Container Adjustments */
  .container,
  section.case-study,
  .testimonial,
  .photo-booth-machine {
    padding: 40px 25px;
  }

  .hero-subtitle {
    font-size: 11.5px;
    margin-bottom: 0;
  }

  .brands .container {
    padding-block: 0 !important;
  }
  /* Tags Adjustments */
  .tags {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  /* Grid Layouts */
  .booth-grid {
    grid-template-columns: 1fr;
  }

  /* Typography */
  .hero h1 {
    font-size: 2rem;
  }

  .case-study-content h1 {
    font-size: 24px;
  }

  .machine-info h2 {
    font-size: 20px;
  }

  /* Layout & Spacing */
  section {
    padding: 40px 5%;
  }

  .case-study-label {
    font-size: 12px;
  }

  /* Text Elements */
  .case-study-content p,
  .testimonial-text p,
  .machine-info p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Buttons */
  .pink-button,
  .cta-button {
    padding: 8px 20px;
    font-size: 14px;
  }

  /* Spacing between duplicate sections */
  section.case-study + section.case-study,
  section.testimonial + section.testimonial,
  section.photo-booth-machine + section.photo-booth-machine {
    margin-top: 20px;
    padding-top: 30px;
  }

  /* Gallery Section */
  .gallery-header, .gallery-header-vid {
    margin-left: 10px;
  }

  .gallery-slider-wrapper {
    height: 220px;
  }

  .gallery-slider-wrapper-vid {
    height: 500px !important;
    max-width: 100% !important;
  }

  .gallery-arrows {
    right: 10px;
    bottom: -30px;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom {
    text-align: center;
  }
}

/* Extra Small Devices (375px and down) */
@media (max-width: 375px) {
  /* Typography */
  .case-study-content h1 {
    font-size: 20px;
  }

  .machine-info h2 {
    font-size: 18px;
  }

  /* Layout & Spacing */
  section {
    padding: 30px 4%;
  }

  /* Banner Elements */
  .banner-heading {
    font-size: 2.2rem;
    line-height: 36px;
  }

  /* Why Section */
  .why-section {
    padding: 20px 0 0 0;
  }

  .why-left,
  .why-right {
    padding: 0 10px;
  }

  .why-img-stack {
    width: 100%;
    height: 220px;
  }

  .why-img-bg,
  .why-img-front {
    width: 120px;
    height: 120px;
  }

  .why-img-front {
    top: 40px;
    left: 0;
    height: 140px;
  }
}


/* JA STYLES */
/* ================================= 
  Grids
==================================== */

.grid__1x2 {
  display: grid;
}

.grid--medium {
  margin: 0 auto;
}

.contact__form {
  /* background-color: #fafafa; */
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
}

.contact__form--page {
  margin-top: 150px;
}

.contact--header {
  margin-bottom: 2rem;
  text-shadow: 1px 2px lightgrey;
    color: rgb(233, 177, 213);
  font-size: 3rem;
  text-align: center;
  margin-top: 0;
  padding-top: 2rem;
}

.success__message {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: none;
}

.success--h2 {
  color: rgb(233, 177, 213);
  font-size: 2rem;
  text-shadow: none;
  background: none;
  margin-bottom: 0.5rem;
}

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

/* Right side of form */

.contact__details {
  padding: 2rem;
}

.contact--link {
  font-weight: 400;
  margin: 0.5rem 0 1.5rem;
  color: rgb(233, 177, 213);
}

.contact--text {
  margin: 0.75rem 0;
  color: rgb(103, 99, 99);
}

#sayhi {
color: rgb(233, 177, 213);
    font-family: "Roboto", sans-serif;
    font-size: 8rem;
    font-weight: 900;
    margin: 2rem 0;
    padding-top: 4rem;
}

@media screen and (min-width: 768px) {
  .grid__1x2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid--medium {
    max-width: 80%;
  }
}

.service__header {
  background-image: linear-gradient(
    to right,
    rgb(233, 177, 213),
    #eeb1d3,
    #f2b1d1,
    #f6b2cf,
    #fab2cc,
    #fcb2c8,
    #feb3c5,
    #ffb3c1,
    #ffb4bc,
    #ffb5b7,
    #ffb6b3,
    rgb(255, 184, 175)
  );
  border-radius: 4px;
  color: white;
  font-family: "BenchNine", serif;
  font-size: 2rem;
  margin: 0;
  position: relative;
  padding: 1rem 0;
  bottom: 60px;
  margin-bottom: -3rem;
  text-align: center;
}

.blog__card a {
  text-decoration: none;
}

.blog__card {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}

.focus--h1 { 
  font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fab2cc;
    text-shadow: none;
    text-align: center;
}

.focus__content img {
  width: 100%;
}

.infographic {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}