/* 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.6;
  background: #f3f4ef;
  color: #213d2f;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* NATURE ORGANIC COLOR PALETTE */
:root {
  --primary: #295C83;
  --primary-dark: #20496a;
  --secondary: #E4ECF4;
  --background: #f3f4ef;
  --surface: #ffffff;
  --accent: #F7B32B;
  --accent-dark: #c2881c;
  --text: #213d2f; /* dark greenish blue */
  --text-light: #71856b; /* soft olive */
  --green: #71a669;
  --light-green: #c9e6bb;
  --brown: #b79061;
}

/* FONTS */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: var(--background);
  color: var(--text);
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary-dark);
  letter-spacing: 0.01em;
}
h1 { font-size: 2.2rem; margin-bottom: 24px; font-weight: 700; }
h2 { font-size: 1.6rem; margin-bottom: 20px; font-weight: 700; }
h3 { font-size: 1.15rem; margin-bottom: 15px; font-weight: 600; }
h4, h5 { font-size: 1rem; font-weight: 600; }
strong { color: var(--primary); font-weight: 600; }
p, li {
  font-size: 1rem;
  color: var(--text);
}

/* CONTAINER & FLEX LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(65, 93, 84, 0.06);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(44, 77, 51, 0.08);
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 310px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(42, 92, 72, 0.16);
  transform: translateY(-2px) scale(1.018);
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--light-green);
  border-left: 5px solid var(--green);
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(44,77,51,0.08);
  max-width: 600px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card p {
  color: #153720;
  font-size: 1.125rem;
  font-style: italic;
}
.testimonial-card strong {
  color: #27543b;
  font-size: 1rem;
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(44, 77, 51, 0.13);
  transform: translateY(-3px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTIONS */
.hero, .weather-hero, .indoor-hero, .inspiration-hero, .thank-you {
  background: linear-gradient(110deg, #d7ead9 70%, #e4ecf4 100%);
  min-height: 320px;
  padding: 60px 0 44px 0;
  border-radius: 0 0 40px 40px;
  position: relative;
  margin-bottom: 60px;
  box-shadow: 0 4px 32px rgba(41,92,131,0.07);
  display: flex;
  align-items: center;
}

.hero h1, .weather-hero h1, .indoor-hero h1, .inspiration-hero h1, .thank-you h1 {
  color: var(--primary);
}
.hero p, .weather-hero p, .indoor-hero p, .inspiration-hero p, .thank-you p {
  color: var(--text-light);
  margin-bottom: 18px !important;
}

/* NAVIGATION STYLES */
header {
  background: var(--surface);
  box-shadow: 0 2px 12px rgba(65, 93, 84, 0.05);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 48px;
  width: auto;
  border-radius: 24px 18px 24px 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--primary-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  border-radius: 12px;
  padding: 6px 14px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--light-green);
  color: var(--green);
}
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 24px 12px 24px 12px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(75,123,89,0.10);
  transition: background 0.16s, box-shadow 0.18s, transform 0.15s;
  margin-left: 14px;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 8px 28px rgba(247, 179, 43, 0.13);
  transform: scale(1.048);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 14px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1201;
  box-shadow: 0 2px 6px rgba(43,66,48,0.09);
  transition: background 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--primary-dark);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(235,240,222,0.98);
  z-index: 1300;
  transform: translateX(100vw);
  transition: transform 0.28s cubic-bezier(.57,.33,.43,1.03);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 16px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 1.45rem;
  margin-bottom: 16px;
  transition: background 0.17s;color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--green);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  color: var(--primary-dark);
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 13px 10px 13px 10px;
  border-radius: 14px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--light-green);
  color: var(--green);
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* HERO, FEATURES, ACTIVITIES, CARDS STYLES */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.features ul li {
  background: #f6f9f5;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(106,168,113,0.09);
  padding: 26px 18px;
  flex: 1 1 225px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 210px;
  margin-bottom: 20px;
}
.features img {
  width: 48px;
  height: 48px;
}
.features strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.highlights ul li {
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(90,135,85,0.07);
  border-radius: 18px;
  padding: 26px 18px;
  flex: 1 1 310px;
  min-width: 240px;
  margin-bottom: 20px;
}
.activity-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.95rem;
  background: var(--light-green);
  color: var(--green);
  border-radius: 16px;
  padding: 3px 12px 3px 6px;
  font-weight: 600;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(66,124,60,0.05);
}

