/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

button,
input,
select {
  font-family: inherit;
}

/* =========================
   VARIABLES
========================= */

:root {
  --purple-dark: #17015f;
  --purple: #35119a;
  --purple-mid: #4b21b8;
  --pink: #f72585;
  --pink-dark: #d91572;
  --yellow: #ffd21f;
  --green: #54c21f;
  --blue: #168be8;
  --orange: #ff8c1a;
  --white: #ffffff;
  --cream: #fffaf0;
  --text: #261c4f;
  --muted: #5f5b7a;
  --border: #ddd7f0;
  --shadow: 0 18px 45px rgba(23, 1, 95, 0.16);

  --heading-font: "Fredoka", sans-serif;
  --body-font: "Inter", sans-serif;
}

/* =========================
   BASE
========================= */

body {
  font-family: var(--body-font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: var(--heading-font);
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.3rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

h3 {
  font-size: 1.3rem;
}

/* =========================
   HEADER
========================= */

.site-header {
  background: var(--purple-dark);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrapper {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 125px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-weight: 800;
  font-size: 0.92rem;
}

.nav-menu a {
  padding: 9px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--pink);
}

.book-btn {
  background: var(--yellow);
  color: var(--purple-dark);
  font-weight: 900;
  padding: 14px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 0 #c89f00;
}

.menu-toggle {
  display: none;
  background: var(--yellow);
  color: var(--purple-dark);
  border: 0;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 1.5rem;
  cursor: pointer;
}

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

.hero-image-banner {
  width: 100%;
  background: var(--purple-dark);
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* =========================
   AVAILABILITY BOX
========================= */

.availability-box {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: -82px auto 0;
  background: var(--white);
  color: var(--text);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  font-weight: 900;
  font-size: 0.85rem;
}

.field-group input,
.field-group select {
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--muted);
  background: var(--white);
}

.check-btn {
  height: 50px;
  border: 0;
  border-radius: 16px;
  padding: 0 22px;
  background: var(--pink);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.trust-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 70px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 700;
}

/* =========================
   QUICK CATEGORIES
========================= */

.quick-categories {
  background: var(--white);
  padding: 46px 0 34px;
  position: relative;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}

.quick-card {
  padding: 18px 18px 10px;
  position: relative;
}

.quick-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 34px;
  width: 1px;
  height: 120px;
  background: var(--border);
}

.quick-icon {
  width: 275px;
  height: 275px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.quick-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.quick-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  font-weight: 900;
}

.quick-card p {
  max-width: 260px;
  margin: 0 auto 14px;
  font-size: 0.95rem;
  color: #5f5b7a;
  line-height: 1.55;
}

.quick-card a {
  font-weight: 900;
  font-size: 0.98rem;
}

/* Color-coded headings and links */

.quick-card.purple h3,
.quick-card.purple a {
  color: var(--purple-mid);
}

.quick-card.green h3,
.quick-card.green a {
  color: var(--green);
}

.quick-card.pink h3,
.quick-card.pink a {
  color: var(--pink);
}

.quick-card.blue h3,
.quick-card.blue a {
  color: var(--blue);
}
/* =========================
   RENTALS
========================= */

.rentals-preview {
  background: var(--white);
  padding: 28px 0 60px;
}

.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--purple-dark);
  text-align: center;
}

.section-title h2 {
  color: var(--purple-dark);
}

.rental-slider-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.slider-arrow {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #e9e3ff;
  color: var(--purple-dark);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.rental-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(23, 1, 95, 0.12);
  display: flex;
  flex-direction: column;
}

.rental-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--white);
  display: block;
}

.slushy-img {
  object-position: center top;
}

.rental-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rental-body h3 {
  margin-bottom: 10px;
  color: var(--purple-dark);
  font-size: 1.25rem;
}

.rental-body p {
  margin-bottom: 18px;
  color: #5f5b7a;
  font-size: 0.92rem;
  line-height: 1.55;
}

.details-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px 16px;
  color: var(--white);
  border-radius: 999px;
  font-weight: 900;
  margin-top: auto;
}

.pink-btn {
  background: var(--pink);
}

.green-btn {
  background: var(--green);
}

.blue-btn {
  background: var(--blue);
}

/* =========================
   WHY + TESTIMONIAL
========================= */

.trust-testimonial {
  background: var(--white);
  padding: 28px 0 48px;
}

.split-row {
  display: grid;
  grid-template-columns: 0.9fr 1.8fr;
  gap: 26px;
  align-items: stretch;
}

.why-box {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  color: var(--white);
  border-radius: 24px;
  padding: 28px;
}

.why-box h2 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 2rem;
}

.why-box ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.why-box li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.why-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.yellow-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--purple-dark);
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 900;
}

