/**
 * PixelPass Phase 2 — Header, Footer, Homepage
 */

/* ══════════════════════════════════════════════════════════
   HEADER FINAL
   ══════════════════════════════════════════════════════════ */
.pp-phase1 .pp-phase2-header-upper {
  min-height: 84px !important;
  height: 84px;
  background: #ffffff !important;
  border-bottom: 1px solid #F2F4F7;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  padding: 0 !important;
}

.pp-phase1 .pp-phase2-header-grid {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  flex-wrap: nowrap;
}

.pp-phase1 .pp-phase2-logo-block {
  background: transparent;
  height: auto;
  display: flex;
  align-items: center;
  padding: 0;
  margin-left: 0;
  border-radius: 0;
}

.pp-phase1 .pp-phase2-logo-link img {
  height: 56px;
  max-height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.pp-phase1 .pp-phase2-search-col {
  flex: 1;
  justify-content: center;
}

.pp-phase1 .pp-phase2-search-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background: #F9FAFB;
  border: 1px solid #E4E7EC;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  padding: 0 16px;
  min-height: 44px;
}

.pp-phase1 .pp-phase2-search-form input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #101828;
  padding: 10px 10px;
  min-width: 0;
}

.pp-phase1 .pp-phase2-search-icon {
  color: #98A2B3;
  font-size: 14px;
}

.pp-phase1 .pp-phase2-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-phase1 .pp-phase2-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #E4E7EC;
  background: #fff;
  color: #344054;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
}

.pp-phase1 .pp-phase2-pill-btn:hover,
.pp-phase1 .pp-phase2-pill-btn:focus {
  border-color: #D0D5DD;
  color: #101828;
  outline: none;
}

.pp-phase1 .pp-phase2-chevron {
  font-size: 10px;
  opacity: 0.7;
}

.pp-phase1 .pp-phase2-lang-select {
  border: 1px solid #E4E7EC;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: #344054;
  background: #fff;
  outline: none;
  cursor: pointer;
}

.pp-phase1 .pp-phase2-dropdown-menu {
  border: 1px solid #F2F4F7;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
  margin-top: 6px;
  min-width: 160px;
}

.pp-phase1 .pp-phase2-dropdown-menu .dropdown-item {
  font-size: 13px;
  color: #344054 !important;
  padding: 8px 16px;
}

.pp-phase1 .pp-phase2-dropdown-menu .dropdown-item:hover {
  background: #F9FAFB;
  color: #101828 !important;
}

.pp-phase1 .pp-phase2-mobile-toggle {
  border: 1px solid #E4E7EC;
  background: #fff;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}

.pp-phase1 .pp-phase2-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #344054;
}

.pp-phase1 .pp-phase2-mobile-panel {
  padding: 14px 0 18px;
  border-top: 1px solid #F2F4F7;
}

.pp-phase1 .pp-phase2-search-form--mobile {
  max-width: 100%;
  margin-bottom: 12px;
}

.pp-phase1 .pp-phase2-mobile-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.pp-phase1 .pp-phase2-mobile-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #E4E7EC;
  border-radius: 999px;
  color: #344054 !important;
  font-size: 13px;
  text-decoration: none;
}

.pp-phase1 .pp-phase2-mobile-auth {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pp-phase1 .pp-phase2-mobile-link {
  font-size: 13px;
  color: #344054 !important;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 991px) {
  .pp-phase1 .pp-phase2-header-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .pp-phase1 .pp-original-logo {
    margin-left: 0;
    height: auto;
    padding: 0;
  }

  .pp-phase1 .pp-original-logo img {
    height: 52px;
    max-height: 52px;
  }

  .pp-phase1 .pp-phase2-header-upper {
    height: auto;
    min-height: 76px !important;
    padding: 8px 0 !important;
  }
}

/* ══════════════════════════════════════════════════════════
   FOOTER FINAL
   ══════════════════════════════════════════════════════════ */
.pp-phase1 .pp-phase2-footer {
  background: #071A52;
  padding: 44px 0 0;
}

.pp-phase1 .pp-phase2-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 32px;
}

.pp-phase1 .pp-phase2-footer-logo img {
  height: 52px;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.pp-phase1 .pp-phase2-footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 16px;
  max-width: 240px;
}

.pp-phase1 .pp-phase2-footer-social {
  display: flex;
  gap: 8px;
}

.pp-phase1 .pp-phase2-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 13px;
  text-decoration: none;
}

.pp-phase1 .pp-phase2-footer-social a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pp-phase1 .pp-phase2-footer-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.pp-phase1 .pp-phase2-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pp-phase1 .pp-phase2-footer-links li {
  margin-bottom: 7px;
}

.pp-phase1 .pp-phase2-footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62) !important;
  text-decoration: none;
}

.pp-phase1 .pp-phase2-footer-links a:hover {
  color: #fff !important;
}

.pp-phase1 .pp-phase2-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  position: relative;
}

.pp-phase1 .pp-phase2-footer-bar p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.pp-phase1 .pp-phase2-scroll-top {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
}

@media (max-width: 1199px) {
  .pp-phase1 .pp-phase2-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .pp-phase1 .pp-phase2-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .pp-phase1 .pp-phase2-footer-bar {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding-bottom: 44px;
  }
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — scoped under .pp-home
   ══════════════════════════════════════════════════════════ */
.pp-home .page-wrapper {
  background: #ffffff;
}

/* Hero carousel */
.pp-home .pp-phase2-hero-carousel {
  padding: 20px 0 0;
  background: #fff;
}

.pp-home .pp-phase2-hero-shell {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pp-home .pp-phase2-hero-swiper {
  position: relative;
}

.pp-home .pp-phase2-hero-slide {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.pp-home .pp-phase2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 82, 0.82) 0%, rgba(7, 26, 82, 0.45) 55%, rgba(7, 26, 82, 0.2) 100%);
}