.categories .category-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.categories .category-tiles > div {
  background: #f5f3e9;
  box-shadow: 0 1px 5px rgba(149,129,96,0.06);
  border-radius: 18px 40px 18px 40px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-width: 180px;
  padding: 30px 18px 20px 18px;
  transition: box-shadow 0.18s, transform 0.14s;
  margin-bottom: 20px;
}
.categories .category-tiles > div:hover {
  box-shadow: 0 8px 18px rgba(247,179,43,0.10),0 2px 10px rgba(41,92,131,0.08);
  transform: translateY(-2px) scale(1.025);
}
.categories .category-tiles img {
  width: 42px;
  height: 42px;
}

.activity-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 17px;
}
.activity-filters li {
  display: flex;
  align-items: center;
  background: var(--light-green);
  border-radius: 15px;
  padding: 5px 15px;
  gap: 8px;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.activity-list li {
  background: var(--surface);
  border-left: 4px solid var(--primary);
  border-radius: 14px;
  box-shadow: 0 1px 5px rgba(41,92,131,0.05);
  padding: 18px 18px 10px 22px;
  margin-bottom: 20px;
}

/* BLOG TEASERS */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-list li {
  background: #f6f4ef;
  border-left: 5px solid var(--accent);
  border-radius: 18px;
  padding: 24px 18px 14px 22px;
  flex: 1 1 310px;
  min-width: 240px;
  margin-bottom: 20px;
  box-shadow: 0 1px 5px rgba(149,129,96,0.06);
}

.tips ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 14px;
}
.tips li strong {
  color: var(--green);
}

/* FOOTER STYLES */
footer {
  background: #e3efe3;
  box-shadow: 0 -2px 8px rgba(53,72,56,0.04);
  border-radius: 28px 28px 0 0;
  padding: 24px 0 18px 0;
  margin-top: 62px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--primary-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 10px;
  padding: 5px 12px;
  transition: background 0.12s, color 0.12s;
}
.footer-nav a:hover { background: var(--light-green); color: var(--green); }
.footer-contact {
  min-width: 220px;
  font-size: 0.98rem;
  color: var(--text-light);
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.footer-contact img {
  width: 20px; height: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 38px;
  height: auto;
}
.footer-brand span {
  font-size: 0.95rem;
  color: #899e8d;
}

/* FAQ + ADDRESS */
.faq ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 5px;
}
.faq li strong {
  color: var(--primary-dark);
  font-weight: 600;
}
.faq li p {
  margin-top: 3px;
  color: var(--text-light);
}
address {
  font-style: normal;
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 7px;
}

/* CONTACT */
.contact-details {
  margin-top: 10px;
  margin-bottom: 24px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 1.06rem;
}
.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section li img {
  width: 20px; height: 20px;
}

/* WEATHER FILTER */
.weather-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}
.weather-switcher button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--green);
  border-radius: 14px;
  border: 2px solid #c9e6bb;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.12s, border 0.12s, color 0.11s;
}
.weather-switcher button:hover, .weather-switcher button:focus {
  background: var(--light-green);
  border-color: var(--green);
  color: var(--primary-dark);
}

