/* ============================================================
   PINPOP STUDIO — STYLES
   ============================================================
   Organized by section. Search for "== SECTION NAME ==" to
   jump to a part of the page.
   ============================================================ */

:root{
  /* ---- Brand palette (pulled from the logo) ---- */
  --pink:        #EC2C6E;
  --pink-dark:   #C71856;
  --teal:        #14B8AA;
  --teal-dark:   #0E8F84;
  --yellow:      #FFC93C;
  --yellow-dark: #E8A800;
  --orange:      #F5821F;
  --orange-dark: #D96A0C;
  --purple:      #8B4FD1;
  --purple-dark: #6E33B3;
  --navy:        #101E3C;
  --navy-soft:   #1B2C52;
  --cream:       #FFFCF6;
  --white:       #FFFFFF;

  /* ---- Type ---- */
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  /* ---- Shape language ---- */
  --radius-sticker: 28px;
  --radius-pill: 999px;
  --shadow-pop: 0 6px 0 rgba(16,30,60,0.9);
  --shadow-pop-sm: 0 4px 0 rgba(16,30,60,0.9);
  --shadow-soft: 0 12px 30px rgba(16,30,60,0.12);
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.05;
}

p{ margin: 0; }

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section{ position: relative; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-dark);
  background: #FFE3EE;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-pop-sm);
}

.section-title{
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--navy);
  margin-top: 14px;
}

.section-title .highlight{ color: var(--pink); }
.section-sub{
  font-size: 1.1rem;
  color: #45507A;
  max-width: 640px;
  margin-top: 14px;
  font-weight: 600;
}

.section-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
  html{ scroll-behavior: auto; }
}

/* ============================================================
   == BUTTONS (styled like real pin-back buttons) ==
   ============================================================ */

.btn{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border: 3px solid var(--navy);
  border-radius: var(--radius-pill);
  padding: 16px 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: var(--shadow-pop);
  position: relative;
}

.btn:active,
.btn.is-pressed{
  transform: translateY(6px);
  box-shadow: 0 0 0 rgba(16,30,60,0.9);
}

.btn:focus-visible{
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

.btn-primary{ background: var(--pink); color: var(--white); }
.btn-primary:hover{ background: var(--pink-dark); }

.btn-secondary{ background: var(--yellow); color: var(--navy); }
.btn-secondary:hover{ background: var(--yellow-dark); }

.btn-teal{ background: var(--teal); color: var(--white); }
.btn-teal:hover{ background: var(--teal-dark); }

.btn-outline{
  background: var(--white);
  color: var(--navy);
}
.btn-outline:hover{ background: #FFF3D6; }

.btn-block{ width: 100%; justify-content: center; }

.btn .pin-dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 2px solid var(--navy);
}

/* ============================================================
   == NAV ==
   ============================================================ */

.nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,252,246,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--navy);
}

.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.nav-logo{
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img{ height: 76px; width: auto; }

.nav-links{
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
}

.nav-links a{
  position: relative;
  padding: 6px 2px;
}

.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  transition: right 0.2s ease;
}

.nav-links a:hover::after{ right: 0; }

.nav-cta{ display: none; }
@media (min-width: 900px){ .nav-cta{ display: inline-flex; } }

.nav-toggle{
  display: inline-flex;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 12px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (min-width: 900px){
  .nav-toggle{ display: none; }
}

@media (max-width: 899px){
  .nav-links{
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    border-bottom: 3px solid var(--navy);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
    gap: 18px;
  }
  .nav-links.is-open{ transform: translateY(0); }
}

/* ============================================================
   == HERO ==
   ============================================================ */

.hero{
  padding: 64px 0 100px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,201,60,0.35), transparent 40%),
    radial-gradient(circle at 88% 78%, rgba(139,79,209,0.22), transparent 45%),
    var(--cream);
  overflow: hidden;
}

.hero-inner{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

@media (max-width: 940px){
  .hero-inner{ grid-template-columns: 1fr; text-align: center; }
  .hero-actions{ justify-content: center; }
  .hero-logo-wrap{ margin: 0 auto; }
}

.hero-headline{
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  margin-top: 18px;
  color: var(--navy);
}

.hero-headline .pop{ color: var(--pink); }
.hero-headline .pop2{ color: var(--teal); }

.hero-sub{
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #3B4670;
  max-width: 520px;
}

.hero-actions{
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-logo-wrap{
  position: relative;
  width: 100%;
  max-width: 460px;
  justify-self: center;
}

.hero-logo-card{
  background: var(--white);
  border: 4px solid var(--navy);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow-pop);
  transform: rotate(-2deg);
  animation: floaty 5s ease-in-out infinite;
}

.floating-shape{
  position: absolute;
  border-radius: 50%;
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-pop-sm);
  animation: floaty 6s ease-in-out infinite;
}

