/** Shopify CDN: Minification failed

Line 29:0 All "@import" rules must come first

**/
/* =============================================================
   PAPI PARTY – HERO SECTION
   Scoped styles – mobile-first, responsive
   ============================================================= */

/* ---------- Custom Properties ---------- */
.pp-hero {
  --pp-red: #C8102E;
  --pp-red-dark: #A50D24;
  --pp-blue: #003DA5;
  --pp-blue-light: #00A3E0;
  --pp-white: #FFFFFF;
  --pp-offwhite: #F5F0EB;
  --pp-dark: #1A1A1A;
  --pp-gold: #f2a02c;
  --pp-grey: #D8D4CF;
  --pp-font-display: 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
  --pp-font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --pp-radius: 6px;
  --pp-nav-height: 64px;
}

/* ---------- Google Fonts (Oswald + Inter) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Oswald:wght@400;500;600;700&display=swap');

/* ---------- Section Reset ---------- */
.pp-hero__poster {
  position: relative;
  width: 100%;
  max-width: 580px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
}

.pp-hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--pp-offwhite);
}

.pp-hero *,
.pp-hero *::before,
.pp-hero *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---------- Background ---------- */
.pp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pp-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.pp-hero__nav {
  position: relative;
  z-index: 20;
  width: 100%;
  background: transparent;
  padding: 0 16px;
}

.pp-hero__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  height: var(--pp-nav-height);
  gap: 12px;
}

/* Logo */
.pp-hero__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  order: 2;
  margin: 0 auto;
}

.pp-hero__logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.pp-hero__logo-text {
  font-family: var(--pp-font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--pp-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Nav links list */
.pp-hero__nav-links {
  display: none;
  list-style: none;
  gap: 8px;
  order: 3;
}

.pp-hero__nav-link {
  font-family: var(--pp-font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--pp-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: var(--pp-radius);
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.pp-hero__nav-link:hover,
.pp-hero__nav-link:focus-visible {
  color: var(--pp-red);
  background: rgba(200, 16, 46, 0.06);
}

/* CTA Button */
.pp-hero__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  order: 4;
  font-family: var(--pp-font-display);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--pp-white);
  background: var(--pp-red);
  border: 2px solid var(--pp-red);
  padding: 6px 10px;
  border-radius: var(--pp-radius);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 12px rgba(200, 16, 46, 0.3);
}

.pp-hero__cta-btn:hover,
.pp-hero__cta-btn:focus-visible {
  background: var(--pp-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(200, 16, 46, 0.4);
}

/* Hamburger */
.pp-hero__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  order: 1;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 25;
}

.pp-hero__hamburger-line {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--pp-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.pp-hero__hamburger.is-active .pp-hero__hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.pp-hero__hamburger.is-active .pp-hero__hamburger-line:nth-child(2) {
  opacity: 0;
}
.pp-hero__hamburger.is-active .pp-hero__hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav dropdown */
.pp-hero__nav-links.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--pp-nav-height);
  left: 0;
  right: 0;
  background: var(--pp-offwhite);
  padding: 16px 20px;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-top: 2px solid var(--pp-red);
  z-index: 30;
  animation: ppSlideDown 0.3s ease-out;
}

@keyframes ppSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pp-hero__nav-links.is-open .pp-hero__nav-link {
  font-size: 0.95rem;
  padding: 12px 16px;
  display: block;
  border-radius: var(--pp-radius);
}

.pp-hero__nav-links.is-open .pp-hero__nav-link:hover {
  background: rgba(200, 16, 46, 0.08);
}

/* ============================================================
   HERO CONTENT
   ============================================================ */
.pp-hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--pp-nav-height) + 10px) 16px 70px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

/* Subtitle */
.pp-hero__subtitle {
  display: none;
}

/* Composition wrapper (mobile: stacked) */
.pp-hero__composition {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
}

/* Duo image wrapper */
.pp-hero__duo-wrapper {
  position: relative;
  width: 75%;
  max-width: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pp-hero__duo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

/* Info stack */
.pp-hero__info-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 8px;
}

/* Title logo */
.pp-hero__title-wrapper {
  width: 100%;
  max-width: 520px;
}

.pp-hero__title-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(2px 4px 12px rgba(0, 0, 0, 0.1));
}