/* COOKIE CONSENT STYLES */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #f3f4ef;
  color: var(--text);
  border-top: 3px solid var(--accent);
  box-shadow: 0 -2px 12px rgba(41,92,131,0.06);
  z-index: 2200;
  padding: 16px 10px 16px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  animation: fadeinbanner 0.5s;
  font-size: 1rem;
}
@keyframes fadeinbanner {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 18px;
  border: none;
  padding: 8px 22px;
  margin-left: 0;
  transition: background 0.16s, color 0.13s;
}
.cookie-accept {
  background: var(--green);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--accent);
  color: var(--primary-dark);
}
.cookie-reject {
  background: #fbebe4;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--brown);
  color: var(--surface);
}
.cookie-settings {
  background: var(--accent);
  color: #fff;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--primary);
  color: #fff;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(41, 92, 131, 0.16);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinmodal 0.33s;
}
@keyframes fadeinmodal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: var(--surface);
  border-radius: 28px;
  box-shadow: 0 8px 50px rgba(41, 92, 131, 0.13);
  padding: 38px 28px 28px 28px;
  width: 94vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-category .cookie-toggle {
  background: var(--light-green);
  border-radius: 18px;
  padding: 4px 18px;
  font-weight: 600;
  border: 1px solid #b2d89a;
  color: var(--green);
}
.cookie-category .cookie-toggle[disabled] {
  background: #e4eadd;
  color: #809876;
  cursor: default;
  opacity: 0.75;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  font-size: 1.26rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cookie-modal-close:hover {
  background: var(--green);
  color: #fff;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal .modal-actions button {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 18px;
  border: none;
  padding: 8px 24px;
  font-weight: 600;
  transition: background 0.17s, color 0.13s;
}
.cookie-modal .cookie-accept {
  background: var(--green);
  color: #fff;
}
.cookie-modal .cookie-accept:hover {
  background: var(--accent);
  color: var(--primary-dark);
}
.cookie-modal .cookie-reject {
  background: #e9ddd2;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.cookie-modal .cookie-reject:hover {
  background: var(--brown);
  color: #fff;
}

/* MEDIA QUERIES/RESPONSIVE */
@media (max-width: 991px) {
  .categories .category-tiles, .card-container, .content-grid, .highlights ul, .features ul, .blog-list, .activity-filters {
    flex-direction: column;
    gap: 20px;
  }
  .categories .category-tiles > div,
  .highlights ul li,
  .features ul li,
  .card {
    min-width: unset;
    width: 100%;
  }
  .section, .hero, .weather-hero, .indoor-hero, .inspiration-hero, .thank-you {
    padding: 32px 8px;
    margin-bottom: 32px;
    border-radius: 0 0 28px 28px;
  }
  .footer-nav, .footer-contact, .footer-brand, footer .container {
    width: 100%;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.12rem; }
  .hero, .weather-hero, .indoor-hero, .inspiration-hero, .thank-you, .section {
    padding: 18px 0 16px 0;
    border-radius: 0 0 16px 16px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .weather-switcher, .activity-filters {
    gap: 10px;
    flex-direction: column;
  }
}

/* ORGANIC/NATURAL SHAPE ACCENTS (EXAMPLES) */
.hero, .weather-hero, .indoor-hero, .inspiration-hero, .thank-you {
  border-bottom-left-radius: 70px 40px;
  border-bottom-right-radius: 46px 35px;
  background: linear-gradient(112deg, #e4ecf4 50%, #c9e6bb 100%);
}
.categories .category-tiles > div,
.features ul li,
.highlights ul li,
.card,
.testimonial-card {
  border-radius: 28px 18px 22px 38px;
}

/* ANIMATIONS & MICROINTERACTIONS */
.cta-button,
.main-nav a, .footer-nav a, .activity-badge, .feature-item,
.card, .testimonial-card, .categories .category-tiles > div, .blog-list li, .highlights ul li {
  transition: box-shadow 0.17s, background 0.12s, color 0.12s, transform 0.13s;
}
.cta-button:active {
  transform: scale(0.98);
}

/* MISCELLANEOUS */
::-webkit-scrollbar {
  width: 9px;
  background: #e4ecf4;
}
::-webkit-scrollbar-thumb {
  background: #bad6b1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: #a6cb97; }

/* A11Y FOCUS */
a:focus, button:focus, .cta-button:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 2px;
}

/* Ensure all required spacing */
.card, .card-container > * {
  margin-bottom: 20px;
}
.section > *, .section .content-wrapper > * {
  margin-bottom: 20px;
}

/* Hide cookie modal/banner by default, .open displays them */
.cookie-banner, .cookie-modal { display: none; }
.cookie-banner.open, .cookie-modal.open { display: flex; }

/* Z-INDEX SAFETY FOR ALL INTERACTIVE ELEMENTS */
.mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal { z-index: 2500; }
