/* RESET & BASE STYLES */
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; }
*, *:before, *:after { box-sizing: inherit; }
img { max-width: 100%; display: block; border: 0; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { font: inherit; border: none; background: none; cursor: pointer; }

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #19344B;
  background-color: #FAFBFF;
  line-height: 1.6;
  font-size: 16px;
}
/* --- Brand/Playful Dynamic --- */
:root {
  --color-primary: #11466D;
  --color-secondary: #DFB928;
  --color-accent: #FFFFFF;
  --color-bg-playful1: #f7faff;
  --color-bg-playful2: #fcedfe;
  --color-bg-card: #fffbe6;
  --color-bg-button-hover: #FFD84D;
  --color-shadow: 0 4px 16px 0 rgba(17,70,109,0.05);
  --color-shadow-strong: 0 8px 32px 0 rgba(17,70,109,0.12);
  --color-cta-hover: #2c78bc;
  --color-link-hover: #F7945D;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-playful1);
  border-radius: 24px;
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-primary);
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  animation: bounceInDown 0.8s;
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--color-secondary);
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 5px;
}
p {
  font-size: 1rem;
  color: #222646;
  margin-bottom: 6px;
}
b,strong {
  font-weight: bold;
  color: var(--color-primary);
}

/* Fun playful secondary font for headings */
h1, h2 {
  text-shadow: 1px 1px 0 #fffbe6, 2px 2px 0 #FFD84D;
}

/* --- BUTTONS & LINKS --- */
.cta-button {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 14px 32px;
  border-radius: 32px 12px 32px 12px;
  box-shadow: var(--color-shadow);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  margin-top: 12px;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-bg-button-hover);
  color: var(--color-primary);
  transform: scale(1.04) rotate(-1deg);
  box-shadow: var(--color-shadow-strong);
}
a {
  color: var(--color-primary);
  transition: color 0.18s;
}
a:hover { color: var(--color-link-hover); }

/* --- HEADER + NAVIGATION --- */
header {
  padding: 0;
  background: var(--color-primary);
  box-shadow: 0 2px 16px 0 rgba(17,70,109,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
header img { height: 54px; }
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  color: var(--color-accent);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.13s;
}
nav a::after {
  content: '';
  display: block;
  border-radius: 4px;
  width: 0%; height: 2px;
  background: var(--color-secondary);
  transition: width 0.23s ease;
  margin-top: 3px;
}
nav a:hover, nav a:focus {
  color: var(--color-secondary);
}
nav a:hover::after, nav a:focus::after { width: 80%; }

.cta-button {
  margin-left: 18px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--color-secondary);
  background: none;
  border: none;
  z-index: 201;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background 0.17s;
}
.mobile-menu-toggle:hover,.mobile-menu-toggle:focus {
  background: #FFD84D;
  color: var(--color-primary);
}

@media (max-width: 1023px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
}

/* --- MOBILE MENU SLIDE PANEL --- */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: var(--color-primary);
  box-shadow: -4px 0 24px 0 rgba(17,70,109,0.17);
  z-index: 9001;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(.86,0,.07,1);
  padding: 32px 22px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: var(--color-secondary);
  background: none;
  border: none;
  margin-bottom: 24px;
  padding: 2px 8px 2px 2px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD84D;
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-size: 1.25rem;
  padding: 12px 2px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 7px;
  transition: background 0.12s, color 0.15s;
}
.mobile-nav a:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  nav { display: flex !important; }
}

/* --- MAIN STRUCTURE --- */
main {
  width: 100%;
  padding-top: 40px;
  min-height: 70vh;
}

section {
  margin-bottom: 60px;
}

