/* =========================================
   LEAPING LIZZY'S — Main Stylesheet
   Theme: Bright & Playful / Kids-First
   Fonts: Fredoka One (display) + Nunito (body)
   ========================================= */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --green:       #3dba6f;   /* lizard green - primary */
  --green-dark:  #2a9454;
  --green-light: #e6f9ee;
  --yellow:      #ffd93d;   /* sunny yellow - accent */
  --yellow-dark: #e6c235;
  --orange:      #ff6b35;   /* energetic orange - CTA */
  --orange-dark: #e05a25;
  --purple:      #9b5de5;   /* fun purple */
  --blue:        #4cc9f0;   /* sky blue */
  --pink:        #f72585;   /* hot pink accent */
  --white:       #ffffff;
  --off-white:   #fdfaf4;
  --gray-100:    #f4f4f4;
  --gray-200:    #e8e8e8;
  --gray-600:    #666;
  --text:        #1a1a2e;

  --font-display: 'Fredoka One', cursive;
  --font-body:    'Nunito', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.15);

  --transition:  0.2s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- UTILITY CLASSES ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.text-center { text-align: center; }

.badge {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-green  { background: var(--green-light); color: var(--green-dark); }
.badge-yellow { background: #fff8d6; color: #a07a00; }
.badge-purple { background: #f0e8ff; color: var(--purple); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,107,53,0.4);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(255,107,53,0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border: 2.5px solid var(--green);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--green-light);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--text);
  box-shadow: 0 4px 14px rgba(255,217,61,0.5);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.15rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.9rem; }

/* ---- SECTION HEADINGS ---- */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.section-subhead {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-dark);
  transition: color var(--transition);
}
.logo:hover { color: var(--orange); }
.logo-icon { font-size: 1.8rem; line-height: 1; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover,
.nav-link.active {
  background: var(--green-light);
  color: var(--green-dark);
}
.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 99px;
  transition: transform 0.3s, opacity 0.3s;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  background: linear-gradient(135deg, #fff9e6 0%, #e8f9f0 60%, #e8f0ff 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,217,61,0.25) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(61,186,111,0.2) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--yellow);
  color: var(--text);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-title .highlight {
  color: var(--green);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 6px;
  background: var(--yellow);
  border-radius: 99px;
  z-index: -1;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero visual - emoji bounce animation */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bounce-graphic {
  width: 360px;
  height: 360px;
  background: linear-gradient(145deg, var(--green-light), #d4f0ff);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(61,186,111,0.2);
  position: relative;
}
.hero-bounce-graphic .sub-emoji {
  font-size: 3rem;
  margin-top: -1rem;
  animation: float 3s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

/* Hero trust badges */
.hero-trust {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-600);
}
.trust-icon { font-size: 1.1rem; }

/* =========================================
   WHY CHOOSE US (Home)
   ========================================= */
.features-section {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 2px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--green-dark);
}
.feature-card p { color: var(--gray-600); font-size: 0.95rem; }

/* =========================================
   RENTAL PREVIEW (Home)
   ========================================= */
.rentals-preview {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--green-light) 100%);
}

/* =========================================
   RENTAL CARDS (Rentals page)
   ========================================= */
.rentals-page { background: var(--off-white); }

.category-section { margin-bottom: 4rem; }
.category-label {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px dashed var(--yellow);
  display: inline-block;
}

.rentals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.rental-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.rental-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.rental-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--green-light), #fff9e6);
}

.rental-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rental-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.rental-body p {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  flex: 1;
}

.rental-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.rental-meta span {
  background: var(--gray-100);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-600);
}

.rental-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.rental-price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
}

/* Full-day upsell line under price */
.rental-price-full {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}

/* Popular badge on combo cards */
.popular-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

/* Package includes list */
.package-includes {
  list-style: none;
  margin-bottom: 1rem;
}
.package-includes li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 0.2rem 0;
}
.package-includes li::before {
  content: '✓ ';
  color: var(--green);
  font-weight: 800;
}

/* =========================================
   PRICING NOTES (on merged Rentals & Pricing page)
   ========================================= */
.pricing-notes {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-top: 2rem;
}
.pricing-notes h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.pricing-notes ul { padding-left: 1.25rem; list-style: disc; }
.pricing-notes li { margin-bottom: 0.5rem; font-size: 0.95rem; }

/* =========================================
   PRICING PAGE
   ========================================= */
.pricing-page { background: var(--off-white); }

.pricing-intro {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  clip-path: ellipse(110% 100% at 50% 0%);
  padding-bottom: 6rem;
}
.pricing-intro .section-heading { color: var(--white); }
.pricing-intro .section-subhead { color: rgba(255,255,255,0.85); max-width: 600px; margin-bottom: 0; }

.pricing-content { margin-top: -3rem; position: relative; z-index: 1; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(255,107,53,0.15);
}
.pricing-card .featured-tag {
  position: absolute;
  top: 14px; right: -22px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 2rem;
  transform: rotate(35deg);
  text-transform: uppercase;
}

.pricing-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}
.pricing-card .price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--green-dark);
  line-height: 1;
  margin: 0.75rem 0 0.25rem;
}
.pricing-card .price-note {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.pricing-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.pricing-notes {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-top: 2rem;
}
.pricing-notes h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.pricing-notes ul { padding-left: 1.25rem; list-style: disc; }
.pricing-notes li { margin-bottom: 0.5rem; font-size: 0.95rem; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-page { background: var(--off-white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  position: sticky;
  top: 90px;
}
.contact-info-card h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.contact-info-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.75;
  margin-bottom: 0.15rem;
}
.contact-detail-text a,
.contact-detail-text span {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--white);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}
.contact-form-card .form-subhead {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Form styles */
.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.required-star { color: var(--orange); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,186,111,0.15);
  background: var(--white);
}
textarea { resize: vertical; min-height: 110px; }

.form-submit {
  margin-top: 1.5rem;
}
.form-submit .btn { width: 100%; justify-content: center; }
.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-top: 0.75rem;
}

/* =========================================
   CTA STRIP
   ========================================= */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}
.cta-strip p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.cta-strip .btn-yellow { font-size: 1.1rem; padding: 0.9rem 2.5rem; }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.page-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 540px;
  margin: 0 auto;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding-top: 3.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo-icon { font-size: 2.5rem; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--yellow);
  margin-top: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.85rem;
}
.footer-links a,
.footer-contact a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--yellow); }

.service-area {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  transition: background var(--transition);
  margin-bottom: 0;
}
.social-links a:hover { background: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; text-align: center; }
  .hero-bounce-graphic { width: 260px; height: 260px; font-size: 5rem; margin: 0 auto; }
  .hero-actions        { justify-content: center; }
  .hero-trust          { justify-content: center; }
  .hero-desc           { margin: 0 auto 2rem; }
  .features-grid       { grid-template-columns: 1fr 1fr; }
  .contact-layout      { grid-template-columns: 1fr; }
  .contact-info-card   { position: static; }
  .footer-inner        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .features-grid  { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .pricing-intro  { clip-path: none; }

  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 3px solid var(--yellow);
    box-shadow: var(--shadow-md);
    gap: 0.35rem;
  }
  .site-nav.open { display: flex; }
  .nav-link { padding: 0.6rem 1rem; }
  .nav-cta  { align-self: flex-start; margin-top: 0.5rem; }
}
