/* =========================
   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,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
  vertical-align: baseline;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.4;
  background: #F4F7FA;
  color: #1B365D;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input,button,textarea,select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
a {
  color: #1B365D;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus {
  outline: 2px solid #F39C12;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  display: block;
}
ul,ol {
  list-style: none;
  margin-left: 0;
}
strong, b {
  font-weight: 700;
}

/* ============================
   BASE TYPOGRAPHY
   ============================ */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1B365D;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.16;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p,li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

@media (min-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem;  }
  h3 { font-size: 1.25rem; }
}

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

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

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

/* =====================
   LAYOUT FLEXBOX SPACING 
   ===================== */
.card-container, .feature-grid, .feature-group, .activity-grid, .activity-card-grid, .content-grid, .footer-nav, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: white;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(27,54,93,0.07);
  padding: 24px;
  transition: box-shadow .2s, transform .18s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(27,54,93,0.14);
  transform: translateY(-4px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.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;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px 0 rgba(27,54,93,.07);
  padding: 20px 28px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 30px 0 rgba(27,54,93,0.15);
}
.testimonial-meta {
  color: #1B365D;
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  margin-left: 10px;
  opacity: 0.78;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(27,54,93,.07);
  gap: 15px;
  padding: 24px 18px 16px 18px;
  min-width: 220px;
  max-width: 310px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .16s;
}
.feature-item img {
  width: 40px;
  height: 40px;
}
.feature-item:hover {
  box-shadow: 0 4px 23px 0 rgba(27,54,93,0.15);
  transform: translateY(-3px) scale(1.02);
}

/* =============================
   HEADER + NAVIGATION + HERO
   ============================= */
header {
  background: #1B365D;
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 74px;
  padding: 0 24px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.16s;
  padding: 8px 0;
}
.main-nav a.primary-cta {
  background: #F39C12;
  color: #1B365D;
  border-radius: 40px;
  font-size: 1rem;
  padding: 9px 28px;
  font-weight: 800;
  margin-left: 8px;
  box-shadow: 0 2px 12px 0 rgba(243,156,18,0.17);
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}
.main-nav a.primary-cta:hover,
.main-nav a.primary-cta:focus {
  background: #1B365D;
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(27,54,93,0.19);
}
.main-nav a:hover,
.main-nav a:focus {
  color: #F39C12;
}
.main-nav img {
  height: 44px;
  margin-right: 16px;
  vertical-align: middle;
}

.hero {
  background: #F39C12 url('../assets/hero-bg.svg') top center no-repeat;
  background-size: cover;
  color: #1B365D;
  padding-top: 44px;
  padding-bottom: 44px;
  margin-bottom: 32px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #1B365D;
  font-size: 2.3rem;
  margin-bottom: 16px;
}
.hero p {
  color: #1B365D;
}

/* =============================
   BUTTONS & CTAs
   ============================= */
.primary-cta, .primary-cta:visited {
  background: #F39C12;
  color: #1B365D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 42px;
  padding: 10px 32px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px 0 rgba(243,156,18,0.16);
  transition: background 0.19s, color 0.19s, box-shadow 0.22s, transform 0.14s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 14px;
  outline: none;
  display: inline-block;
}
.primary-cta:hover, .primary-cta:focus {
  background: #1B365D;
  color: #fff;
  box-shadow: 0 7px 32px 0 rgba(27,54,93,0.20);
  transform: translateY(-2px) scale(1.03);
}
button, .button {
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s, color 0.18s;
}

/* =============================
   CARDS + ACTIVITIES
   ============================= */
.activity-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.activity-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 rgba(27,54,93,0.09);
  padding: 20px 23px;
  min-width: 220px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.19s, transform 0.14s;
}
.activity-card:hover {
  box-shadow: 0 6px 26px 0 rgba(243,156,18,0.13);
  transform: translateY(-2px) scale(1.03);
}
.age-label,
.label-family-friendly {
  background: #F39C12;
  color: #fff;
  border-radius: 18px;
  font-size: 0.93rem;
  font-weight: 700;
  padding: 3px 14px;
  margin-left: 9px;
  vertical-align: middle;
}

/* =============================
   RATING + TESTIMONIALS
   ============================= */
.rating-summary {
  margin-top: 24px;
  color: #1B365D;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* =============================
   FEATURE LISTS
   ============================= */
.features-list {
  margin-bottom: 28px;
}
.features-list h3 {
  color: #F39C12;
  margin-top: 16px;
}
.features-list ul {
  margin-bottom: 8px;
}

/* =============================
   ADDRESS / INFO BLOCKS
   ============================= */
.address-block p, .legal-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 1rem;
}

/* =============================
   FOOTER
   ============================= */