/* --- FEATURE, CARD, CONTENT FLEX --- */
.card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: var(--color-bg-card);
  border-radius: 20px;
  box-shadow: var(--color-shadow);
  padding: 30px 28px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.16s, transform 0.17s;
}
.card:hover {
  box-shadow: var(--color-shadow-strong);
  transform: translateY(-8px) scale(1.02) rotate(-1.4deg);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF9E2;
  border-radius: 19px;
  padding: 20px 15px;
  box-shadow: var(--color-shadow);
  flex: 1 1 220px;
}

.schedule-list ul,
.special-events ul,
.card-container ul,
.content-grid ul,
.content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px; margin-bottom: 8px;
}
.content-wrapper ul li, ul li {
  background: #fffbe6;
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 1.02rem;
  margin-bottom: 0;
  display: flex; align-items: center;
  gap: 12px;
  box-shadow: 0 1px 6px 0 rgba(31,61,96,0.03);
  transition: background 0.15s, box-shadow 0.16s;
}
.content-wrapper ul li img {
  width: 32px; height: 32px; flex-shrink: 0;
}
.content-wrapper ul li:hover {
  background: #FFEDD3;
  box-shadow: 0 2px 12px 0 rgba(223,185,40,0.10);
}
@media (max-width:700px) {
  .content-wrapper ul, .schedule-list ul, .special-events ul {
    flex-direction: column;
    gap: 12px;
  }
}

