/* Variables and reset from /assets/css/base.css */
/* Fredoka loaded in index.php */

/* ═══ CLAY SYSTEM ═══ */
:root {
  --clay-radius:     24px;
  --clay-radius-sm:  14px;
  --clay-radius-pill:999px;
  --clay-border:     3px solid;
  --clay-shadow:     5px 5px 0;
  --clay-shadow-lg:  7px 7px 0;
  --clay-press:      translate(4px, 4px);
  --clay-inset:      inset 0 -3px 0 rgba(0,0,0,.12);

  --c-rose:   #FB7185;
  --c-blue:   #2563EB;
  --f-clay:   'Fredoka', var(--f-body);
}

/* ═══ BASE ═══ */
body {
  background: linear-gradient(160deg, #FFFBCF 0%, #EFF6FF 100%);
  min-height: 100vh;
  font-family: var(--f-body);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(36px,7vw,56px) clamp(20px,5vw,36px) clamp(12px,3vw,20px);
  text-align: center;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Craft shapes decoration ── */
.shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.shape {
  position: absolute;
  animation: spin-bob linear infinite alternate;
}

@keyframes spin-bob {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(-12px) rotate(25deg); }
}

@media (prefers-reduced-motion: reduce) {
  .shape { animation: none; }
}

/* Stars / circles / triangles via clip-path & border-radius */
.sh1 {
  width: 28px; height: 28px; top: 8%;  left: 5%;
  background: var(--c-red);
  border-radius: 4px;
  transform: rotate(12deg);
  border: 2.5px solid #a01515;
  box-shadow: 3px 3px 0 rgba(0,0,0,.15);
  animation-duration: 3.8s;
}
.sh2 {
  width: 20px; height: 20px; top: 6%;  left: 22%;
  background: var(--c-blue);
  border-radius: 50%;
  border: 2.5px solid #1a4fbf;
  box-shadow: 2px 2px 0 rgba(0,0,0,.12);
  animation-duration: 4.4s; animation-delay: -.6s;
}
.sh3 {
  width: 0; height: 0; top: 14%; left: 8%;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 22px solid var(--c-yellow);
  filter: drop-shadow(2px 2px 0 #C9A700);
  animation-duration: 5.1s; animation-delay: -1s;
}
.sh4 {
  width: 24px; height: 24px; top: 7%;  right: 6%;
  background: var(--c-green);
  border-radius: 50%;
  border: 2.5px solid #0f5120;
  box-shadow: 3px 3px 0 rgba(0,0,0,.14);
  animation-duration: 3.5s; animation-delay: -.4s;
}
.sh5 {
  width: 22px; height: 22px; top: 5%;  right: 22%;
  background: #A855F7;
  border-radius: 4px;
  transform: rotate(-15deg);
  border: 2.5px solid #7E22CE;
  box-shadow: 2px 2px 0 rgba(0,0,0,.12);
  animation-duration: 4.7s; animation-delay: -.9s;
}
.sh6 {
  width: 0; height: 0; top: 16%; right: 9%;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 19px solid var(--c-rose);
  filter: drop-shadow(2px 2px 0 #d94a5f);
  animation-duration: 3.2s; animation-delay: -1.3s;
}
.sh7 {
  width: 18px; height: 18px; top: 42%; left: 2%;
  background: var(--c-yellow);
  border-radius: 50%;
  border: 2px solid #C9A700;
  box-shadow: 2px 2px 0 rgba(0,0,0,.10);
  animation-duration: 4.2s; animation-delay: -.7s;
}
.sh8 {
  width: 20px; height: 20px; top: 40%; right: 2%;
  background: var(--c-red);
  border-radius: 4px;
  transform: rotate(30deg);
  border: 2px solid #a01515;
  box-shadow: 2px 2px 0 rgba(0,0,0,.10);
  animation-duration: 3.9s; animation-delay: -.2s;
}

/* ── Hero content ── */
.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  background: var(--c-navy);
  color: var(--c-white);
  font-family: var(--f-heading);
  font-size: clamp(10px,2.6vw,13px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--clay-radius-pill);
  border: 2px solid #0d0a36;
  box-shadow: 3px 3px 0 rgba(0,0,0,.20);
  margin-bottom: clamp(12px,3vw,18px);
}

.hero-logo {
  width: clamp(100px,26vw,155px);
  object-fit: contain;
  display: block;
  margin: 0 auto clamp(12px,3vw,18px);
  filter: drop-shadow(3px 4px 0 rgba(0,0,0,.12));
}

.hero-title {
  font-family: var(--f-clay);
  font-weight: 700;
  font-size: clamp(48px,13vw,80px);
  color: var(--c-navy);
  line-height: .92;
  letter-spacing: -1px;
  margin-bottom: clamp(6px,1.5vw,10px);
}

.hero-title em {
  font-style: normal;
  color: var(--c-red);
  font-size: clamp(28px,7.5vw,48px);
  display: block;
  letter-spacing: 0;
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-navy);
  color: var(--c-white);
  font-family: var(--f-heading);
  font-size: clamp(9px,2.4vw,13px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: clamp(7px,1.8vw,10px) clamp(14px,3.5vw,20px);
  border-radius: var(--clay-radius-pill);
  border: 2px solid #0d0a36;
  box-shadow: 4px 4px 0 #0d0a36;
  margin: clamp(12px,3vw,18px) 0;
}

.hero-subtitle .deco { color: var(--c-yellow); }

/* ── Hero mascots ── */
.hero-mascots {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: clamp(12px,3vw,20px);
  height: clamp(100px,26vw,155px);
  overflow: hidden;
}

.hero-mascots img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  flex-shrink: 0;
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,.10));
}

