/* ========================================
   PICCADILLY REUSABLE COMPONENTS
   Generic, reusable sections for all pages
   ======================================== */

/* ========================================
   PICCADILLY STICKY SECTION
   Two-column sticky layout with individual overlays
   ======================================== */

.piccadilly-sticky-wrapper {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.piccadilly-sticky-container {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.piccadilly-sticky-row {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.piccadilly-sticky-left,
.piccadilly-sticky-right {
  width: 50%;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Individual column overlays - customize color/opacity per page */
.piccadilly-sticky-left::after,
.piccadilly-sticky-right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.piccadilly-sticky-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* Optional decoration (ring, circle, etc.) - goes between columns */
.piccadilly-sticky-left::before,
.piccadilly-sticky-right::before {
  content: "";
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 0;
}

.piccadilly-sticky-title {
  font-weight: 600;
  font-size: 38px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.piccadilly-sticky-accordion {
  position: relative;
  z-index: 2;
}


/* ========================================
   PICCADILLY SCROLL SECTION
   Stacking scroll columns with individual overlays
   ======================================== */

.piccadilly-scroll-wrapper {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Spacers create scroll room */
.piccadilly-scroll-spacer {
  height: 100vh;
  width: 100%;
}

/* Individual Scroll Columns */
.piccadilly-scroll-col {
  width: 50%;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  padding: 80px 5%;
}

/* Individual column overlays - customize color/opacity per page */
.piccadilly-scroll-col::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Optional decoration (rings, circles, etc.) */
.piccadilly-scroll-col::before {
  content: "";
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.piccadilly-scroll-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.piccadilly-scroll-heading {
  font-weight: 600;
  font-size: 38px;
  margin-bottom: 20px;
}

.piccadilly-scroll-description {
  margin-bottom: 30px;
  line-height: 1.6;
}

.piccadilly-scroll-button {
  text-align: left;
}


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

@media (max-width: 768px) {
  /* Sticky Section */
  .piccadilly-sticky-container {
    position: relative;
  }
  
  .piccadilly-sticky-row {
    flex-direction: column;
  }
  
  .piccadilly-sticky-left,
  .piccadilly-sticky-right {
    width: 100%;
    padding: 60px 25px;
  }
  
  .piccadilly-sticky-title {
    font-size: 28px;
  }
  
  .piccadilly-sticky-right::before,
  .piccadilly-sticky-left::before {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px !important;
    height: 300px !important;
  }
  
  /* Scroll Section */
  .piccadilly-scroll-col {
    width: 100%;
    padding: 60px 25px;
  }
  
  .piccadilly-scroll-heading {
    font-size: 28px;
  }
  
  .piccadilly-scroll-col::before {
    width: 300px !important;
    height: 300px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }
  
  .piccadilly-scroll-spacer {
    height: 50vh;
  }
}
