/* --- CSS RESET & NORMALIZE --- */
html,body,div,span,applet,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,big,cite,code,
del,dfn,em,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,
b,u,i,center,
dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,embed,
figure,figcaption,footer,header,hgroup,
menu,nav,output,ruby,section,summary,
time,mark,audio,video {
  margin:0; padding:0; border:0;
  font-size:100%; font:inherit; vertical-align:baseline;
  box-sizing:border-box;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F1DE;
  color: #22543D;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
ul,ol { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- PLAYFUL DYNAMIC COLOR & TYPOGRAPHY --- */
:root {
  --primary: #22543D;
  --secondary: #A7C957;
  --accent: #F4F1DE;
  --highlight: #FFB703;
  --playful-blue: #51C4D3;
  --playful-coral: #F35D6A;
  --card-bg: #FFFFFF;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Open+Sans:400,700&display=swap');
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--primary);
  background: var(--accent);
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.1;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; margin-top: 32px; }
h3 { font-size: 1.5rem; margin-top: 20px; }
h4 { font-size: 1.2rem; }
.subheadline {
  font-size: 1.25rem;
  color: var(--playful-coral);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 16px;
  margin: 0 auto;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* --- SECTIONS SPACING --- */
.section, .hero-section, .features-section, .services-section, .about-section, .testimonials-section, .contact-section, .contact-summary-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .section, .hero-section, .features-section, .services-section, .about-section, .testimonials-section, .contact-section, .contact-summary-section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
}

/* --- FLEXBOX PATTERNS --- */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { background: var(--card-bg); border-radius: 18px; box-shadow: 0 2px 12px rgba(81,196,211,0.06); padding: 24px; margin-bottom: 20px; position: relative; transition: box-shadow .2s, transform .15s; }
.card:hover { box-shadow: 0 4px 24px rgba(51, 196, 211, 0.10), 0 1.5px 10px var(--secondary, #A7C957); transform: translateY(-3px) scale(1.02) rotate(-1.25deg); }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 20px; margin: 16px 0; background: #FFF7F1; border-radius: 18px; box-shadow: 0 1.5px 10px rgba(51, 196, 211, 0.06); min-width: 260px; max-width: 420px; flex: 1 1 300px; transition: box-shadow .2s, transform .16s; color: #1C361C; }
.testimonial-card:hover { box-shadow: 0 4px 16px rgba(81,196,211,0.18); }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  margin-top: 10px;
}

.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 8px;
}
.feature-grid > li, .service-list > li {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(167,201,87,0.07);
  padding: 22px 18px 20px;
  flex: 1 1 245px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .14s;
  position: relative;
}
.feature-grid > li:hover, .service-list > li:hover {
  box-shadow: 0 4px 24px rgba(243,93,106,0.15), 0 1.5px 10px var(--playful-coral);
  transform: translateY(-5px) scale(1.03) rotate(1.25deg);
}

@media (max-width: 900px) {
  .feature-grid, .service-list, .content-grid, .testimonial-row, .card-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .container { padding: 0 8px; }
  .testimonial-row {
    flex-direction: column;
    gap: 20px;
  }
}

/* --- HEADER/NAVBAR --- */
header {
  background: #FFF;
  box-shadow: 0 2px 12px rgba(81,196,211,0.06);
  position: sticky;
  top: 0;
  z-index: 60;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.main-nav a img {
  width: 148px;
  height: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 1rem;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
  padding: 5px 0 3px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.19s, border-bottom 0.18s;
}
.nav-links a:hover, .nav-links a:focus {
  color: var(--playful-coral);
  border-bottom: 2px solid var(--playful-coral);
}
.cta.primary {
  background: var(--playful-blue);
  color: #fff;
  border: none;
  border-radius: 23px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 2px 14px rgba(81,196,211,0.12);
  transition: background 0.2s, transform .18s;
  cursor: pointer;
  margin-left: 18px;
  text-align: center;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--playful-coral);
  color: #fff;
  transform: scale(1.06) rotate(-2deg);
}

.mobile-menu-toggle {
  background: var(--secondary);
  color: #22543D;
  font-size: 2.2rem;
  border: none;
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  transition: background .18s, color .18s;
  z-index: 102;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--playful-coral);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(242, 249, 223, 0.96);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.85,0,.15,1);
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.4rem;
  background: var(--playful-coral);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 52px; height: 52px;
  margin: 22px 22px 0 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: flex;
  transition: background .16s;
  z-index: 116;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--playful-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 32px;
  gap: 16px;
  padding: 0 40px;
}
.mobile-nav a {
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  padding: 14px 0;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: color .16s, border .14s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--playful-coral);
  border-bottom: 2px solid var(--playful-coral);
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 16px;
    font-size: .98rem;
  }
}
@media (max-width: 900px) {
  .nav-links, .cta.primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 600px) {
  header .main-nav { gap:14px; }
  .mobile-nav { padding: 0 16px; }
}

