/* ======= 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F9F8FA;
  color: #205072;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205072;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #205072;
}
ul, ol {
  margin: 0 0 1em 1.5em;
}
li {
  margin-bottom: 0.5em;
}
strong {
  font-weight: 600;
}
hr {
  border: none;
  height: 1px;
  background: #e8e4e4;
  margin: 32px 0;
}

/* ======= FONTS ======= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #205072;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  margin-top: 8px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 11px;
}
h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 1.1em;
}

/* ======= LAYOUT CONTAINERS ======= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(32, 80, 114, 0.07);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 34px;
    border-radius: 8px;
  }
  .container {
    padding: 0 8px;
  }
}

/* ======= HEADER & NAVIGATION ======= */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(32,80,114,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
  margin-bottom: 0px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 24px;
  max-width: 180px;
}
.logo img {
  height: 46px;
  margin-bottom: 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #205072;
  padding: 8px 4px;
  border-radius: 6px;
}
.main-nav a:hover,
.main-nav a:active {
  color: #b57417;
  background: #f4ede4;
  transition: background 0.2s, color 0.2s;
}
.cta.primary {
  padding: 10px 28px;
  background: #205072;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 25px;
  font-size: 1rem;
  margin-left: 20px;
  box-shadow: 0 4px 12px rgba(32,80,114,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.15s;
  border: 0;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #b57417;
  color: #fff;
  box-shadow: 0 6px 24px rgba(178,116,23,0.12);
}

/* ==== MOBILE BURGER MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #205072;
  padding: 5px 10px;
  margin-left: 8px;
  cursor: pointer;
  z-index: 101;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #b57417;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 6px 32px rgba(32,80,114,0.13);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.38s cubic-bezier(0.77,0,0.175,1);
  padding: 26px 22px 32px 22px;
  gap: 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #205072;
  padding: 0.4em 0.5em 0.2em 0.5em;
  cursor: pointer;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #205072;
  background: none;
  border-radius: 6px;
  padding: 12px 10px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f4ede4;
  color: #b57417;
}
@media (max-width: 1024px) {
  .main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ======= BREADCRUMBS (if any in future) ======= */
.breadcrumbs {
  font-size: 0.93rem;
  color: #8ba1b6;
  padding-bottom: 10px;
}

/* ======= HERO & LEAD SECTIONS ======= */
.content-wrapper > h1, .content-wrapper > h2 {
  margin-top: 0;
  margin-bottom: 10px;
}
.content-wrapper > p {
  margin-bottom: 8px;
}

/* ======= QUICK LINKS ======= */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.link-card {
  background: #f2f6f8;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(32,80,114,0.07);
  color: #205072;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border: 1px solid #e7e6ef;
  transition: background 0.18s, box-shadow 0.19s, border 0.15s;
  min-width: 210px;
}
.link-card img {
  width: 28px;
  height: 28px;
}
.link-card:hover,
.link-card:focus {
  background: #fff6e7;
  border: 1px solid #b57417;
  box-shadow:0 4px 24px rgba(226,157,33,0.11);
  color: #b57417;
}

/* ======= FEATURES & ICON-LIST ======= */
ul li img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
ul li strong {
  margin-left: 2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ======= CARDS AND FLEX CONTAINERS ======= */
.card-container,
.card-grid,
.activity-grid, 
.ideas-grid, 
.indoor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card, .activity-card, .idea-card, .indoor-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(32,80,114,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  max-width: 330px;
  padding: 22px 20px 18px 20px;
  gap: 10px;
  border: 1px solid #e8e4e4;
  transition: box-shadow 0.15s, border 0.18s;
}
.card:hover,
.activity-card:hover,
.idea-card:hover,
.indoor-card:hover {
  box-shadow: 0 4px 20px rgba(32,80,114,0.13);
  border: 1px solid #b57417;
}
.activity-card img,
.idea-card img,
.indoor-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 9px;
}
.activity-card h3,
.idea-card h3,
.indoor-card h3 {
  margin-bottom: 6px;
  font-size: 1.18rem;
}

/* For responsive overflow / wrapping */
@media (max-width: 900px) {
  .card-container,
  .card-grid,
  .activity-grid, 
  .ideas-grid, 
  .indoor-list {
    gap: 16px;
  }
  .card, .activity-card, .idea-card, .indoor-card {
    min-width: 0;
    width: 100%;
    max-width: unset;
    padding: 18px 12px 16px 14px;
  }
}

/* ======= HIGHLIGHTS & ALTERNATING SECTIONS ======= */
.activity-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.activity-highlight > div {
  background: #f9f5ed;
  border-radius: 14px;
  padding: 18px 22px;
  min-width: 200px;
  flex: 1 1 240px;
}
.activity-highlight h4 {
  color: #205072;
  margin-bottom: 7px;
}

/* ======= TESTIMONIAL CARDS ======= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 32px 18px 36px;
  background: #fafaff;
  border: 1px solid #e8e4e4;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(32,80,114,0.09);
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card p {
  color: #205072;
  font-size: 1.06rem;
  font-style: italic;
}
.testimonial-card span {
  color: #b57417;
  font-size: 1rem;
  font-weight: 600;
}
.testimonial-card:hover {
  border-color: #b57417;
  box-shadow: 0 6px 22px rgba(32,80,114,0.12);
}

/* ======= FAQ ACCORDION SECTION ======= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion > div {
  background: #fff;
  border: 1px solid #e8e4e4;
  border-radius: 12px;
  padding: 14px 20px;
}
.faq-accordion h3 {
  margin-bottom: 6px;
  font-size: 1.13rem;
  font-weight: 600;
}

/* ======= FORM (for future extension) ======= */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #e8e4e4;
  margin-bottom: 16px;
  background: #f7fafd;
  transition: border-color 0.17s, box-shadow 0.17s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #205072;
  box-shadow: 0 1px 4px rgba(32,80,114,0.08);
}
button, .cta {
  background: #205072;
  color: #fff;
  border: 0;
  padding: 10px 24px;
  border-radius: 25px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(32,80,114,0.10);
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
  margin-top: 10px;
  margin-bottom: 10px;
}
button:hover, button:focus, .cta:hover, .cta:focus {
  background: #b57417;
  color: #fff;
  box-shadow: 0 6px 16px rgba(226,157,33,0.13);
}