.testimonial-box {
  background: linear-gradient(135deg, #1798f2, #35c4ff);
  color: var(--white);
  border-radius: 24px;
  padding: 34px;
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.stars {
  color: var(--yellow);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.testimonial-box p {
  max-width: 58%;
  font-weight: 800;
  margin-bottom: 16px;
}

.testimonial-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 100%;
  border-left: 6px solid var(--white);
  border-radius: 50% 0 24px 50%;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

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

.site-footer {
  background: var(--purple-dark);
  color: rgba(255, 255, 255, 0.84);
  padding: 34px 0 20px;
}

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

.footer-logo .logo-mark {
  width: 74px;
  height: 74px;
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.site-footer a {
  display: block;
  margin-bottom: 4px;
}

.site-footer p {
  margin-bottom: 8px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.socials span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--blue);
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
}

.newsletter-form {
  display: flex;
  margin-top: 14px;
  background: var(--white);
  border-radius: 999px;
  overflow: hidden;
  padding: 4px;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 14px;
}

.newsletter-form button {
  border: 0;
  background: var(--pink);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
}

.footer-bottom {
  text-align: center;
  margin-top: 26px;
  font-size: 0.9rem;
}

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

.page-hero {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  color: var(--white);
  padding: 95px 0 85px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 210, 31, 0.22), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(247, 37, 133, 0.22), transparent 25%),
    radial-gradient(circle at 50% 100%, rgba(22, 139, 232, 0.22), transparent 34%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.eyebrow {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
  margin: 0 auto;
}

.content-section {
  background: var(--white);
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.placeholder-img {
  min-height: 430px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(23, 1, 95, 0.18), rgba(23, 1, 95, 0.18)),
    url("../images/kids-party-bounce-house.webp") center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.placeholder-img span {
  display: none;
}

.content-grid h2 {
  color: var(--purple-dark);
  margin-bottom: 18px;
}

.content-grid p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  margin-top: 10px;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 8px 0 var(--pink-dark);
}

.btn-primary:hover {
  transform: translateY(2px);
  box-shadow: 0 6px 0 var(--pink-dark);
}

.nav-button {
  background: var(--yellow);
  color: var(--purple-dark);
  font-weight: 900;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-section {
  background: var(--cream);
  padding: 70px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.contact-card,
.contact-info {
  background: var(--white);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-info h2 {
  color: var(--purple-dark);
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  font-weight: 900;
  color: var(--purple-dark);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
}

input[type="date"] {
  min-height: 56px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  border: 0;
  cursor: pointer;
  width: fit-content;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

.info-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  margin-top: 18px;
}

.info-box h3 {
  color: var(--purple-dark);
  margin-bottom: 6px;
}

.info-box p {
  margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .nav-wrapper {
    grid-template-columns: auto auto auto;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--purple);
    padding: 20px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .book-btn {
    display: none;
  }

  .hero-scene {
    grid-template-columns: 1fr;
    min-height: 560px;
    padding-top: 40px;
  }

  .hero-art {
    display: none;
  }

  .availability-box {
    grid-template-columns: 1fr 1fr;
  }

  .check-btn {
    grid-column: span 2;
  }

  .category-row,
  .rental-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-row {
    grid-template-columns: 1fr;
  }
  
  @media (max-width: 650px) {
  .page-hero {
    padding: 70px 0 60px;
  }

  .content-section {
    padding: 56px 0;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .placeholder-img {
    min-height: 300px;
  }

  .page-hero h1 {
    font-size: 2.8rem;
  }
}
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrapper {
    min-height: 74px;
  }

  .logo-mark {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .logo strong {
    font-size: 1.35rem;
  }

  .hero-scene {
    min-height: 460px;
    padding: 34px 16px 120px;
  }

  .hero-kicker {
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .availability-box {
    grid-template-columns: 1fr;
    margin-top: -78px;
    border-radius: 22px;
  }

  .check-btn {
    grid-column: span 1;
  }

  .trust-row {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .category-row,
  .rental-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-card:not(:last-child)::after {
    display: none;
  }

  .rental-slider-layout {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    display: none;
  }

  .testimonial-box p {
    max-width: 100%;
  }

  .testimonial-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 180px;
    border-radius: 24px;
    margin-top: 22px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 16px;
    gap: 8px;
  }

  .newsletter-form input {
    min-height: 44px;
  }
  
  @media (max-width: 650px) {
  .contact-section {
    padding: 44px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-card,
  .contact-info {
    padding: 24px;
    border-radius: 22px;
  }

  .contact-card h2,
  .contact-info h2 {
    font-size: 2.2rem;
  }

  .contact-form button {
    width: 100%;
  }
}
  
}