.shape-1{ width: 58px; height: 58px; background: var(--yellow); top: -18px; left: -22px; animation-delay: 0.2s; }
.shape-2{ width: 40px; height: 40px; background: var(--teal); bottom: 10px; right: -18px; animation-delay: 1.1s; }
.shape-3{ width: 30px; height: 30px; background: var(--orange); top: 40%; right: -30px; animation-delay: 2s; }
.shape-4{ width: 26px; height: 26px; background: var(--pink); bottom: -14px; left: 30%; animation-delay: 0.7s; }

@keyframes floaty{
  0%, 100%{ transform: translateY(0) rotate(-2deg); }
  50%{ transform: translateY(-14px) rotate(1deg); }
}

.hero-stats{
  margin-top: 40px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

@media (max-width: 940px){ .hero-stats{ justify-content: center; } }

.hero-stat b{
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--purple);
}
.hero-stat span{ font-weight: 700; color: #45507A; font-size: 0.92rem; }

/* ============================================================
   == HOW IT WORKS ==
   ============================================================ */

.how{ padding: 100px 0; background: var(--white); }

.card-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 860px){ .card-row{ grid-template-columns: 1fr; } }

.how-card{
  background: var(--cream);
  border: 3px solid var(--navy);
  border-radius: var(--radius-sticker);
  padding: 32px 28px;
  box-shadow: var(--shadow-pop);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.how-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 0 rgba(16,30,60,0.9);
}

.how-badge{
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  border: 3px solid var(--navy);
  margin-bottom: 18px;
  position: relative;
}

.how-badge::after{
  content: "";
  position: absolute;
  width: 26px; height: 3px;
  background: rgba(16,30,60,0.5);
  border-radius: 2px;
}

.how-card:nth-child(1) .how-badge{ background: var(--pink); }
.how-card:nth-child(2) .how-badge{ background: var(--teal); }
.how-card:nth-child(3) .how-badge{ background: var(--orange); }

.how-card h3{ font-size: 1.4rem; margin-bottom: 10px; }
.how-card p{ color: #45507A; font-weight: 600; line-height: 1.55; }

/* ============================================================
   == EVENT / BOOK US ==
   ============================================================ */

.events{
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
}

.events .section-sub{ color: #C7CFE8; }

.events-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 860px){ .events-grid{ grid-template-columns: 1fr; } }

.event-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.event-tag{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  transition: background 0.15s ease, transform 0.15s ease, border-color .15s ease;
}

.event-tag:hover{
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-2px);
}

.events-panel{
  background: var(--navy-soft);
  border: 3px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sticker);
  padding: 36px;
}

