:root {
  --primary: #2E8B57;
  --primary-light: #3CB371;
  --primary-dark: #1E6B3A;
  --primary-alpha-20: rgba(46, 139, 87, 0.2);
  --primary-alpha-10: rgba(46, 139, 87, 0.1);
  --accent: #F97316;
  --accent-hover: #EA580C;
  --accent-light: #FB923C;
  --pop-red: #EF4444;
  --pop-blue: #3B82F6;
  --pop-yellow: #FACC15;
  --pop-green: #22C55E;
  --background: #FFFDF7;
  --background-alt: #FFF8EE;
  --background-raised: #FFFFFF;
  --color: #1E293B;
  --color-muted: #4B5563;
  --border-color: rgba(46, 139, 87, 0.15);
  --hero-bg: #2E8B57;
  --hero-text: #FFFFFF;
  --hero-muted: #FFFFFF;
  --max-width: 1200px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--background);
  color: var(--color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fredoka", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--primary-light);
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

p {
  margin-bottom: 16px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 683px) {
  .section-inner {
    padding: 0 20px;
  }
}

.section-heading {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 12px;
  color: var(--color);
}
@media (max-width: 683px) {
  .section-heading {
    font-size: 1.6rem;
  }
}

.section-subheading {
  text-align: center;
  color: var(--color-muted);
  font-size: 1.1rem;
  margin: 0 0 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 683px) {
  .section-subheading {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--background);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
}
@media (max-width: 683px) {
  .navbar__inner {
    padding: 0 16px;
    gap: 8px;
  }
}
.navbar__logo {
  font-size: 1.3rem;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}
.navbar__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 8px;
}
.navbar__logo .logo-alligator {
  color: var(--primary);
}
.navbar__logo .logo-party {
  color: var(--accent);
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  margin-right: auto;
  padding: 0;
  padding-left: 32px;
}
@media (max-width: 899px) {
  .navbar__links {
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
  }
}
.navbar__links li a {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 0;
  transition: color 0.2s ease;
}
@media (max-width: 899px) {
  .navbar__links li a {
    padding: 12px 16px;
    display: block;
  }
}
.navbar__links li a:hover {
  color: var(--primary);
}
.navbar__toggle-input {
  display: none;
}
.navbar__hamburger {
  display: none;
}
@media (max-width: 899px) {
  .navbar__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 12px 10px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.2s ease;
    margin-left: auto;
    margin-right: 8px;
    flex-shrink: 0;
  }
  .navbar__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-muted);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .navbar__hamburger:hover {
    border-color: var(--primary);
  }
}
.navbar__toggle-input:checked ~ .navbar__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle-input:checked ~ .navbar__hamburger span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle-input:checked ~ .navbar__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.navbar__menu {
  display: contents;
}
@media (max-width: 899px) {
  .navbar__menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--background);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    z-index: 99;
  }
}
@media (max-width: 899px) {
  .navbar__toggle-input:checked ~ .navbar__menu {
    display: flex;
  }
}

.main {
  flex: 1;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px);
  padding: 80px 40px;
  overflow: hidden;
  background: var(--hero-bg);
}
@media (max-width: 899px) {
  .hero {
    padding: 60px 40px;
  }
}
@media (max-width: 683px) {
  .hero {
    padding: 40px 20px;
    min-height: auto;
  }
}
.hero__confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 899px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}
.hero__text {
  flex: 1;
}
.hero__title {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--hero-text);
}
.hero__title br {
  display: block;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--hero-muted);
  margin: 20px 0 0;
  font-weight: 400;
  max-width: 500px;
  line-height: 1.6;
}
@media (max-width: 899px) {
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero__cta {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}
.hero__cta:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}
.hero__image {
  flex-shrink: 0;
}
@media (max-width: 899px) {
  .hero__image {
    max-width: 320px;
  }
}
.hero__image-img {
  width: 380px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
@media (max-width: 899px) {
  .hero__image-img {
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 683px) {
  .hero__image-img {
    max-width: 260px;
  }
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  opacity: 0;
  animation: confetti-fall 5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .confetti {
    animation: none;
    display: none;
  }
}

@keyframes confetti-fall {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate(0deg);
  }
  8% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg);
  }
}
.confetti--1 {
  background: var(--pop-red);
  left: 5%;
  animation-delay: 0s;
  animation-duration: 4.2s;
  width: 8px;
  height: 8px;
}

.confetti--2 {
  background: var(--pop-blue);
  left: 15%;
  animation-delay: 0.7s;
  animation-duration: 5s;
  width: 12px;
  height: 6px;
  border-radius: 1px;
}

.confetti--3 {
  background: var(--pop-yellow);
  left: 25%;
  animation-delay: 1.2s;
  animation-duration: 3.8s;
  width: 6px;
  height: 12px;
}

.confetti--4 {
  background: var(--pop-green);
  left: 35%;
  animation-delay: 0.3s;
  animation-duration: 4.5s;
}