/* --- HERO SECTION --- */
.hero-section {
  background: linear-gradient(90deg, #A7C957 0%, #F4F1DE 100%);
  box-shadow: 0 2px 14px rgba(51,196,211,0.06);
  border-radius: 0 0 32px 32px;
  margin-bottom: 42px;
  position: relative;
  overflow: hidden;
  animation: heroFadeIn 1.3s cubic-bezier(.33,0,.14,1) 1;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(-32px); }
  to { opacity: 1; transform: none; }
}

.hero-section .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 18px;
}
.hero-section h1 {
  color: var(--playful-coral);
  text-shadow: 0 3px 22px rgba(81,196,211,0.10);
  font-family: 'Montserrat', cursive, sans-serif;
  font-weight: 900;
}
.hero-section .subheadline {
  color: var(--playful-blue);
}

@media (max-width: 600px) {
  .hero-section {
    border-radius: 0 0 16px 16px;
    margin-bottom: 24px;
  }
  .hero-section .content-wrapper {
    padding-left: 0; align-items: flex-start;
  }
}

/* --- FEATURES GRID / SERVICES LIST --- */
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(51,196,211,0.13));
  border-radius: 14px;
  background: var(--accent);
}

.feature-grid h3, .service-list h3 {
  color: var(--playful-blue);
  font-size: 1.25rem;
  font-weight: 900;
  font-family: 'Montserrat', cursive, sans-serif;
  margin: 10px 0 8px 0;
}