.events-panel h3{ font-size: 1.5rem; color: var(--yellow); }
.events-panel p{ margin-top: 14px; color: #C7CFE8; font-weight: 600; line-height: 1.6; }
.events-panel .btn{ margin-top: 24px; }

/* ============================================================
   == EXPERIENCES / PACKAGES ==
   ============================================================ */

.experiences{ padding: 100px 0; background: var(--cream); }

.pkg-card{
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: var(--radius-sticker);
  padding: 30px;
  box-shadow: var(--shadow-pop);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.pkg-card .pkg-tag{
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--navy);
}

.pkg-card:nth-child(1) .pkg-tag{ background: #FFE3EE; color: var(--pink-dark); }
.pkg-card:nth-child(2) .pkg-tag{ background: #DEFBF6; color: var(--teal-dark); }
.pkg-card:nth-child(3) .pkg-tag{ background: #F3E7FF; color: var(--purple-dark); }

.pkg-card h3{ font-size: 1.5rem; margin-top: 6px; }
.pkg-card p{ color: #45507A; font-weight: 600; line-height: 1.55; }
.pkg-card .pkg-best{ font-size: 0.9rem; color: var(--navy); font-weight: 800; }
.pkg-card .pkg-price{
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--font-display);
  color: var(--pink-dark);
  font-size: 1.05rem;
}

/* ============================================================
   == PRICING TABLE ==
   ============================================================ */

.pricing{ padding: 100px 0; background: var(--white); }

.pricing-table-wrap{
  border: 3px solid var(--navy);
  border-radius: var(--radius-sticker);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
}

table.pricing-table{
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.pricing-table thead th{
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
}

.pricing-table tbody td{
  padding: 16px 20px;
  border-top: 2px solid #EFE9DA;
  font-weight: 700;
  color: var(--navy);
}

.pricing-table tbody tr:nth-child(odd){ background: var(--cream); }
.pricing-table tbody tr:hover{ background: #FFF3D6; }

.pricing-table td.qty{ font-family: var(--font-display); color: var(--pink-dark); }

.addons-grid{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.addon-card{
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 18px;
  padding: 18px 20px;
}

.addon-card .addon-name{ font-weight: 800; font-size: 0.95rem; }
.addon-card .addon-value{ color: var(--pink-dark); font-family: var(--font-display); margin-top: 6px; }

.pricing-notes{
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-notes p{
  font-size: 0.92rem;
  color: #5A6489;
  font-weight: 700;
  padding-left: 18px;
  position: relative;
}
.pricing-notes p::before{
  content: "•";
  position: absolute;
  left: 0;
  color: var(--pink);
}

/* ============================================================
   == FORMS (custom order + event booking) ==
   ============================================================ */

.forms-section{ padding: 100px 0; background: var(--cream); }

.forms-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 940px){ .forms-grid{ grid-template-columns: 1fr; } }

.form-card{
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: var(--radius-sticker);
  padding: 34px;
  box-shadow: var(--shadow-pop);
}

.form-card h3{ font-size: 1.5rem; }
.form-card > p{ color: #45507A; font-weight: 600; margin-top: 8px; margin-bottom: 24px; }

.field{ margin-bottom: 18px; }

.field label{
  display: block;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field select,
.field textarea{
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #D9D2C0;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--cream);
  color: var(--navy);
  transition: border-color 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--pink);
}

.field textarea{ resize: vertical; min-height: 90px; }

.field-file{
  border: 2px dashed #C9C0A8;
  border-radius: 14px;
  padding: 16px;
  background: var(--cream);
  font-size: 0.88rem;
  color: #5A6489;
  font-weight: 700;
}

.radio-group{ display: flex; flex-wrap: wrap; gap: 10px; }

.radio-pill{
  border: 2px solid #D9D2C0;
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  background: var(--cream);
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.radio-pill input{ accent-color: var(--pink); }
.radio-pill:has(input:checked){
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.form-success{
  display: none;
  margin-top: 18px;
  background: #E4FBF3;
  border: 2px solid var(--teal-dark);
  color: var(--teal-dark);
  font-weight: 800;
  padding: 14px 18px;
  border-radius: 14px;
}

.form-success.is-visible{ display: block; }

/* ============================================================
   == GALLERY ==
   ============================================================ */

.gallery{ padding: 100px 0; background: var(--white); }

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-card{
  border: 3px solid var(--navy);
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-pop-sm);
  transition: transform 0.18s ease;
}

.gallery-card:hover{ transform: rotate(-1deg) translateY(-4px); }

.gallery-thumb{
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
}

.gallery-label{
  padding: 12px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-top: 3px solid var(--navy);
  background: var(--white);
}

/* ============================================================
   == ABOUT ==
   ============================================================ */

.about{
  padding: 100px 0;
  background: linear-gradient(135deg, #FFF3D6 0%, var(--cream) 60%);
}

.about-inner{
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px){ .about-inner{ grid-template-columns: 1fr; text-align: center; } }

.about-logo{
  background: var(--white);
  border: 4px solid var(--navy);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow-pop);
  transform: rotate(2deg);
  justify-self: center;
  max-width: 260px;
}

.about p{
  margin-top: 18px;
  font-weight: 700;
  color: #3B4670;
  line-height: 1.7;
  font-size: 1.05rem;
}

.about-badge{
  display: inline-flex;
  gap: 10px;
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--white);
  border: 2px solid var(--navy);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   == FAQ ==
   ============================================================ */

.faq{ padding: 100px 0; background: var(--cream); }

.faq-list{ max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item{
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 20px;
  overflow: hidden;
}

.faq-q{
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q .faq-icon{
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-icon{ transform: rotate(45deg); }

.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-a-inner{
  padding: 0 24px 20px;
  color: #45507A;
  font-weight: 600;
  line-height: 1.6;
}

/* ============================================================
   == FOOTER ==
   ============================================================ */

.site-footer{
  background: var(--navy);
  color: #C7CFE8;
  padding: 64px 0 28px;
}

.footer-top{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 760px){ .footer-top{ grid-template-columns: 1fr; text-align: center; } }

.footer-logo{ height: 48px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }

.footer-brand p{ margin-top: 14px; font-weight: 600; max-width: 280px; }
@media (max-width: 760px){ .footer-brand p{ margin: 14px auto 0; } }

.footer-col h4{
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a{ font-weight: 600; transition: color 0.15s ease; }
.footer-col a:hover{ color: var(--yellow); }

.footer-social{ display: flex; gap: 12px; margin-top: 6px; }
@media (max-width: 760px){ .footer-social{ justify-content: center; } }

.footer-social a{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.footer-social a:hover{ background: var(--pink); border-color: var(--pink); }

.footer-bottom{
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================================
   == UTILITIES ==
   ============================================================ */

.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

.divider-scallop{
  height: 40px;
  background-image: radial-gradient(circle at 20px 0, transparent 20px, var(--white) 21px);
  background-size: 40px 40px;
  background-repeat: repeat-x;
}
