/* -------------------- CSS RESET & BASE -------------------- */
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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #205375;
  background: #fff;
  min-height: 100vh;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus { outline: 2px solid #25A18E; outline-offset: 2px; }

ul, ol {
  list-style: disc inside;
  margin-bottom: 1.5em;
}
ul ul, ol ol {
  margin-bottom: 0;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* -------------------- TYPOGRAPHY -------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #205375;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.75rem; margin-top: 12px; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-top: 12px; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }

p, ul, ol, table {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 18px;
  color: #2c3e50;
}

.subheadline {
  color: #3b5160;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 28px;
  max-width: 680px;
}

.cta-text {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.text-section {
  max-width: 740px;
  margin-bottom: 28px;
}

/* -------------------- LAYOUT CONTAINERS -------------------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px; 
  padding-right: 20px;
  width: 100%;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}

/* -------------------- FLEXBOX PATTERNS -------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(32, 83, 117, 0.07);
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(32, 83, 117, 0.12);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F5F5;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(32, 83, 117, 0.07);
  min-width: 220px;
  max-width: 450px;
  margin-bottom: 20px;
  flex: 1 1 250px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------- HEADER -------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(32,83,117,0.05);
  position:sticky; top:0; z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}
header img {
  height: 40px;
  width: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #205375;
  padding: 6px 0;
  opacity: 0.86;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover,
header nav a:focus {
  opacity: 1;
  color: #25A18E;
  background: #f0f7fa;
}
.button-primary {
  background: #25A18E;
  color: #fff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 10px 26px;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(32,83,117,0.06);
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  cursor: pointer;
  margin-left: 24px;
  display: inline-block;
  border: none;
}
.button-primary:hover,
.button-primary:focus {
  background: #205375;
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 6px 24px 0 rgba(37, 161, 142, 0.13);
}
.mobile-menu-toggle {
  background: none;
  font-size: 2.2rem;
  color: #205375;
  border: none;
  cursor: pointer;
  display: none;
  margin-left: 12px;
  line-height: 1;
  padding: 7px 11px;
  border-radius: 7px;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f5f5f5;
  color: #25A18E;
}

/* ----------- MOBILE MENU ----------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.84,.01,.56,.99);
  box-shadow: 0 0 0 rgba(32, 83, 117, 0);
}
.mobile-menu.active {
  transform: translateX(0);
  box-shadow: 0 4px 32px 6px rgba(32, 83, 117, 0.14);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  background: none;
  color: #205375;
  border: none;
  cursor: pointer;
  margin: 24px 18px 12px 0;
  transition: color 0.16s;
  padding: 6px 12px;
  border-radius: 7px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #25A18E;
  background: #F5F5F5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 40px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  color: #205375;
  padding: 14px 0 13px 7px;
  border-radius: 7px;
  transition: background 0.13s, color 0.13s;
  opacity: 0.94;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #25A18E;
  color: #fff;
  opacity: 1;
}

/* Hide nav on mobile, show burger */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .button-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 700px) {
  header .container {
    padding-left: 11px;
    padding-right: 11px;
  }
  .mobile-nav {
    padding: 36px 12px 0 22px;
  }
  .mobile-menu-close {
    margin-right: 7px;
    font-size: 2rem;
  }
}

/* -------------------- HOMEPAGE HERO -------------------- */
main > section:first-of-type {
  background: #F5F5F5;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 2px 18px 0 rgba(37,161,142,0.06);
}
.content-wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* -------------------- FEATURE GRID & ICON FEATURES -------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 10px;
  min-width: 200px;
  flex: 1 1 245px;
  max-width: 300px;
  padding: 28px 22px 28px 22px;
  box-shadow: 0 2px 14px 0 rgba(32, 83, 117, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.13s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(32, 83, 117, 0.11);
  transform: translateY(-3px) scale(1.02);
}
.feature-grid img {
  margin-bottom: 18px;
  width: 38px; height: 38px;
}

/* -------------------- SERVICE & EVENT CARDS -------------------- */
.service-list, .event-packages {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
  justify-content: flex-start;
}
.service-card, .event-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 22px 28px 22px;
  flex: 1 1 265px;
  min-width: 220px; max-width: 320px;
  box-shadow: 0 2px 16px 0 rgba(32, 83, 117, 0.07);
  transition: box-shadow 0.18s, transform 0.11s;
  margin-bottom: 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.service-card:hover, .event-card:hover {
  box-shadow: 0 10px 36px 0 rgba(37,161,142,0.12);
  transform: translateY(-2px) scale(1.012);
}
.price {
  margin-top: 9px;
  font-weight: 700;
  color: #25A18E;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* -------- SPECIAL GRIDS & BOXES --------- */
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.benefit-grid ul {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 18px 22px;
  color: #205375;
}

.child-safety-info, .special-activities {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 17px 18px;
  margin-bottom: 24px;
  margin-right: 18px;
}
.child-safety-info h3, .special-activities h3 {
  margin-top: 0;
  margin-bottom: 13px;
  font-size: 1.08rem;
}

/* -------------------- TESTIMONIALS -------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.testimonial-card {
  background: #F5F5F5 !important;
  color: #205375 !important;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border-radius: 10px;
  box-shadow: 0 2px 14px 0 rgba(32, 83, 117, 0.09);
  margin-bottom: 20px;
  max-width: 410px;
  min-width: 220px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.testimonial-card p {
  color: #205375;
  font-size: 1.07rem;
  margin-bottom: 9px;
  line-height: 1.45;
}
.testimonial-card span {
  color: #205375;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: 0.85;
}

/* -------------------- TABLES -------------------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px 0 rgba(32,83,117,0.05);
  border-radius: 10px;
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 16px 13px;
  text-align: left;
  font-size: 1rem;
}
.price-table th {
  background: #f5f5f5;
  color: #205375;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.price-table tr + tr td {
  border-top: 1px solid #d6e1e8;
}

/* -------------------- CONTACT PAGE -------------------- */
.contact-details {
  margin-bottom: 24px;
}
.contact-details ul {
  padding-left: 0;
  margin-bottom: 0;
}
.location-map {
  margin-bottom: 26px;
}
.cta-section {
  display: flex;
  flex-direction: row;
  gap: 17px;
  align-items: center;
  margin-bottom: 25px;
}

/* -------------------- FOOTER -------------------- */
footer {
  background: #205375;
  color: #fff;
  padding: 36px 0 20px 0;
  box-shadow: 0 -2px 14px 0 rgba(32, 83, 117, 0.09);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
footer a {
  color: #fff;
  opacity: 0.94;
  transition: opacity 0.14s, text-decoration 0.13s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-right: 16px;
}
footer a:hover, footer a:focus {
  opacity: 1;
  text-decoration: underline;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
  align-items: center;
}
footer img {
  height: 48px;
  margin-bottom: 10px;
}
footer .text-section {
  max-width: 320px;
  font-size: 0.97rem;
  opacity: 0.93;
}

/* -------------------- ANIMATIONS & TRANSITIONS -------------------- */
.button-primary, .service-card, .feature-grid > div, .event-card,
.card, .testimonial-card {
  transition: box-shadow 0.21s cubic-bezier(.16,.7,.48,1), background 0.20s, color .14s, transform .16s;
}

/* -------------------- RESPONSIVE DESIGN -------------------- */
@media (max-width: 1024px) {
  .container { max-width: 94vw; }
  .feature-grid, .service-list, .event-packages, .card-container, .benefit-grid, .testimonial-slider {
    gap: 16px;
  }
  footer .container { gap: 22px; }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .event-packages, .testimonial-slider, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .container { max-width: 99vw; }
  .footer .container { gap: 10px; }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 28px 8px;
  }
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.3rem; }
  .subheadline { font-size: 1.08rem; }
  .feature-grid, .service-list, .event-packages, .testimonial-slider, .card-container, .benefit-grid {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .card, .service-card, .event-card, .feature-grid > div {
    padding: 20px 13px;
    min-width: 0;
    max-width: 100%;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 99vw;
    min-width: unset;
    font-size: 0.97rem;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 480px) {
  html { font-size: 90%; }
  .section { padding: 16px 3px; }
  .card, .service-card, .event-card, .feature-grid > div, .testimonial-card {
    padding: 13px 7px;
    border-radius: 8px;
  }
  .container { padding-left: 2px; padding-right: 2px; }
}

/* -------------------- COOKIE CONSENT BANNER -------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  z-index: 1500;
  background: #fff;
  box-shadow: 0 -2px 16px 4px rgba(32,83,117,0.10);
  display: flex; flex-direction: row; align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 15px 18px 15px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: transform 0.32s, opacity 0.16s;
  opacity: 1;
  visibility: visible;
  border-radius: 10px 10px 0 0;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  visibility: hidden;
}
.cookie-banner .cookie-text {
  flex: 1 1 320px;
  color: #205375;
  margin-right: 16px;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  border-radius: 8px;
  padding: 8px 21px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  cursor: pointer;
  background: #F5F5F5;
  color: #205375;
  box-shadow: 0 1px 7px 0 rgba(32, 83, 117, 0.07);
  transition: background 0.16s, color 0.13s;
  font-weight: 500;
}
.cookie-btn.accept {
  background: #25A18E;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #205375;
}
.cookie-btn.reject {
  background: #fff;
  color: #205375;
  border: 1.5px solid #25A18E;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff;
  color: #25A18E;
  border-color: #205375;
}
.cookie-btn.settings {
  background: #F5F5F5;
  color: #205375;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e0eaea;
  color: #205375;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 15px 7px 11px 7px;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
  }
  .cookie-banner .cookie-actions {
    justify-content: flex-end;
    gap: 8px;
  }
}

/* ---- COOKIE PREFERENCES MODAL ---- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(32,83,117,0.13);
  z-index: 2001;
  display: flex; align-items: center; justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.17s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 36px 0 rgba(32,83,117,0.21);
  max-width: 380px;
  width: 95vw;
  padding: 34px 22px 20px 22px;
  position: relative;
  display: flex; flex-direction: column; align-items: stretch;
  animation: modalIn 0.29s cubic-bezier(.8,0,.22,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(32px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  font-size: 1.31rem;
  margin-bottom: 12px;
  color: #205375;
}
.cookie-modal .cookie-category {
  margin-bottom: 13px;
  display: flex; align-items: center; justify-content: space-between;
}
.cookie-modal .category-label {
  color: #205375;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .toggle:not([disabled]) {
  width: 48px; height: 24px;
  background: #F5F5F5;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.14s;
  border: 1.2px solid #25A18E;
}
.cookie-modal .toggle[disabled] {
  opacity: .47;
  cursor: default;
  border-style: dashed;
}
.cookie-modal .toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: #25A18E;
  border-radius: 50%;
  transition: left 0.2s cubic-bezier(.84,.03,.34,.99), background 0.18s;
}
.cookie-modal .toggle[data-checked="true"] {
  background: #25A18E66;
  border-color: #25A18E;
}
.cookie-modal .toggle[data-checked="true"] .toggle-slider {
  left: 24px;
  background: #25A18E;
}
.cookie-modal .toggle[data-checked="false"] .toggle-slider {
  left: 2px;
  background: #F5F5F5;
  border: 1px solid #25A18E;
}
.cookie-modal .category-desc {
  color: #3b5160;
  font-size: 0.98rem;
  margin-left: 3px;
}
.cookie-modal .modal-footer {
  display: flex; gap: 12px; margin-top: 15px; justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 9px; right: 13px;
  font-size: 1.65rem;
  background: none; border: none; color: #205375; cursor: pointer; border-radius: 8px;
  padding: 3px 7px;
  transition: background 0.14s, color 0.11s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #F5F5F5;
  color: #25A18E;
}

/* -------------------- UTILITY CLASSES -------------------- */
.text-center { text-align: center !important; }
.w-100 { width: 100% !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }

/* -------------------- FOCUS STYLES -------------------- */
:focus-visible { outline: 2px solid #25A18E; outline-offset: 1px; }

/* -------------------- SCROLLBAR MINIMAL -------------------- */
body::-webkit-scrollbar{width: 9px;background: #F5F5F5;}
body::-webkit-scrollbar-thumb{background: #e2e2e2;border-radius:7px;}
footer .text-section p{
  color: #e0eaea;
}
/* -------------------- END OF STYLE -------------------- */