/* --- TEAM CARDS (O NAS) --- */
.team {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-member {
  background: #F0F9FF;
  border-radius: 20px;
  flex: 1 1 230px;
  padding: 26px 18px 16px 18px;
  box-shadow: 0 2px 14px 0 rgba(17,70,109,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 330px;
  transition: box-shadow 0.14s, transform 0.14s;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.team-member h3 {
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}
.team-member span {
  font-size: 0.98rem;
  margin-bottom: 12px;
  color: #256599;
  font-weight: 500;
}
.team-member p {
  margin-bottom: 0;
  color: #213B53;
}
.team-member:hover {
  box-shadow: 0 6px 28px 0 rgba(17,70,109,0.18);
  transform: translateY(-7px);
}
@media (max-width: 900px) {
  .team {
    flex-direction: column;
    gap: 10px;
  }
  .team-member {
    max-width: 100%;
    min-width: 0;
  }
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(17,70,109,0.08);
  position: relative;
  min-width: 0;
  max-width: 650px;
  border-left: 9px solid var(--color-secondary);
  transition: transform 0.15s;
}
.testimonial-card p {
  color: #16334A;
  font-size: 1.05rem;
  margin-bottom: 4px;
  font-style: italic;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #7D8697;
}
.testimonial-card:hover {
  transform: scale(1.032) rotate(-1deg);
  background: #F8F6FE;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 12px;
    gap: 7px;
    max-width: 100%;
  }
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion h3 {
  color: var(--color-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  margin-bottom: 4px;
  position: relative;
}
.faq-accordion p {
  color: #1D2A3A;
  font-size: 1rem;
  margin-bottom: 0;
  margin-left: 22px;
  border-left: 3px solid #FFD84D;
  padding-left: 12px;
  background: #FFF9E2;
  border-radius: 8px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.faq-contact-prompt {
  margin-top: 16px;
  padding: 10px 16px;
  background: #FFEDD3;
  border-radius: 12px;
  font-size: 1.06rem;
}
.faq-contact-prompt a {
  font-weight: bold;
  color: var(--color-primary);
}
.faq-contact-prompt a:hover {
  color: var(--color-link-hover);
}

/* --- CONTACT INFO --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  font-size: 1.01rem;
  color: #213B53;
  align-items: flex-start;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-info img {
  width: 20px; height: 20px;
}

.privacy-statement {
  background: #f5fcff;
  border-radius: 9px;
  font-size: 0.98rem;
  color: #454A62;
  padding: 10px 13px;
  margin-top: 10px;
}

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -4px 24px 0 rgba(17,70,109,0.07);
  margin-top: 70px;
  padding: 38px 0 24px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #FFE079;
  font-size: 1.05rem;
  font-weight: 500;
  margin-right: 12px;
  border-radius: 5px;
  transition: color 0.15s, background 0.12s;
  padding: 2px 7px 2px 2px;
}
footer nav a:hover {
  color: var(--color-secondary);
  background: #ffffff21;
}
footer img {
  height: 44px;
}
footer .contact-info {
  color: #EDEDED;
  font-size: 0.98rem;
}
footer .contact-info p img { filter: brightness(1.7); }
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* --- COOKIES BANNER --- */
.cookie-consent-banner {
  position: fixed;
  z-index: 9999;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  padding: 24px;
  background: #fffbe6;
  color: #18314f;
  box-shadow: 0 -4px 36px 0 rgba(247, 169, 28, 0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  font-size: 1.02rem;
  animation: cookie-slide-in 0.6s;
}
@keyframes cookie-slide-in {
  from { transform: translateY(+100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  flex: 1 1 auto;
  margin-right: 25px;
}
.cookie-consent-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.cookie-btn {
  border-radius: 30px 12px 30px 12px;
  padding: 10px 22px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 600;
  box-shadow: var(--color-shadow);
  font-size: 1.01rem;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: #FFE0B2;
  color: #c27707;
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFD84D;
  color: var(--color-primary);
  transform: scale(1.035);
}
@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 18px 4px;
  }
  .cookie-banner-text {
    margin-right: 0;
  }
  .cookie-consent-buttons {
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17,70,109,0.23);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.28s;
}
@keyframes fadeIn {
  from { opacity: 0; } 
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffbe6;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(17,70,109,0.25);
  min-width: 320px;
  max-width: 95vw;
  width: 430px;
  padding: 30px 25px 22px 25px;
  z-index: 10002;
  animation: modal-slide-in 0.4s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modal-slide-in {
  from { transform: translateY(70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1.07rem;
  color: var(--color-primary);
}
.cookie-category input[type='checkbox'],
.cookie-category input[type='radio'] {
  accent-color: var(--color-secondary);
  width: 22px; height: 22px;
}
.cookie-category .category-desc {
  font-size: 0.96rem;
  color: #326292;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  font-size: 1.01rem;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 1.8rem;
  background: none;
  color: var(--color-secondary);
  border: none;
  border-radius: 10px;
  padding: 3px 8px;
  transition: background 0.1s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #FFD84D;
  color: var(--color-primary);
}
@media (max-width: 550px) {
  .cookie-modal { min-width: 0; width: 97vw; }
}

/* --- PLAYFUL MICRO-ANIMATIONS --- */
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-70px) scaleY(0.8);
  }
  70% {
    opacity: 1;
    transform: translateY(6px) scaleY(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

.card::before, .card::after, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 24px;
  pointer-events: none;
}
.card::after {
  top: -13px; right: -13px;
  width: 36px; height: 36px;
  background: #FFD84D;
  opacity: 0.18;
  z-index: 0;
}
.card::before {
  bottom: -14px; left: -14px;
  width: 44px; height: 44px;
  background: #72C4F4;
  opacity: 0.13;
  z-index: 0;
}
.testimonial-card::before {
  top: -8px; left: -14px;
  width: 28px; height: 28px;
  background: #FFD84D;
  opacity: 0.10;
}

/* --- SPECIAL UTILITIES --- */
hr {
  border: 0; border-top: 2px dashed #FFD84D;
  margin: 26px 0;
}

/* --- RESPONSIVE CONTROL --- */
@media (max-width: 700px) {
  main {
    padding-top: 20px;
  }
  .container {
    padding: 0 5px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  h3 {
    font-size: 1.08rem;
  }
}

@media (max-width: 550px) {
  .section {
    padding: 12px 0 18px 0;
    margin-bottom: 22px;
    border-radius: 13px;
  }
  .content-wrapper {
    gap: 14px;
  }
}

/* ------ END OF CSS ------ */