.pp-hero__title-fallback {
  font-family: var(--pp-font-display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--pp-dark);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Date badge */
.pp-hero__date-badge {
  background-image: url('papi-date-bg.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8px 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotate(-1deg);
  white-space: nowrap;
}

.pp-hero__torn-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 70px;
  background-size: 100% 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 10;
  pointer-events: none;
  display: block !important;
}

.pp-hero__date-text {
  font-family: var(--pp-font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--pp-white);
  text-transform: uppercase;
  letter-spacing: 0.08em!important;
  line-height: 1;
}

/* Location badge */
.pp-hero__location-badge {
  background-image: url('papi-location-bg.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8px 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotate(-1deg);
  white-space: nowrap;
  margin-top: -6px;
}

.pp-hero__location-text {
  font-family: var(--pp-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pp-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* ============================================================
   COUNTDOWN TIMER
   ============================================================ */
.pp-hero__countdown {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}

.pp-hero__countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.pp-hero__countdown-unit:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 15%;
  height: 70%;
  width: 2px;
  background-color: var(--pp-red);
}

.pp-hero__countdown-unit:hover {
  transform: translateY(-2px);
}

.pp-hero__countdown-number {
  font-family: var(--pp-font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--pp-dark);
  line-height: 1;
  letter-spacing: 0.02em;
}

.pp-hero__countdown-label {
  font-family: var(--pp-font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--pp-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Mobile CTA */
.pp-hero__mobile-cta-wrapper {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.pp-hero__mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pp-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pp-white);
  background: var(--pp-red);
  border: 2px solid var(--pp-red);
  padding: 12px 28px;
  border-radius: var(--pp-radius);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 3px 12px rgba(200, 16, 46, 0.3);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.pp-hero__mobile-cta-btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 6px rgba(200, 16, 46, 0.4);
}

/* ============================================================
   DECORATIVE DOODLES
   ============================================================ */
.pp-hero__doodles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.pp-hero__doodle {
  position: absolute;
  opacity: 0.7;
}

/* Position each doodle */
.pp-hero__doodle--confetti-1 { top: 15%; left: 8%; animation: ppFloat 4s ease-in-out infinite alternate; }
.pp-hero__doodle--confetti-2 { top: 25%; right: 12%; animation: ppFloat 5s ease-in-out 0.5s infinite alternate; }
.pp-hero__doodle--confetti-3 { bottom: 30%; left: 5%; animation: ppFloat 3.5s ease-in-out 1s infinite alternate; }
.pp-hero__doodle--squiggle-1 { top: 12%; left: 30%; animation: ppDrift 6s ease-in-out infinite alternate; }
.pp-hero__doodle--squiggle-2 { bottom: 20%; right: 8%; animation: ppDrift 7s ease-in-out 1s infinite alternate; }
.pp-hero__doodle--star-1 { top: 20%; right: 25%; animation: ppSpin 8s linear infinite; }
.pp-hero__doodle--star-2 { bottom: 35%; left: 15%; animation: ppSpin 10s linear infinite reverse; }
.pp-hero__doodle--circle-1 { top: 40%; left: 3%; animation: ppFloat 5s ease-in-out 2s infinite alternate; }
.pp-hero__doodle--circle-2 { bottom: 15%; right: 20%; animation: ppFloat 4.5s ease-in-out infinite alternate; }
.pp-hero__doodle--triangle { top: 10%; right: 6%; animation: ppSpin 12s linear infinite; }

@keyframes ppFloat {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-14px) rotate(8deg); }
}

@keyframes ppDrift {
  0%   { transform: translateX(0) translateY(0); }
  100% { transform: translateX(10px) translateY(-6px); }
}

@keyframes ppSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   TABLET  (≥ 750px)
   ============================================================ */
@media (min-width: 750px) {
  .pp-hero {
    --pp-nav-height: 72px;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .pp-hero__nav {
    padding: 0 28px;
  }

  .pp-hero__logo-link {
    margin: 0;
    order: 1;
  }

  .pp-hero__logo-img {
    height: 52px;
  }

  /* Show desktop nav, hide hamburger */
  .pp-hero__hamburger {
    display: none;
  }

  .pp-hero__cta-btn {
    display: inline-flex;
    font-size: 0.78rem;
    padding: 10px 18px;
  }

  .pp-hero__nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }

  .pp-hero__content {
    justify-content: center;
    padding: calc(var(--pp-nav-height) + 20px) 28px 40px;
  }

  .pp-hero__mobile-cta-wrapper {
    display: none;
  }

  .pp-hero__subtitle {
    display: block;
    font-family: var(--pp-font-body);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--pp-dark);
    text-align: right;
    width: 100%;
    padding-right: 4px;
    margin-bottom: 8px;
    opacity: 0.75;
  }

  .pp-hero__composition {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .pp-hero__duo-wrapper {
    width: 50%;
    max-width: 600px;
    aspect-ratio: auto;
    flex-shrink: 0;
  }

  .pp-hero__duo-img {
    max-height: calc(100vh - var(--pp-nav-height) - 80px);
  }

  .pp-hero__info-stack {
    width: 50%;
    align-items: center;
    padding-left: 0;
    gap: 10px;
  }

  .pp-hero__date-badge {
    padding: 0 75px;
  }

  .pp-hero__location-badge {
    padding: 0 60px;
  }

  .pp-hero__title-wrapper {
    max-width: 100%;
  }

  .pp-hero__title-img {
    max-width: 500px;
  }

  .pp-hero__date-text {
    font-size: 2.4rem;
  }

  .pp-hero__location-text {
    font-size: 1.2rem;
  }

  .pp-hero__countdown {
    gap: 32px;
  }

  .pp-hero__countdown-unit:not(:last-child)::after {
    right: -16px;
  }

  .pp-hero__countdown-number {
    font-size: 3rem;
  }

  .pp-hero__countdown-label {
    font-size: 0.9rem;
  }
}

/* ============================================================
   DESKTOP  (≥ 1100px)
   ============================================================ */
@media (min-width: 1100px) {
  .pp-hero {
    --pp-nav-height: 80px;
  }

  .pp-hero__nav {
    padding: 0 48px;
  }

  .pp-hero__logo-img {
    height: 56px;
  }

  .pp-hero__nav-link {
    font-size: 0.85rem;
    padding: 8px 14px;
  }

  .pp-hero__cta-btn {
    font-size: 0.82rem;
    padding: 12px 24px;
  }

  .pp-hero__content {
    padding: calc(var(--pp-nav-height) + 10px) 48px 50px;
  }

  .pp-hero__duo-wrapper {
    width: 52%;
    max-width: 700px;
  }

  .pp-hero__info-stack {
    width: 48%;
    gap: 12px;
    padding-left: 10px;
  }

  .pp-hero__title-img {
    max-width: 600px;
  }

  .pp-hero__date-badge {
    padding: 10px 30px;
  }

  .pp-hero__date-text {
    font-size: 3.2rem;
  }

  .pp-hero__location-badge {
    padding: 10px 40px;
  }

  .pp-hero__location-text {
    font-size: 1.6rem;
  }

  .pp-hero__countdown {
    gap: 40px;
    margin-top: 12px;
  }

  .pp-hero__countdown-unit:not(:last-child)::after {
    right: -20px;
  }

  .pp-hero__countdown-number {
    font-size: 3.5rem;
  }

  .pp-hero__countdown-label {
    font-size: 1rem;
  }
}

/* ============================================================
   WIDE DESKTOP  (≥ 1440px)
   ============================================================ */
@media (min-width: 1440px) {
  .pp-hero__nav {
    padding: 0 64px;
  }

  .pp-hero__content {
    padding: calc(var(--pp-nav-height) + 10px) 64px 50px;
  }

  .pp-hero__nav-link {
    font-size: 0.88rem;
    padding: 8px 16px;
  }

  .pp-hero__title-img {
    max-width: 660px;
  }

  .pp-hero__date-text {
    font-size: 3.8rem;
  }

  .pp-hero__location-text {
    font-size: 1.9rem;
  }

  .pp-hero__countdown-number {
    font-size: 4rem;
  }

  .pp-hero__countdown-label {
    font-size: 1.1rem;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .pp-hero__doodle,
  .pp-hero__countdown-unit {
    animation: none !important;
    transition: none !important;
  }
}