/* ======= FOOTER ======= */
footer {
  background: #fff;
  border-top: 1px solid #e8e4e4;
  margin-top: 70px;
  font-size: 0.97rem;
}
footer .container {
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 26px 20px 24px 20px;
  gap: 18px;
}
.footer-logo img {
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 0 0 6px 0;
}
.footer-nav a {
  color: #205072;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  padding: 6px 0;
  opacity: 0.85;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #b57417;
  opacity: 1;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: center;
  color: #697885;
  font-size: .98rem;
  gap: 7px;
}
.footer-contact li img {
  width: 18px;
  height: 18px;
}
.footer-contact a {
  color: #205072;
  text-decoration: underline;
}
.footer-contact a:hover {
  color: #b57417;
}

/* ======= CONTACT SECTION ======= */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #205072;
  font-size: 1rem;
}
.info-text p {
  color: #205072;
  font-size: 1.07rem;
}

/* ======= WEATHER INFO SECTION ======= */
.weather-info {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f2f7fd;
  border-radius: 12px;
  padding: 12px 20px;
}
.weather-info img {
  width: 36px;
  height: 36px;
}

/* ======= FILTER/IDEAS SECTION ======= */
.filter-section {
  background: #f7fafd;
  padding: 14px 20px;
  border-radius: 10px;
  margin-top: 18px;
}
.filter-section h4 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}
.filter-section ul li {
  font-size: .97rem;
  margin-bottom: 6px;
}

/* ======= CONTENT GRIDS AND FLEX PATTERNS ======= */
.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;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  footer .container, header .container {
    flex-direction: column;
    gap: 8px;
    padding: 16px 8px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
  }
}

/* ======= TYPOGRAPHY HIERARCHY & SIZES ======= */
html {
  font-size: 16px;
}
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.08rem; }
}