.mascot-side { transform: scale(.84); transform-origin: bottom center; }

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.section {
  padding: clamp(20px,5vw,36px) clamp(16px,4vw,24px);
  max-width: 600px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--f-clay);
  font-weight: 700;
  font-size: clamp(24px,6.5vw,36px);
  color: var(--c-navy);
  text-align: center;
  margin-bottom: clamp(14px,3.5vw,22px);
}

.section-title span { color: var(--c-red); }

/* ═══════════════════════════════════════
   EVENT CARDS
═══════════════════════════════════════ */
.events-list {
  display: flex;
  flex-direction: column;
  gap: clamp(10px,2.5vw,14px);
}

.event-card {
  background: var(--c-white);
  border-radius: var(--clay-radius);
  border: var(--clay-border) var(--c-navy);
  box-shadow: var(--clay-shadow-lg) var(--c-navy), var(--clay-inset);
  display: flex;
  align-items: center;
  gap: clamp(10px,2.5vw,14px);
  padding: clamp(10px,2.5vw,14px) clamp(12px,3vw,16px);
  overflow: hidden;
  position: relative;
  transition: transform .15s ease-out, box-shadow .15s ease-out;
}

.event-card:hover {
  transform: var(--clay-press);
  box-shadow: 2px 2px 0 var(--c-navy);
}

/* Colored left accent strip */
.event-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--event-color, var(--c-red));
  border-radius: var(--clay-radius) 0 0 var(--clay-radius);
}

/* ── Date badge ── */
.event-date {
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: var(--clay-radius-sm);
  border: 2px solid #0d0a36;
  box-shadow: 3px 3px 0 #0d0a36;
  padding: clamp(6px,1.5vw,9px) clamp(8px,2vw,11px);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: clamp(50px,13vw,64px);
  line-height: 1;
  gap: 1px;
}

.d-num {
  font-family: var(--f-clay);
  font-size: clamp(26px,7vw,38px);
  font-weight: 700;
  line-height: 1;
  display: block;
}

.d-day {
  font-size: clamp(6px,1.5vw,8px);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .7;
}

.d-month {
  font-family: var(--f-heading);
  font-size: clamp(10px,2.4vw,13px);
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--c-yellow);
}