.confetti--5 {
  background: var(--accent);
  left: 45%;
  animation-delay: 1.8s;
  animation-duration: 3.5s;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.confetti--6 {
  background: var(--pop-red);
  left: 55%;
  animation-delay: 0.5s;
  animation-duration: 4.8s;
  width: 12px;
  height: 6px;
}

.confetti--7 {
  background: var(--pop-blue);
  left: 65%;
  animation-delay: 1.5s;
  animation-duration: 4s;
  width: 6px;
  height: 10px;
}

.confetti--8 {
  background: var(--pop-yellow);
  left: 75%;
  animation-delay: 0.9s;
  animation-duration: 5.2s;
  border-radius: 50%;
}

.confetti--9 {
  background: var(--pop-green);
  left: 85%;
  animation-delay: 2s;
  animation-duration: 3.6s;
  width: 8px;
  height: 8px;
}

.confetti--10 {
  background: var(--accent);
  left: 92%;
  animation-delay: 0.2s;
  animation-duration: 4.3s;
  width: 7px;
  height: 12px;
}

.confetti--11 {
  background: var(--pop-red);
  left: 10%;
  animation-delay: 2.5s;
  animation-duration: 4.7s;
  width: 12px;
  height: 6px;
  border-radius: 1px;
}

.confetti--12 {
  background: var(--pop-blue);
  left: 50%;
  animation-delay: 1s;
  animation-duration: 3.9s;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.confetti--13 {
  background: var(--pop-yellow);
  left: 8%;
  animation-delay: 1.6s;
  animation-duration: 4.1s;
  width: 7px;
  height: 11px;
}

.confetti--14 {
  background: var(--pop-red);
  left: 30%;
  animation-delay: 2.3s;
  animation-duration: 4.6s;
  width: 11px;
  height: 7px;
  border-radius: 1px;
}

.confetti--15 {
  background: var(--pop-green);
  left: 60%;
  animation-delay: 0.8s;
  animation-duration: 3.7s;
  border-radius: 50%;
  width: 9px;
  height: 9px;
}

.confetti--16 {
  background: var(--accent);
  left: 78%;
  animation-delay: 1.3s;
  animation-duration: 4.4s;
  width: 6px;
  height: 12px;
}

.confetti--17 {
  background: var(--pop-blue);
  left: 42%;
  animation-delay: 2.1s;
  animation-duration: 5s;
  width: 10px;
  height: 6px;
  border-radius: 1px;
}

.confetti--18 {
  background: var(--pop-yellow);
  left: 88%;
  animation-delay: 0.4s;
  animation-duration: 3.4s;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.equipment {
  padding: 80px 0;
  background: var(--background);
}
@media (max-width: 683px) {
  .equipment {
    padding: 48px 0;
  }
}
.equipment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 899px) {
  .equipment__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 683px) {
  .equipment__grid {
    grid-template-columns: 1fr;
  }
}

.equipment-card {
  padding: 32px;
  background: var(--background-raised);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.equipment-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.equipment-card:hover .equipment-card__icon {
  animation: bounce 0.4s ease;
}
.equipment-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-alpha-10);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--primary);
}
.equipment-card__icon svg {
  width: 26px;
  height: 26px;
}
.equipment-card__name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color);
  margin: 0 0 8px;
}
.equipment-card__desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0 0 16px;
  line-height: 1.6;
}
.equipment-card__price {
  display: inline-block;
  background: #C2410C;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .equipment-card:hover .equipment-card__icon {
    animation: none;
  }
}
.steps {
  padding: 80px 0;
  background: var(--background-alt);
}
@media (max-width: 683px) {
  .steps {
    padding: 48px 0;
  }
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 683px) {
  .steps__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.step {
  text-align: center;
}
.step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fredoka", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(46, 139, 87, 0.25);
}
.step__title {
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--color);
}
.step__desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

.about {
  padding: 80px 0;
  background: var(--background);
}
@media (max-width: 683px) {
  .about {
    padding: 48px 0;
  }
}
.about__avatar {
  text-align: center;
  margin-bottom: 24px;
}
.about__avatar-img {
  width: 180px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.about__content {
  max-width: 640px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-muted);
}
.about__content p:last-child {
  margin-bottom: 0;
}

.contact {
  padding: 80px 0;
  background: var(--primary);
  text-align: center;
}
@media (max-width: 683px) {
  .contact {
    padding: 48px 0;
  }
}
.contact__heading {
  font-size: 2rem;
  color: var(--hero-text);
  margin: 0 0 12px;
}
@media (max-width: 683px) {
  .contact__heading {
    font-size: 1.6rem;
  }
}
.contact__subheading {
  color: var(--hero-muted);
  font-size: 1.1rem;
  margin: 0 0 48px;
}
@media (max-width: 683px) {
  .contact__subheading {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}
.contact__methods {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 683px) {
  .contact__methods {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.contact__method {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--hero-text);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.contact__method svg {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
  flex-shrink: 0;
}
.contact__method:hover {
  color: #FDE68A;
}

.extra-content {
  padding: 60px 0;
  background: var(--background);
}
.extra-content .section-inner {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media (max-width: 683px) {
  .page-content {
    padding: 40px 20px;
  }
}
.page-content__title {
  color: var(--primary);
  margin: 0 0 24px;
}
.page-content__body {
  font-size: 1.1rem;
  line-height: 1.7;
}

.footer {
  border-top: 1px solid var(--border-color);
  background: #F8F6F0;
  color: var(--color-muted);
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 40px;
}
@media (max-width: 683px) {
  .footer__inner {
    padding: 24px 20px;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 683px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer__contact {
  font-size: 0.875rem;
}
.footer__contact a {
  color: var(--color-muted);
  padding: 8px 0;
  display: inline-block;
}
.footer__contact a:hover {
  color: var(--primary);
}
@media (max-width: 683px) {
  .footer__contact a {
    padding: 8px 4px;
  }
}
.footer__sep {
  margin: 0 8px;
}
.footer .copyright {
  font-size: 0.875rem;
}
.footer .copyright a {
  color: var(--color-muted);
  padding: 8px 0;
  display: inline-block;
}
.footer .copyright a:hover {
  color: var(--primary);
}