footer {
  background: #1B365D;
  color: #fff;
  width: 100%;
  padding: 36px 0 20px 0;
  margin-top: 36px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.footer-nav a {
  color: #F39C12;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color .16s;
  padding: 4px 0;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
}
.legal-info {
  font-size: 0.95rem;
  opacity: 0.82;
  margin-bottom: 12px;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.social-links img {
  width: 31px;
  height: 31px;
  border-radius: 25%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 6px 0 rgba(243,156,18,0.13);
  transition: background 0.16s, box-shadow 0.18s;
}
.social-links img:hover {
  background: #F39C12;
  box-shadow: 0 4px 22px 0 rgba(243,156,18,0.19);
}

/* =============================
   MOBILE NAVIGATION
   ============================= */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 200;
  display: none;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background .15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #fff;
  color: #1B365D;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,54,93, 0.97);
  color: #fff;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 32px 24px 32px;
  transform: translateX(100%);
  transition: transform .37s cubic-bezier(0.7,0.3,0.22,1);
  box-shadow: -8px 3px 32px 0 rgba(27,54,93,0.28);
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 36px;
  top: 26px;
  color: #fff;
  background: none;
  font-size: 2.3rem;
  font-weight: 900;
  border: none;
  cursor: pointer;
  z-index: 510;
  transition: color 0.14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #F39C12;
}
.mobile-nav {
  flex-direction: column;
  display: flex;
  gap: 24px;
  margin-top: 54px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFF;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 14px 0;
  border-radius: 7px;
  box-sizing: border-box;
  transition: background .14s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F39C12;
  color: #1B365D;
}

/* =============================
   COOKIE CONSENT BANNER
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: #1B365D;
  color: #fff;
  box-shadow: 0 -2px 16px 0 rgba(27,54,93,.11);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 26px 18px 26px 18px;
  gap: 22px;
  font-size: 1rem;
  animation: cookie-slide-in .7s cubic-bezier(0.5,0.5,0.1,1);
}
@keyframes cookie-slide-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-right: 18px;
  color: #fff;
  max-width: 400px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F39C12;
  color: #1B365D;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 9px 22px;
  margin-left: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 0;
  margin-top: 0;
  transition: background .14s, color .14s, box-shadow .14s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #fff;
  color: #F39C12;
  box-shadow: 0 2px 18px 0 rgba(243,156,18,0.15);
}
/* Cookie modal */
.cookie-modal {
  position: fixed;
  z-index: 1200;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-60%) scale(0.97);
  background: #fff;
  color: #1B365D;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 rgba(27,54,93,.23);
  min-width: 330px;
  max-width: 94vw;
  min-height: 220px;
  padding: 38px 40px 30px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .12s, transform .22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #1B365D;
  font-weight: 800;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal .cookie-category input[type=checkbox], .cookie-modal .cookie-category input[type=radio] {
  accent-color: #F39C12;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 16px;
}
.cookie-modal .cookie-btn {
  padding: 8px 19px;
  border-radius: 21px;
}
.cookie-modal .cookie-btn.secondary {
  background: #1B365D;
  color: #fff;
  border: 2px solid #F39C12;
}
.cookie-modal .cookie-btn.secondary:hover {
  background: #F39C12;
  color: #1B365D;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  background: none;
  border: none;
  color: #1B365D;
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  z-index: 9999;
  transition: color .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F39C12;
}

/* =============================
   SPECIAL COMPONENTS
   ============================= */
.current-weather-widget {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff3e4;
  border-radius: 11px;
  padding: 7px 16px;
  box-shadow: 0 2px 10px 0 rgba(243,156,18,0.04);
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1rem;
}
.current-weather-widget img {
  height: 32px;
  width: 32px;
}
.locations-map {
  background: #F4F7FA;
  border-radius: 14px;
  padding: 14px 19px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #1B365D;
}

/* =============================
   UTILITIES
   ============================= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-24 { margin-bottom: 24px !important; }
.text-center { text-align: center; }

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 980px) {
  .main-nav {
    gap: 12px;
    padding: 0 10px;
    font-size: 0.98rem;
  }
}
@media (max-width: 900px) {
  .feature-grid, .feature-group, .activity-grid, .activity-card-grid, .content-grid, .card-container {
    flex-wrap: wrap;
    gap: 20px 16px;
    justify-content: center;
  }
  .feature-item, .activity-card {
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 340px;
    padding: 22px 13px 14px 13px;
  }
  .card-content {
    gap: 4px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 32px; padding-bottom: 32px;
    margin-bottom: 18px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 720px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section, .content-wrapper {
    padding: 11px 0;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.08rem; }
  .feature-item, .activity-card {
    min-width: 140px;
    max-width: 98vw;
    padding: 14px 8px 10px 9px;
  }
  .section { padding: 20px 2px; margin-bottom: 38px; }
  .testimonials-section,
  .footer-nav { gap: 11px; }
}
@media (max-width: 480px) {
  .testimonial-card, .card, .feature-item, .activity-card {
    padding: 12px 6px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    padding: 19px 7px 18px 7px;
    min-width: 0;
  }
  .mobile-menu {
    padding: 23px 7px 12px 14px;
  }
  .section { padding: 8px 1px; }
}
@media (max-width: 600px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }
}

/* =============================
   OVERRIDES & EDGE CASES
   ============================= */
::-webkit-scrollbar { width: 8px; background: #F4F7FA; }
::-webkit-scrollbar-thumb { background: #F39C12; border-radius: 9px; }
::-webkit-scrollbar-thumb:hover { background: #1B365D; }

/* Ensure no overlapping or crowding */
.card, .feature-item, .activity-card, .testimonial-card { margin-bottom: 20px; }
.section, .content-wrapper, .text-section { margin-bottom: 28px; }

/* Accessibility Focus style */
:focus-visible {
  outline: 2px solid #F39C12;
  outline-offset: 3px;
}

/* =============================
   CUSTOM FONT STACKS
   ============================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
