/* ===========================================================
   SCOUT REGAL EAGLE — STYLESHEET  (v2 — brighter & bigger)
   Palette:  Sky #35B6F2 / Sky Deep #1E8FD6 / Sky Top #7FD4FF
             Navy #16357A / Royal #2E5BD6
             Red #EE3B34 / Coral pop #FF6B54
             Maize #FFC01E / Maize Deep #F2A100
             Cream #FFFBF2 / Grape #7C4DD6 / Ink #2A2140
   Type:     Baloo 2 (display) / Fredoka (subhead) / Nunito (body)
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Fredoka:wght@500;600;700&family=Nunito:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root{
  --sky-top: #7FD4FF;
  --sky: #35B6F2;
  --sky-deep: #1E8FD6;
  --navy: #16357A;
  --royal: #2E5BD6;
  --red: #EE3B34;
  --coral: #FF6B54;
  --maize: #FFC01E;
  --maize-deep: #F2A100;
  --cream: #FFFBF2;
  --cream-2: #FFF1D6;
  --grape: #7C4DD6;
  --ink: #2A2140;
  --white: #FFFFFF;

  --font-display: 'Baloo 2', 'Trebuchet MS', sans-serif;
  --font-sub: 'Fredoka', 'Trebuchet MS', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;

  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 12px;

  --shadow-soft: 0 22px 48px rgba(22,53,122,0.22);
  --shadow-card: 0 14px 30px rgba(42,33,64,0.16);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

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

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

h1, h2, h3, h4{
  font-family: var(--font-display);
  margin: 0 0 0.4em 0;
  line-height: 1.08;
  color: var(--navy);
}
p{ line-height: 1.7; margin: 0 0 1em 0; font-size: 1.06rem; }

.container{
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  padding: 15px 34px;
  border-radius: 999px;
  text-decoration: none;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: var(--maize);
  color: var(--navy);
  box-shadow: 0 8px 0 var(--maize-deep);
}
.btn-primary:hover{ box-shadow: 0 10px 0 var(--maize-deep); }
.btn-primary:active{ box-shadow: 0 4px 0 var(--maize-deep); }

.btn-outline{
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover{ background: rgba(255,255,255,0.28); }

.btn-red{
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 0 #b8271f;
}
.btn-red:hover{ box-shadow: 0 10px 0 #b8271f; }
.btn-red:active{ box-shadow: 0 4px 0 #b8271f; }

.btn-grape{
  background: var(--grape);
  color: var(--white);
  box-shadow: 0 8px 0 #5a34a3;
}
.btn-grape:hover{ box-shadow: 0 10px 0 #5a34a3; }

.eyebrow{
  display: inline-block;
  font-family: var(--font-sub);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.86rem;
  color: var(--red);
  margin-bottom: 10px;
}
.eyebrow.on-dark{ color: var(--maize); }

/* ===================== STAR ACCENTS ===================== */
.star{
  position: absolute;
  color: var(--maize);
  pointer-events: none;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.12));
}
.star svg{ width: 100%; height: 100%; display: block; }
.star.red{ color: var(--red); }
.star.white{ color: var(--white); }
.star.grape{ color: var(--grape); }
.star.coral{ color: var(--coral); }
.star.royal{ color: var(--royal); }
@keyframes twinkle{
  0%,100%{ transform: scale(1) rotate(0deg); opacity: 0.9; }
  50%{ transform: scale(1.15) rotate(8deg); opacity: 1; }
}
.star.tw{ animation: twinkle 4s ease-in-out infinite; }
.star.tw2{ animation: twinkle 5.5s ease-in-out infinite; }
.star.tw3{ animation: twinkle 6.5s ease-in-out infinite; }

