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

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5F3F0;
  color: #2C2C2E;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1761A0;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #F1A232;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* Brand Colors */
:root {
  --primary: #1761A0;
  --secondary: #F5F3F0;
  --accent: #FFD729;
  --accent-dark: #F1A232;
  --white: #fff;
  --card-shadow: 0 2px 12px rgba(23,97,160,0.08), 0 1.5px 6px rgba(46,39,39,0.05);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1761A0;
  font-weight: 800;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
}
p, li, span, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #333;
}
p {
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: 24px 20px;
  min-width: 260px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.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: 16px;
  background: #fffbea;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(23,97,160,0.07);
  padding: 24px 20px;
  margin-bottom: 20px;
  border-left: 7px solid var(--accent);
  color: #2C2C2E;
}
.testimonial-card p {
  color: #2C2C2E;
  font-weight: 500;
}
.testimonial-card strong {
  color: var(--primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #FFD729 0%, #F5F3F0 100%);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 32px rgba(23,97,160,0.10);
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;
  letter-spacing: -2px;
  color: #1761A0;
  font-weight: 900;
}
.hero p {
  font-size: 1.25rem;
  color: #302E2B;
  margin-bottom: 0;
}

/* ACTIVITIES, CARDS, FILTER BAR, ETC. */
.activity-card-list,
.outdoor-activity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.activity-card,
.outdoor-activity-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 24px 20px;
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 0 240px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.activity-card:hover,
.outdoor-activity-grid > div:hover {
  transform: translateY(-6px) scale(1.025) rotate(-1deg);
  box-shadow: 0 6px 32px rgba(255, 215, 41, 0.07), var(--card-shadow);
  z-index: 2;
}

.filters-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.filters-group button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 9px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: 700;
  transition: background 0.25s, color 0.18s, transform 0.1s;
  box-shadow: 0 1.5px 5px rgba(23,97,160,0.06);
}
.filters-group button:hover {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.07);
}

.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 6px 12px;
  border-radius: 24px;
  box-shadow: 0 1px 8px rgba(23,97,160,0.07);
  gap: 6px;
}
.search-bar input {
  border: none;
  background: transparent;
  font-size: 1rem;
  outline: none;
  min-width: 130px;
  flex-grow: 1;
}
.search-bar img {
  width: 22px;
  opacity: 0.6;
}

.calendar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.calendar-filters button {
  background: var(--accent);
  color: #302E2B;
  border: none;
  border-radius: 18px;
  padding: 9px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.25s, color 0.18s, transform 0.1s;
  box-shadow: 0 1.5px 5px rgba(23,97,160,0.04);
}
.calendar-filters button:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.07);
}

.event-calendar ul {
  list-style: disc inside;
  padding-left: 0;
}
.event-calendar li {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 12px 16px;
  box-shadow: 0 1px 6px rgba(23,97,160,0.04);
}

/* WEATHER WIDGET */
.weather-widget {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #E6F4FD;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 3px 15px rgba(23,97,160,0.07);
}
.weather-widget img {
  width: 38px;
  margin-right: 8px;
}
.weather-widget span {
  color: #005087;
  font-weight: 700;
  margin-left: 10px;
}
.weather-widget .weather-tips {
  margin-top: 5px;
  color: #2C2C2E;
  font-size: 0.99rem;
}