.pp-home .pp-phase2-hero-copy {
  position: relative;
  z-index: 2;
  padding: 48px 56px;
  max-width: 620px;
  color: #fff;
}

.pp-home .pp-phase2-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.pp-home .pp-phase2-hero-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 10px;
}

.pp-home .pp-phase2-hero-copy p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.pp-home .pp-phase2-hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #F97316;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.pp-home .pp-phase2-hero-btn:hover {
  background: #ea580c;
  color: #fff !important;
}

.pp-home .pp-phase2-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  font-size: 32px;
  line-height: 1;
  box-shadow: none;
}

.pp-home .pp-phase2-hero-arrow--prev { left: 16px; }
.pp-home .pp-phase2-hero-arrow--next { right: 16px; }

.pp-home .pp-phase2-hero-pagination {
  bottom: 16px !important;
}

.pp-home .pp-phase2-hero-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.pp-home .pp-phase2-hero-pagination .swiper-pagination-bullet-active {
  background: #F97316;
  width: 22px;
  border-radius: 999px;
}

/* Ad strip */
.pp-home .pp-phase2-ad-strip {
  padding: 24px 0;
  background: #fff;
}

.pp-home .pp-phase2-ad-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: #F8FAFC;
  border: 1px solid #EEF2F6;
  border-radius: 14px;
}

.pp-home .pp-phase2-ad-copy h3 {
  font-size: 18px;
  font-weight: 600;
  color: #071A52;
  margin-bottom: 4px;
}

.pp-home .pp-phase2-ad-copy p {
  font-size: 14px;
  color: #475467;
  margin: 0;
}

.pp-home .pp-phase2-ad-btn {
  flex-shrink: 0;
  padding: 12px 22px;
  background: #F97316;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.pp-home .pp-phase2-ad-btn:hover {
  background: #ea580c;
  color: #fff !important;
}

/* Category strip */
.pp-home .pp-phase2-category-strip {
  padding: 8px 0 28px;
  background: #fff;
}

.pp-home .pp-phase2-category-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.pp-home .pp-phase2-category-tile {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 108px;
  padding: 14px 12px;
  background: #fff;
  border: 1px solid #EEF2F6;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pp-home .pp-phase2-category-tile:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
  text-decoration: none;
}

.pp-home .pp-phase2-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F0F9FF;
  color: #0076A8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.pp-home .pp-phase2-category-label {
  font-size: 12px;
  font-weight: 500;
  color: #344054;
  text-align: center;
  line-height: 1.3;
}

/* Featured experiences */
.pp-home .pp-phase2-featured {
  padding: 16px 0 48px;
  background: #fff;
}

.pp-home .pp-phase2-section-head {
  text-align: center;
  margin-bottom: 32px;
}

.pp-home .pp-phase2-section-head h2 {
  font-size: 26px;
  font-weight: 700;
  color: #071A52;
  margin-bottom: 6px;
}

.pp-home .pp-phase2-section-head p {
  font-size: 14px;
  color: #667085;
  margin: 0;
}

.pp-home .pp-phase2-featured-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.pp-home .pp-phase2-event-card {
  width: 100%;
  max-width: 340px;
  background: #fff;
  border: 1px solid #EEF2F6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pp-home .pp-phase2-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.pp-home .pp-phase2-event-image {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
}

.pp-home .pp-phase2-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pp-home .pp-phase2-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: #071A52;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pp-home .pp-phase2-event-body {
  padding: 18px;
}

.pp-home .pp-phase2-event-venue {
  font-size: 12px;
  color: #667085;
  margin-bottom: 6px;
}

.pp-home .pp-phase2-event-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
}

.pp-home .pp-phase2-event-body h3 a {
  color: #071A52 !important;
  text-decoration: none;
}

.pp-home .pp-phase2-price {
  font-size: 14px;
  font-weight: 600;
  color: #0076A8;
}

.pp-home .pp-phase2-book-btn {
  display: block;
  text-align: center;
  margin-top: 14px;
  padding: 11px 16px;
  background: #071A52;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
}

.pp-home .pp-phase2-book-btn:hover {
  background: #0a2470;
  color: #fff !important;
}

.pp-home .pp-phase2-book-btn--ghost {
  background: transparent;
  border: 1px solid #071A52;
  color: #071A52 !important;
}

.pp-home .pp-phase2-coming-soon-card {
  width: 100%;
  max-width: 340px;
  padding: 36px 24px;
  text-align: center;
  background: #F8FAFC;
  border: 1px dashed #D0D5DD;
  border-radius: 16px;
}

.pp-home .pp-phase2-coming-soon-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #E0F2FE;
  color: #0076A8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.pp-home .pp-phase2-coming-soon-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #071A52;
  margin-bottom: 8px;
}

.pp-home .pp-phase2-coming-soon-card p {
  font-size: 13px;
  color: #667085;
  margin-bottom: 16px;
}

.pp-home .pp-phase2-event-card.is-sold-out {
  opacity: 0.75;
}

@media (max-width: 767px) {
  .pp-home .pp-phase2-hero-slide {
    min-height: 380px;
  }

  .pp-home .pp-phase2-hero-copy {
    padding: 28px 24px;
  }

  .pp-home .pp-phase2-ad-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .pp-home .pp-phase2-hero-arrow {
    width: 34px;
    height: 34px;
  }
}