/* ── Event icon ── */
.event-icon {
  width: clamp(46px,12vw,60px);
  height: clamp(46px,12vw,60px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(22px,5.5vw,30px);
  flex-shrink: 0;
  border: 2.5px solid rgba(0,0,0,.12);
  box-shadow: 3px 3px 0 rgba(0,0,0,.14), inset 0 -2px 0 rgba(0,0,0,.08);
}

/* ── Event body ── */
.event-body { flex: 1; min-width: 0; }

.event-body h2 {
  font-family: var(--f-clay);
  font-size: clamp(15px,4vw,20px);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.1;
  margin-bottom: 2px;
}

.event-body p {
  font-size: clamp(10px,2.4vw,12px);
  color: #666;
  font-style: italic;
  line-height: 1.35;
}

/* ═══════════════════════════════════════
   TICKET PRICE CARD (signature element)
═══════════════════════════════════════ */
.ticket-card {
  background: var(--c-navy);
  border-radius: var(--clay-radius);
  border: var(--clay-border) #0d0a36;
  box-shadow: var(--clay-shadow-lg) #0d0a36, var(--clay-inset);
  overflow: hidden;
  max-width: 600px;
  margin: 0 clamp(16px,4vw,24px);
  display: flex;
}

/* Left stub */
.ticket-stub {
  background: var(--c-red);
  padding: clamp(16px,4vw,22px) clamp(14px,3.5vw,20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  min-width: clamp(90px,24vw,120px);
}

/* Perforation circles */
.ticket-stub::before,
.ticket-stub::after {
  content: '';
  position: absolute;
  right: -12px;
  width: 24px; height: 24px;
  background: linear-gradient(160deg, #FFFBCF 0%, #EFF6FF 100%);
  border-radius: 50%;
  border: var(--clay-border) #0d0a36;
  z-index: 2;
}
.ticket-stub::before { top: -12px; }
.ticket-stub::after  { bottom: -12px; }

/* Dashed tear line */
.ticket-tear {
  width: 3px;
  background: repeating-linear-gradient(
    to bottom,
    #0d0a36 0px,
    #0d0a36 8px,
    transparent 8px,
    transparent 14px
  );
  flex-shrink: 0;
}

/* Right body */
.ticket-body {
  flex: 1;
  padding: clamp(14px,3.5vw,20px) clamp(14px,3.5vw,18px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(6px,1.5vw,10px);
}

.stub-label {
  font-family: var(--f-heading);
  font-size: clamp(8px,2vw,10px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  writing-mode: horizontal-tb;
}

.stub-price {
  font-family: var(--f-clay);
  font-size: clamp(44px,12vw,64px);
  font-weight: 700;
  color: var(--c-yellow);
  line-height: 1;
  text-shadow: 3px 3px 0 rgba(0,0,0,.2);
}

.stub-per {
  font-size: clamp(9px,2.2vw,11px);
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.ticket-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-white);
  font-size: clamp(11px,2.8vw,14px);
  font-weight: 600;
}

.ticket-row-icon {
  width: clamp(28px,7vw,36px);
  height: clamp(28px,7vw,36px);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(13px,3.2vw,16px);
  flex-shrink: 0;
}

.limited-badge {
  display: inline-block;
  background: var(--c-red);
  color: var(--c-white);
  font-family: var(--f-heading);
  font-size: clamp(9px,2.2vw,11px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--clay-radius-pill);
  border: 2px solid #a01515;
  box-shadow: 2px 2px 0 #a01515;
  margin-top: 4px;
  align-self: flex-start;
}

/* ═══════════════════════════════════════
   MASCOTS
═══════════════════════════════════════ */
.mascots-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(16px,4vw,24px) clamp(24px,8vw,60px) 0;
  height: clamp(100px,26vw,155px);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.mascots-row img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  flex-shrink: 0;
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,.10));
}

.mascots-row .mascot-mid {
  transform: scale(.88);
  transform-origin: bottom center;
  position: relative;
  top: 8px;
}

/* ═══════════════════════════════════════
   WHATSAPP BAR
═══════════════════════════════════════ */
.wa-bar {
  background: var(--c-green);
  border-top: 3px solid #0f5120;
  padding: clamp(14px,3.5vw,20px) clamp(16px,4vw,24px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(4px,1vw,8px) clamp(12px,3vw,18px);
  text-align: center;
}

.wa-label {
  font-family: var(--f-heading);
  font-size: clamp(10px,2.4vw,12px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.wa-number {
  font-family: var(--f-clay);
  font-size: clamp(22px,5.5vw,30px);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 rgba(0,0,0,.15);
}