/* CTA BUTTONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #2C2C2E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.18rem;
  border-radius: 28px;
  border: none;
  padding: 14px 36px;
  margin-top: 10px;
  margin-bottom: 4px;
  cursor: pointer;
  box-shadow: 0 2.5px 10px rgba(255, 215, 41, 0.11);
  transition: background 0.2s, transform 0.17s, color 0.22s;
  position: relative;
  letter-spacing: 1px;
  outline: none;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.04) rotate(-1deg);
}

/* HEADER, NAVIGATION & MOBILE MENU */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(23,97,160,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.main-nav a {
  color: var(--primary);
  font-size: 1.00rem;
  padding: 6px 0 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.21s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent-dark);
  border-bottom: 2px solid var(--accent);
}
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  border-radius: 100%;
  padding: 0 16px;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 1001;
}
.mobile-menu-toggle:active {
  background: var(--primary);
  color: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(255,255,255,0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100vw);
  transition: transform 0.30s cubic-bezier(0.87,0.02,0.7,1.08);
  box-shadow: -2px 0 24px rgba(23,97,160,0.1);
  padding: 0 0 30px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 2.3rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin: 22px 18px 9px 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover {
  background: var(--primary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 18px 28px;
  border-radius: 16px;
  transition: color 0.18s, background 0.14s;
  background: transparent;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: #302E2B;
}

/* Hide main nav/show hamburger on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #1761A0;
  color: #fff;
  margin-top: 60px;
  font-size: 1rem;
  border-radius: 28px 28px 0 0;
}
footer span {
  color: white !important;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 34px;
  padding-bottom: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #FFD729;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
}
.footer-contact img {
  height: 18px; width: 18px; vertical-align: middle; margin-right: 6px;
}
.footer-brand {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  color: #FFD729;
  margin-top: 8px;
}

/* CONTACT INFO LIST */
.contact-info-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1rem;
}
.contact-info-list img {
  height: 20px; width: 20px; vertical-align: middle; margin-right: 7px;
}

/* SPACING Fixes for Cards, Grids, Lists, Inputs etc. */
ul, ol, .contact-info-list {
  margin-bottom: 18px;
}
.activity-card-list .activity-card:last-child,
.outdoor-activity-grid > div:last-child {
  margin-bottom: 0;
}
.section:last-of-type {
  margin-bottom: 0;
}

/* FUN AND PLAYFUL FONT ACCENTS */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

/* Micro-interactions & Animations */
.cta-btn,
.filters-group button,
.activity-card,
.testimonial-card,
.calendar-filters button {
  transition: transform 0.18s, box-shadow 0.22s, background 0.18s, color 0.22s;
}
.activity-card:active,
.filters-group button:active {
  transform: scale(0.98) rotate(2deg);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  background: #fffbea;
  color: #2C2C2E;
  border-top: 2.5px solid var(--accent);
  box-shadow: 0 -4px 32px rgba(255,215,41,0.12);
  width: 100vw;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  padding: 18px 20px 14px 20px;
  animation: comeUp 0.7s cubic-bezier(0.68,0.1,0.36,1.7);
}
.cookie-banner p {
  font-size: 1rem;
  color: #333;
  max-width: 500px;
}
.cookie-banner .cookie-choices {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-banner button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.17s, transform 0.1s;
  box-shadow: 0 1px 6px rgba(23,97,160,0.05);
}
.cookie-banner button.accept {
  background: var(--accent);
  color: #302E2B;
}
.cookie-banner button.settings {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 9px 16px;
}
.cookie-banner button:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.06);
}
.cookie-banner button.settings:hover {
  background: var(--primary);
  color: #fff;
}
@keyframes comeUp {
  0% { transform: translateY(100%); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(23,97,160,0.11);
  z-index: 4500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fffbea;
  border-radius: 20px;
  box-shadow: 0 6px 40px rgba(23,97,160,0.13);
  min-width: 320px;
  max-width: 90vw;
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 13px;
}
.cookie-modal .category-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
}
.cookie-modal .category-list input[type='checkbox'] {
  accent-color: var(--primary);
  width: 18px; height: 18px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
  transition: background 0.14s, color 0.12s;
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--primary);
  color: #fff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .footer-nav { flex-direction: column; gap: 8px; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .container { padding-left: 10px; padding-right: 10px; }
  .content-wrapper { gap: 18px; }
  .section { margin-bottom: 36px; padding: 26px 8px; }
  .card-container, .content-grid, .activity-card-list, .outdoor-activity-grid { gap: 14px; }
  .activity-card, .outdoor-activity-grid > div { min-width: 100%; }
  .testimonial-card { padding: 16px 8px; font-size: 1rem; margin-bottom: 14px; }
  .weather-widget { padding: 13px 7px; }
  .footer-contact { font-size: 0.98rem; gap: 6px; }
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 18px; }
}
@media (max-width: 600px) {
  .footer-nav { font-size: 0.93rem; gap: 5px; }
  .footer-contact span { font-size: 0.97rem; }
  .cookie-modal {
    min-width: 95vw;
    padding: 20px 8px 16px 8px;
  }
}
@media (max-width: 570px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
  .activity-card-list,.outdoor-activity-grid { flex-direction: column; }
  .filters-group, .calendar-filters { flex-direction: column; gap: 10px; }
  .search-bar { flex-direction: row; }
  .section { padding: 17px 4px; }
}

/* PLAYFUL VISUALS & ACCENTS */
.hero, .cta-btn, .activity-card, .testimonial-card, .weather-widget, .card, .cookie-modal, .cookie-banner {
  box-shadow: 0 3px 13px rgba(23,97,160,0.07) !important;
}
.card, .activity-card, .testimonial-card, .weather-widget, .cookie-modal {
  border-radius: 18px;
  border: none !important;
}
/* Decorative accent for fun */
.activity-card:before {
  content: '';
  display: block;
  position: absolute;
  top: 12px; left: -8px;
  width: 17px; height: 17px;
  background: var(--accent);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.23;
}
.testimonial-card:after {
  content: '😀';
  position: absolute;
  bottom: 10px; right: 20px;
  font-size: 2.2rem;
  opacity: 0.13;
  pointer-events: none;
}
.hero .content-wrapper:after {
  display: block;
  content: '';
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 0;
  opacity: 0.23;
  pointer-events: none;
}

/* FUN FONTS - Montserrat displays */
h1, h2, h3, .cta-btn, .main-nav a, .mobile-nav a, .filters-group button, .calendar-filters button {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900 !important;
}

/* FORM & INLINE ELEMENTS */
input[type="text"], input[type="email"], textarea {
  border: 1.5px solid #DDD;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 1rem;
  margin-bottom: 14px;
  transition: border 0.18s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--primary);
  outline: none;
}

/* Z-INDEX LAYERS FOR MODALS & MENUS */
.mobile-menu,
.cookie-modal-overlay {
  z-index: 4500;
}

/* Accessibility: Focus indicators */
a:focus, button:focus, .cta-btn:focus {
  box-shadow: 0 0 0 3px var(--accent);
  outline: none;
}

/* Ensure all elements have spacing, prevent overlapping */
.card, .activity-card, .testimonial-card, .weather-widget, .footer-nav a {
  margin-bottom: 20px;
}
.card:last-child, .activity-card:last-child, .testimonial-card:last-child, .weather-widget:last-child {
  margin-bottom: 0;
}

/* Hide visually - helpers (for toggles etc.) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
