* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cyan-green: #27B6AE;
  --magenta: #F805EB;
  --purple: #B100CD;
  --light-blue: #8BDFFF;

  --grad-purple-blue: linear-gradient(#8F71FF, #8BDFFF);
  --grad-blue: linear-gradient(#26BAEE, #9FE8FA);
  --grad-green: linear-gradient(#00BD56, #F9FD50);
  --grad-purple-pink: linear-gradient(#B100CD, #FC55CD);
  --grad-red-magenta: linear-gradient(#FF3306, #FF0ABA);
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--light-blue);
  color: #000;
}

h1, h2, h3 {
  font-family: 'Slackey', cursive;
}

p, a, li {
  font-family: 'Lato', sans-serif;
}

a {
  text-decoration: none;
  color: 000;
}

a:visited {
  color: #000;
}

a:hover {
  color: var(--purple);
}

a:active {
  color: var(--magenta);
}

img {
  display: block;
  max-width: 100%;
}

.hero-button,
.split-button {
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.hero-button:hover,
.split-button:hover {
  background: #00994a; /* darker green */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.site-header {
  background-color: #ffffff;
  width: 100%;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.main-nav a:hover {
  color: var(--purple);
}

.hero {
  width: 100%;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/door.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero-image {
  display: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-button {
  padding: 12px 28px;
  background: #00BD56;
  color: #000;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.feature-section {
  background-color: var(--light-blue);
  padding: 50px 0;
}

.feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.feature-card {
  width: 360px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
}

.feature-card img,
.feature-card span {
  grid-area: 1 / 1;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Lato', cursive;
  font-size: 55px;
  color: #ffffff;
  text-stroke: 0.85px #000000;
  padding: 10px;
}

.split-section {
  padding: 60px 0;
}

.split-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.reverse .split-inner {
  flex-direction: row-reverse;
}

.split-text {
  width: 50%;
  padding: 60px;
}

.split-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.split-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.split-button {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  background: #00BD56;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.split-image {
  width: 50%;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purple { background-color: #B100CD; }
.teal { background-color: #27B6AE; }
.green { background-color: #F9FD50; }

.packages-section {
  background: linear-gradient(#8F71FF, #8BDFFF);
  padding: 80px 0;
}

.packages-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.package-card {
  width: 360px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}

.package-media {
  display: grid;
  grid-template-rows: 220px; 
  width: 100%;
  overflow: hidden;
}

.package-media img,
.package-media h3 {
  grid-area: 1 / 1;
}

.package-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.package-media h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Lato', cursive;
  font-size: 45px;
  color: #ffffff;
  text-stroke: 0.75px #000000;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  padding: 10px;
  pointer-events: none;
}

.package-body {
  padding: 30px;
  text-align: center;
}

.subtitle {
  font-weight: 700;
  margin-bottom: 16px;
}

.package-body ul {
  list-style: none;
  margin-bottom: 14px;
  font-size: 14px;
}

.package-body li {
  margin-bottom: 4px;
}

.price {
  margin-top: 12px;
  font-weight: 700;
  color: #F805EB;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.site-footer {
  background: linear-gradient(#B100CD, #FC55CD);
  color: #ffffff;
  padding: 60px 40px 30px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 180px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col {
  width: 30%;
}

.footer-left { text-align: left; }
.footer-center { text-align: center; }
.footer-right { text-align: right; }

.footer-col h4 {
  font-family: 'Lato', cursive;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-right h4,
.footer-right p {
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer-right h4:hover,
.footer-right p:hover {
  color: #F9FD50;
}


.copyright {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  opacity: 0.85;
}

/* NEXT PAGE */

.birthday-packages {
  background: linear-gradient(#8F71FF, #8BDFFF);
  padding: 80px 0;
}

.package-text p + p {
  margin-top: 20px;
}

.package-row {
  max-width: 1100px;
  margin: 0 auto 60px auto;
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  overflow: hidden;
}

.package-image {
  width: 420px;
  flex-shrink: 0;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.package-text {
  flex: 1;
  padding: 60px 40px;
  text-align: center;
}

.package-text h2 {
  font-family: 'Lato', cursive;
  font-size: 40px;
  color: #ffffff;
  text-stroke: 0.85px #000000;
  margin-bottom: 12px;
}

.package-text h3 {
  font-family: 'Lato', cursive;
  font-size: 14px;
  margin-bottom: 24px;
}

.package-text p {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.price {
  margin-top: 24px;
  color: #F805EB;
  font-weight: 700;
}