.feature-grid p, .service-list p {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.feature-grid strong, .service-list strong {
  color: var(--playful-coral);
  font-weight: 900;
}

/* --- ACCORDION/FAQ & ACCESSIBILITY --- */
.accessibility-info {
  background: var(--playful-blue);
  color: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 32px;
  box-shadow: 0 2px 12px rgba(51,196,211,0.07);
}
.accessibility-info h3 { color: #fff; }
.accessibility-info ul li {
  margin-bottom: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}

/* --- TESTIMONIALS --- */
.testimonials-section .content-wrapper > h2 { margin-bottom: 10px; color: var(--highlight); }
.stars { color: var(--highlight); font-weight: bold; margin-left: 4px; font-size: 1.1em; }
.testimonial-meta {
  font-size: 1rem;
  color: #22543D;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  opacity: .85;
}
.testimonial-card p {
  font-size: 1.12rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #11543D;
  margin-bottom: 9px;
}

/* Color contrast for testimonials/reviews: always dark on light */
.testimonial-card {
  background: #FFF7F1;
  color: #22543D;
}
@media (max-width: 600px) {
  .testimonial-row { gap: 12px; }
  .testimonial-card { min-width: 85vw; max-width: 100vw; }
}

/* --- BUTTONS & LINKS --- */
button, .cta, input[type="submit"] {
  font-family: 'Montserrat',sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 22px;
  padding: 12px 30px;
  font-size: 1.08rem;
  cursor: pointer;
  background: var(--playful-blue);
  color: #fff;
  margin: 0 8px 0 0;
  box-shadow: 0 2px 10px rgba(51,196,211, .13);
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.13s;
  outline: none;
}
button:hover, .cta:hover, button:focus, .cta:focus, input[type="submit"]:hover {
  background: var(--playful-coral);
  color: #fff;
  transform: scale(1.04) rotate(-1.5deg);
  box-shadow: 0 3px 18px rgba(243,93,106,0.09);
}
.cta.secondary {
  background: var(--secondary);
  color: var(--primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--playful-coral);
  color: #fff;
}

a {
  color: var(--playful-blue);
  transition: color .16s;
}
a:hover, a:focus {
  color: var(--playful-coral);
}

/* --- ABOUT / TEXT SECTION --- */
.text-section ul, .text-section ol {
  margin-top: 13px;
  margin-bottom: 10px;
  padding-left: 22px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 7px;
  color: #22543D;
  font-size: 1.05rem;
  position: relative;
  padding-left: 12px;
}
.text-section ul li:before {
  content: '•';
  color: var(--playful-coral);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* --- CONTACT --- */
.contact-section .address-map, .contact-section .operating-hours, .contact-section .email-link {
  margin-bottom: 16px;
  font-size: 1.04rem;
}
.contact-section strong {
  color: var(--playful-coral);
}
@media (max-width: 600px) {
  .contact-section .content-wrapper {
    gap: 12px;
  }
}

/* --- ADDRESS/HOURS LINK --- */
.address-hours, .activity-schedule {
  margin-top: 20px;
  background: #E8F3E5;
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--primary);
  font-size: 1.01rem;
  text-align: left;
  box-shadow: 0 1.5px 8px rgba(167,201,87,0.08);
}
.address-hours a {
  color: var(--playful-blue); font-weight: 600;
}

/* --- FOOTER --- */
footer {
  background: #F6F6EB;
  padding: 32px 0 0 0;
  font-size: 1rem;
  border-top: 4px solid var(--secondary);
  margin-top: 48px;
}
footer .container {
  box-sizing: border-box;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.footer-nav, .footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-nav a, .footer-legal a {
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  font-size: 1rem;
  transition: color .14s, border-bottom .13s;
  border-bottom: 2px solid transparent;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--playful-coral);
  border-bottom: 2px solid var(--playful-coral);
}
.footer-legal {
  align-self: center;
  opacity: .76;
  font-size: 0.97rem;
}
.footer-copy {
  width: 100%;
  margin-top: 18px;
  padding: 16px 0 14px 0;
  text-align: center;
  color: #929E7A;
  font-size: .96rem;
}
.footer-social img {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-nav, .footer-legal { gap: 12px; font-size: .97rem; }
}

/* --- FAQ / LINKS (eg. Parks page) --- */
.faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.faq-links a {
  background: var(--playful-blue);
  color: #fff;
  border-radius: 16px;
  padding: 10px 22px;
  font-size: 1.05rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  transition: background .14s, color .14s;
}
.faq-links a:hover, .faq-links a:focus {
  background: var(--playful-coral);
  color: #fff;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 20px;
  background: #51C4D3;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(51,196,211,0.10), 0 1.5px 10px var(--playful-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 300;
  padding: 18px 24px;
  gap: 20px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  animation: cookieSlideIn 0.7s cubic-bezier(.22,.61,.36,1.13) 1;
}
.cookie-consent-banner strong { color: #FFF343; }
.cookie-consent-banner button {
  background: var(--playful-coral);
  color: #fff;
  border-radius: 14px;
  border: none;
  font-size: 1.07rem;
  padding: 8px 20px;
  margin-right: 8px;
  transition: background .15s, color .15s;
  cursor: pointer;
}
.cookie-consent-banner .cookie-settings-btn {
  background: var(--playful-blue);
  color: #fff;
  margin-right: 0;
  margin-left: 6px;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: var(--secondary);
  color: #22543D;
}
@media (max-width:600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: .99rem;
    left: 2vw; right: 2vw;
    padding: 13px 10px 11px 13px;
  }
}
@keyframes cookieSlideIn {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity:1; transform: none; }
}

/* --- COOKIE PREFERENCE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,84,61,.68);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: #fff;
  padding: 34px 28px 24px 28px;
  border-radius: 24px;
  box-shadow: 0 6px 42px rgba(51,196,211,0.15);
  min-width: 320px; max-width: 98vw;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: modalPopIn 0.27s ease 1;
}
@keyframes modalPopIn {
  from { opacity: 0; transform: scale(.8); }
  to   { opacity:1; transform: scale(1); }
}
.cookie-modal h2 {
  color: var(--playful-coral);
  font-size: 1.22rem;
  margin-bottom:10px;
}
.cookie-category {
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 13px;
  font-size: 1.05rem;
}
.cookie-modal label {
  font-weight: 700; color: var(--primary);
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--playful-coral);
  width: 18px; height: 18px;
}
.cookie-modal .cookie-action-row {
  display: flex; gap: 14px; margin-top: 12px;
}
.cookie-modal .close-modal-btn {
  background: var(--playful-blue);
  color: #fff;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  padding: 5px 14px;
  margin-left: 8px;
  transition: background .14s;
  cursor: pointer;
}
.cookie-modal .close-modal-btn:hover {
  background: var(--playful-coral);
  color: #fff;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.card, .testimonial-card, .feature-grid > li, .service-list > li {
  animation: fadeInCard .7s cubic-bezier(.23,.74,.81,1) both;
}
@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(40px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

.cta.primary, .cta.secondary, .footer-nav a, .footer-legal a, .feature-grid > li, .service-list > li, .mobile-menu-close, .mobile-menu-toggle {
  transition: background .17s, color .17s, transform .15s, box-shadow .13s;
}

/* --- OVERRIDES: MARGIN & GAP BETWEEN CARDS/SECTIONS --- */
.section + .section, .section + section, section + .section, section + section {
  margin-top: 42px;
}
.card, .feature-grid > li, .service-list > li {
  margin-bottom: 20px;
}

/* --- Misc (keep new browser UI margins tidy) --- */
body {
  min-height: 100svh;
}

/* --- Hide scroll on modal open (add .modal-open to body) --- */
body.modal-open {
  overflow: hidden;
}

/* --- Utilities --- */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding:0; margin: -1px; overflow: hidden; clip:rect(0,0,0,0); border:0; }

/* --- END of CSS --- */