/* ===================== HEADER / NAV ===================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--navy), var(--royal));
  border-bottom: 5px solid var(--maize);
}
.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1220px;
  margin: 0 auto;
  gap: 16px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
}
.brand-mark{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--maize);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 0 var(--maize-deep);
}
.brand-mark svg{ width: 38px; height: 38px; }
.brand-text{
  display: flex;
  flex-direction: column;
  color: var(--white);
}
.brand-name{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 0.98;
  text-shadow: 0 2px 0 rgba(0,0,0,0.18);
  white-space: nowrap;
}
.brand-name .reg{ font-size: 0.55em; vertical-align: super; }
.brand-tag{
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--maize);
  text-transform: uppercase;
  margin-top: 3px;
  text-shadow: none;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-sub);
  font-weight: 600;
}
.nav-links a{
  text-decoration: none;
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.15s ease;
  font-size: 1rem;
}
.nav-links a:hover{ background: rgba(255,255,255,0.16); }
.nav-links a.nav-cta{
  background: var(--maize);
  color: var(--navy);
  box-shadow: 0 4px 0 var(--maize-deep);
}
.nav-links a.nav-cta:hover{ background: #ffcf4d; }

.nav-toggle{
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.9rem;
  cursor: pointer;
  line-height: 1;
}

/* ===================== HERO ===================== */
.hero{
  position: relative;
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky) 55%, var(--sky-deep) 100%);
  overflow: hidden;
  padding: 76px 0 130px;
}
.hero-clouds{ position: absolute; inset: 0; pointer-events: none; }
.cloud{
  position: absolute;
  background: #fff;
  border-radius: 100px;
  filter: drop-shadow(0 10px 16px rgba(30,143,214,0.25));
}
.cloud::before, .cloud::after{
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
}
.cloud1{ width: 200px; height: 62px; top: 60px; left: 4%; }
.cloud1::before{ width: 90px; height: 90px; top: -42px; left: 26px; }
.cloud1::after{ width: 118px; height: 118px; top: -60px; left: 78px; }
.cloud2{ width: 250px; height: 74px; top: 40px; right: 5%; }
.cloud2::before{ width: 104px; height: 104px; top: -50px; left: 34px; }
.cloud2::after{ width: 140px; height: 140px; top: -74px; left: 96px; }
.cloud3{ width: 160px; height: 52px; bottom: 90px; left: 2%; opacity: 0.96; }
.cloud3::before{ width: 74px; height: 74px; top: -34px; left: 22px; }
.cloud3::after{ width: 96px; height: 96px; top: -48px; left: 64px; }
.cloud4{ width: 190px; height: 60px; bottom: 120px; right: 3%; opacity: 0.96; }
.cloud4::before{ width: 84px; height: 84px; top: -40px; left: 26px; }
.cloud4::after{ width: 110px; height: 110px; top: -56px; left: 74px; }

.hero-inner{
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.hero-kicker{
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--maize);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 5px 0 var(--maize-deep);
  transform: rotate(-1.5deg);
  text-shadow: none;
}
.hero-copy h1{
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4rem);
  text-shadow: 0 4px 0 rgba(22,53,122,0.32);
}
.hero-copy h1 .h1-meet{
  display: block;
  color: var(--maize);
}
.hero-copy h1 .h1-name{
  display: block;
}
.hero-copy p{
  color: #F3FBFF;
  font-size: 1.2rem;
  max-width: 46ch;
  text-shadow: 0 1px 2px rgba(30,143,214,0.3);
}
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.hero-photo{ position: relative; }
.hero-photo-frame{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 8px solid var(--white);
  transform: rotate(1.6deg);
}
.hero-photo-frame img{ width: 100%; height: auto; }
.hero-photo .badge{
  position: absolute;
  top: -26px;
  left: -26px;
  width: 96px;
  height: 96px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1;
  transform: rotate(-12deg);
  box-shadow: 0 8px 18px rgba(238,59,52,0.4);
  border: 4px solid #fff;
  z-index: 4;
}

.wave-divider{ position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 2; }
.wave-divider svg{ width: 100%; height: 70px; display: block; }

/* ===================== TRAIL ===================== */
.trail-wrap{ position: relative; }
.trail-line{
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 8px;
  transform: translateX(-50%);
  background-image: repeating-linear-gradient(
    to bottom, var(--maize) 0 16px, transparent 16px 30px);
  z-index: 0;
  opacity: 0.6;
}
.trail-stop{
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--white);
  border: 5px solid var(--maize);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(42,33,64,0.16);
}
.trail-stop svg{ width: 26px; height: 26px; color: var(--red); }

/* ===================== ABOUT ===================== */
.about{ padding: 96px 0 76px; position: relative; }
.about-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-art{ position: relative; display: flex; justify-content: center; }
.about-art img{
  max-width: 460px;
  width: 100%;
  filter: drop-shadow(0 24px 34px rgba(42,33,64,0.28));
}
.about-art .halo{
  position: absolute;
  width: 380px;
  height: 380px;
  max-width: 90vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,192,30,0.28) 0%, rgba(255,192,30,0) 70%);
  z-index: -1;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.about-copy h2{ font-size: clamp(2rem, 3.4vw, 2.8rem); }
.about-feature{
  margin: 26px 0 4px;
  padding: 22px 26px;
  background: var(--cream-2);
  border-left: 6px solid var(--grape);
  border-radius: var(--radius-sm);
}
.about-feature h3{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--grape);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.about-feature p{ margin-bottom: 0; }
.about-cta{ margin-top: 26px; }