/* ======= SPACING AND DIVIDERS (SAFE GAPS) ======= */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .activity-grid, .ideas-grid, .card-grid, .indoor-list {
  gap: 24px;
}
.card, .activity-card, .idea-card, .indoor-card {
  margin-bottom: 20px;
}
.content-grid, .text-image-section {
  gap: 20px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}
@media (max-width: 768px) {
  section, .section {
    margin-bottom: 34px;
    padding: 20px 8px;
  }
  .card-container, .activity-grid, .ideas-grid, .card-grid, .indoor-list {
    gap: 10px;
  }
}

/* ======= UTILITIES & MICRO-INTERACTIONS ======= */
.shadow-soft {
  box-shadow: 0 2px 8px rgba(32,80,114,0.07);
}
.rounded {
  border-radius: 18px;
}
.bg-accent {
  background: #e29d21;
  color: #fff !important;
}
.bg-primary {
  background: #205072 !important;
  color: #fff !important;
}

/* ======= SCROLLBAR & SELECTION STYLE ======= */
::selection {
  background: #e29d21;
  color: #fff;
}
::-webkit-scrollbar {
  width: 8px;
  background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  background: #e8e4e4;
  border-radius: 99px;
}

/* ======= COOKIE CONSENT BANNER ======= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff7e2;
  color: #205072;
  border-top: 1px solid #e8e4e4;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 18px 22px 15px 22px;
  z-index: 3000;
  box-shadow: 0 -2px 24px rgba(32,80,114,0.08);
  font-size: 0.98rem;
  transition: transform 0.33s;
}
.cookie-banner.hidden {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 320px;
  max-width: 700px;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 22px;
  border: none;
  background: #205072;
  color: #fff;
  border-radius: 22px;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 1px 6px rgba(32,80,114,0.04);
  transition: background 0.18s, color 0.18s;
}
.cookie-banner button.reject {
  background: #fff;
  color: #205072;
  border: 1px solid #205072;
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: #f8ebda;
  color: #b57417;
  border-color: #b57417;
}
.cookie-banner button.settings {
  background: #fff;
  color: #b57417;
  border: 1px solid #b57417;
}
.cookie-banner button.settings:hover,
.cookie-banner button.settings:focus {
  background: #f3e6c7;
  color: #205072;
  border-color: #205072;
}
.cookie-banner button.accept:hover,
.cookie-banner button.accept:focus {
  background: #b57417;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 17px 8px 16px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-btn-group {
    gap: 9px;
  }
}

/* ======= COOKIE PREFERENCES MODAL ======= */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,80,114,0.15);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 36px rgba(32,80,114,0.21);
  padding: 36px 26px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  z-index: 4500;
}
.cookie-modal h2 {
  color: #205072;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: #205072;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 2px 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #205072;
  font-weight: 500;
}
.cookie-modal input[type=checkbox]{
  width: 20px;
  height: 20px;
  accent-color: #205072;
  margin-right: 7px;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 36px;
  height: 20px;
  margin-right: 8px;
  display: inline-block;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #e7ecef;
  border-radius: 20px;
  transition: background 0.13s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: #fff;
  transition: transform 0.16s;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(32,80,114,0.14);
}
.cookie-modal .toggle-switch input:checked + .slider {
  background-color: #205072;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-category .readonly,
.cookie-modal .cookie-category input[disabled] + .slider {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  gap: 11px;
}
.cookie-modal button{
  padding: 9px 20px;
  border-radius: 18px;
  border: none;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #205072;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-modal button.secondary {
  background: #fff;
  color: #205072;
  border: 1px solid #205072;
}
.cookie-modal button.secondary:hover{
  background: #f3e6c7;
  color: #b57417;
  border-color: #b57417;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: #b57417;
  color: #fff;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .footer-logo img, .logo img { height: 28px; }
  .section, section { padding: 13px 4px; }
  .card, .activity-card, .idea-card, .indoor-card, .testimonial-card { padding: 14px 8px; border-radius: 7px; }
}

/* ======= ACCESSIBILITY FOCUS ======= */
:focus-visible {
  outline: 2px solid #b57417;
  outline-offset: 2px;
}

/* ======= PRINT SUPPORT (if needed in future) ======= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff !important; color: #111 !important; }
}