/* ===================== SERVICES ===================== */
.services{ padding: 44px 0 96px; position: relative; }
.section-head{ text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head h2{ font-size: clamp(2rem, 3.4vw, 2.8rem); }
.section-head p{ color: #5a4a58; font-size: 1.1rem; }

.card-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.event-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  border: 4px solid var(--white);
}
.event-card:nth-child(1){ border-color: var(--red); transform: rotate(-1.4deg); }
.event-card:nth-child(2){ border-color: var(--royal); transform: rotate(1.2deg); }
.event-card:nth-child(3){ border-color: var(--grape); transform: rotate(-1deg); }
.event-card:nth-child(4){ border-color: var(--maize); transform: rotate(1.4deg); }
.event-card:hover{
  transform: translateY(-8px) rotate(0deg);
  box-shadow: 0 24px 40px rgba(42,33,64,0.24);
}
.event-card-photo{ aspect-ratio: 4/3; overflow: hidden; }
.event-card-photo img{ width: 100%; height: 100%; object-fit: cover; }
.event-card-title{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  padding: 18px 12px 22px;
  font-size: 1.24rem;
  position: relative;
}
.event-card-title .badge-star{
  position: absolute;
  top: -20px;
  right: 16px;
  width: 38px;
  height: 38px;
}
.event-card:nth-child(1) .badge-star{ color: var(--red); }
.event-card:nth-child(2) .badge-star{ color: var(--royal); }
.event-card:nth-child(3) .badge-star{ color: var(--grape); }
.event-card:nth-child(4) .badge-star{ color: var(--maize-deep); }

/* ===================== WATCH ===================== */
.watch{
  background: linear-gradient(180deg, var(--royal) 0%, var(--navy) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.watch h2{ color: var(--white); font-size: clamp(2rem,3.4vw,2.8rem); }
.watch-btn-row{ display: flex; justify-content: center; margin-top: 26px; }
.play-icon{ width: 24px; height: 24px; }

/* ===================== SHOP ===================== */
.shop{ padding: 96px 0; position: relative; }
.shop-inner{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-card);
  border: 5px solid var(--maize);
  position: relative;
}
.shop-art{ display: flex; justify-content: center; }
.shop-art img{
  max-width: 340px;
  width: 100%;
  filter: drop-shadow(0 18px 26px rgba(42,33,64,0.24));
}
.shop-copy h2{ font-size: clamp(1.9rem, 3vw, 2.5rem); }

/* ===================== FOOTER ===================== */
.site-footer{
  background: linear-gradient(90deg, var(--navy), var(--royal));
  color: #E6EEFF;
  padding: 58px 0 32px;
  position: relative;
  border-top: 5px solid var(--maize);
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 42px;
  margin-bottom: 36px;
}
.footer-brand{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-col h4{
  color: var(--maize);
  font-family: var(--font-sub);
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.footer-col ul{ list-style: none; margin: 0; padding: 0; }
.footer-col li{ margin-bottom: 10px; }
.footer-col a{
  color: #E6EEFF;
  text-decoration: none;
  font-family: var(--font-sub);
  font-weight: 500;
}
.footer-col a:hover{ color: var(--maize); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 22px;
  text-align: center;
  font-family: var(--font-sub);
  font-size: 0.84rem;
  color: #C6D3EE;
  line-height: 1.7;
}

/* ===================== CONTACT PAGE ===================== */
.page-hero{
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky) 55%, var(--sky-deep) 100%);
  padding: 66px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1{ color: var(--white); font-size: clamp(2.2rem, 4vw, 3.2rem); text-shadow: 0 4px 0 rgba(22,53,122,0.3); }
.page-hero p{ color: #F3FBFF; max-width: 52ch; margin: 0 auto; font-size: 1.15rem; }

.contact-wrap{ padding: 0 0 96px; position: relative; }
.contact-card{
  max-width: 820px;
  margin: -56px auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 12px;
  position: relative;
  z-index: 3;
  border: 5px solid var(--maize);
}
.contact-card iframe{ border-radius: var(--radius-md); width: 100%; display: block; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 940px){
  /* Decorative stars need wide side-gutters that don't exist once the layout
     stacks; hide them on small screens so they never sit on text or images. */
  .hero .star, #watch .star{ display: none; }

  .nav-toggle{ display: block; }
  .nav-links{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 20px;
    display: none;
    border-bottom: 5px solid var(--maize);
  }
  .nav-links.open{ display: flex; }
  .nav-links a{ text-align: center; }

  .hero-inner{ grid-template-columns: 1fr; text-align: center; }
  .hero-copy p{ margin-left: auto; margin-right: auto; }
  .hero-actions{ justify-content: center; }
  .hero-photo-frame{ transform: none; max-width: 520px; margin: 0 auto; }
  .hero-photo .badge{ left: 10px; }

  .about-inner{ grid-template-columns: 1fr; text-align: center; }
  .about-art{ order: -1; }

  .card-grid{ grid-template-columns: repeat(2, 1fr); }

  .shop-inner{ grid-template-columns: 1fr; padding: 40px; text-align: center; }

  .footer-inner{ grid-template-columns: 1fr; text-align: center; gap: 28px; }
}

@media (max-width: 560px){
  .brand-name{ font-size: 1.3rem; white-space: normal; }
  .brand-mark{ width: 48px; height: 48px; }
  .brand-mark svg{ width: 30px; height: 30px; }
  .card-grid{ grid-template-columns: 1fr; }
  .contact-card{ margin-top: -34px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .event-card, .btn{ transition: none; }
  .star.tw, .star.tw2, .star.tw3{ animation: none; }
}
