/* --- CSS RESET & BASE TYPOGRAPHY --- */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #222;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-style: none;
}
a {
  color: #21416B;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F9BB1C;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-top: 8px;
  margin-bottom: 16px;
  padding-left: 0;
}
li {
  margin-bottom: 8px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1a2440;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: #222;
  font-size: 1rem;
}
blockquote {
  font-style: italic;
  color: #21416B;
  background: #F5F5F5;
  border-left: 4px solid #F9BB1C;
  padding: 16px 24px;
  margin: 0 0 16px 0;
  border-radius: 8px;
}

/* --- SHARED LAYOUT CLASSES --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(33,65,107,0.06);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(33,65,107,0.13);
  transform: translateY(-2px) scale(1.01);
}
.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;
  padding: 20px;
  background: #F5F5F5;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(33,65,107,0.05);
  margin: 20px 0;
  color: #1a2440;
  flex-direction: column;
}
.testimonial-author {
  font-weight: 600;
  color: #21416B;
  margin-top: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER / NAVIGATION --- */
header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ececec;
    padding: 18px 0 18px 0;
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 20;
    justify-content: center;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  margin-right: 24px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  font-weight: 500;
  opacity: 0.9;
  padding: 4px 0;
  transition: color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #21416B;
  opacity: 1;
  border-bottom: 2px solid #F9BB1C;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #21416B;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 3px 12px rgba(33,65,107,0.10);
  letter-spacing: 0.03em;
  cursor: pointer;
  margin-left: 24px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F9BB1C;
  color: #1a2440 !important;
  box-shadow: 0 8px 16px rgba(33,65,107,0.15);
  transform: translateY(-2px) scale(1.03);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #21416B;
  font-size: 2rem;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  display: none;
  z-index: 110;
  margin-left: 12px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ececec;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  background: #fff;
  box-shadow: -2px 0 16px rgba(33,65,107,0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.7,0,.3,1);
  z-index: 120;
  padding: 32px 24px 24px 24px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #21416B;
  font-size: 2rem;
  padding: 6px 8px;
  border-radius: 6px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F5F5F5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #222;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 0;
  border-bottom: 1px solid #ececec;
  font-weight: 500;
  transition: color 0.17s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #21416B;
  background: #F5F5F5;
}

@media (max-width: 1024px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 600px) {
  .mobile-menu {
    width: 100vw;
    padding: 32px 8vw 24px 8vw;
  }
}

/* --- HERO, CTA, AND SECTION STYLES --- */
.hero {
  background: #F5F5F5;
  padding: 64px 0 36px 0;
  border-bottom: 1px solid #ececec;
}
.hero h1 {
  font-size: 2.65rem;
  color: #21416B;
  margin-bottom: 12px;
}
.hero-subline {
  font-size: 1.18rem;
  color: #222;
  opacity: 0.93;
  margin-bottom: 20px;
  max-width: 580px;
}
.cta {
  padding: 48px 0;
  text-align: center;
  background: #fff;
}
.cta h2 {
  font-size: 2rem;
}
.cta .cta-btn {
  margin-top: 18px;
}

/* --- FEATURES SECTION --- */
.features {
  background: #fff;
  padding: 44px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-grid > div {
  background: #F5F5F5;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  border-radius: 12px;
  padding: 28px 20px 22px 20px;
  box-shadow: 0 2px 8px rgba(33,65,107,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 16px rgba(33,65,107,0.10);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}

/* --- ABOUT: TEAM BIOS --- */
.team-bio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.team-bio-grid > div {
  background: #F5F5F5;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(33,65,107,0.08);
  padding: 18px 16px;
  min-width: 200px;
  flex: 1 1 230px;
}

.founders-story {
  margin-top: 24px;
  background: #fff;
  padding: 18px 16px;
  border-radius: 8px;
  font-size: 1rem;
  color: #3b3b3b;
  box-shadow: 0 1px 6px rgba(33,65,107,0.04);
}

/* --- LEGAL / TEXT-SECTION STYLE --- */
.legal, .about, .services, .contact, .thank-you {
  padding: 30px 0;
  background: #fff;
}
.text-section {
  margin: 0 0 8px 0;
  font-size: 1rem;
}
.text-section h3 {
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 10px;
}
.quick-links {
  margin-top: 10px;
  font-size: 1rem;
  color: #21416B;
}
.quick-links a {
  text-decoration: underline;
  color: #21416B;
  font-weight: 500;
  margin: 0 4px;
  opacity: 0.85;
}
.quick-links a:hover {
  color: #F9BB1C;
  opacity: 1;
}
.local-highlights ul {
  margin-left: 22px;
}

/* --- BLOG POSTS LIST --- */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 10px;
}
.recent-posts-list li {
  list-style: none;
  background: #F5F5F5;
  border-radius: 10px;
  padding: 18px 16px;
  box-shadow: 0 1px 6px rgba(33,65,107,0.04);
}
.highlighted-story {
  background: #fff;
  border-left: 4px solid #21416B;
  border-radius: 0 10px 10px 0;
  padding: 18px 18px;
  box-shadow: 0 1px 6px rgba(33,65,107,0.04);
  margin-top: 30px;
  font-size: 1rem;
  color: #222;
}

/* --- ADDRESS / CONTACT PAGE --- */
.address-block, .phone-email-info {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 16px 14px;
  margin-bottom: 16px;
  box-shadow: 0 1.5px 7px rgba(33,65,107,0.04);
}
.address-block img, .phone-email-info img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 8px;
}
.phone-email-info a {
  color: #21416B;
  text-decoration: underline;
}

/* --- THANK YOU SECTION --- */
.thank-you ul {
  margin-left: 24px;
}
.thank-you .cta-btn {
  margin-top: 18px;
  margin-bottom: 10px;
}
.next-steps {
  background: #F5F5F5;
  margin-top: 24px;
  padding: 16px 14px;
  border-radius: 10px;
  box-shadow: 0 1.5px 7px rgba(33,65,107,0.04);
}
.next-steps a {
  color: #21416B;
}
.next-steps a:hover {
  color: #F9BB1C;
}

/* --- FOOTER --- */
footer {
  padding: 36px 0 20px 0;
  background: #fff;
  border-top: 1px solid #ececec;
  margin-top: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #21416B;
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.85;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.17s, border 0.14s;
}
.footer-nav a:hover {
  color: #F9BB1C;
  border-bottom: 2px solid #F9BB1C;
  opacity: 1;
}
.footer-info {
  color: #717171;
  font-size: 0.98rem;
  text-align: center;
  margin-top: 6px;
}
/* --- WEATHER & SPECIALS --- */
.weather-widget {
  background: #fffbe6;
  border: 1px solid #F9BB1C;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: #1a2440;
  box-shadow: 0 2px 8px rgba(249,187,28,0.07);
}
.indoor-activity-list {
  margin-bottom: 16px;
}
.weather-based-recommendations {
  margin-top: 18px;
}
.weather-based-recommendations ul {
  margin-left: 22px;
}

/* --- LOCATION TIP --- */
.location-snippets p {
  background: #F5F5F5;
  color: #21416B;
  border-radius: 7px;
  padding: 12px 16px;
  margin-top: 14px;
  font-size: 1rem;
}

/* --- COOKIES CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border: 1.5px solid #ececec;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(33,65,107,0.13);
  z-index: 1000;
  padding: 32px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(.62,.41,.53,1.02), opacity 0.22s;
  opacity: 1;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 28px;
  padding: 10px 22px;
  cursor: pointer;
  font-weight: 600;
  background: #F5F5F5;
  color: #21416B;
  box-shadow: 0 1.5px 8px rgba(33,65,107,0.05);
  transition: background 0.17s, color 0.17s, box-shadow 0.2s;
}
.cookie-btn.accept {
  background: #21416B;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F9BB1C;
  color: #1a2440;
}
.cookie-btn.reject {
  background: #F5F5F5;
  color: #21416B;
  border: 1.5px solid #ececec;
}
.cookie-btn.reject:hover {
  background: #ececec;
}
.cookie-settings-btn {
  background: #fff;
  color: #21416B;
  border: 1.5px solid #F9BB1C;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F9BB1C;
  color: #1a2440;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(33,65,107,0.18);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 36px rgba(33,65,107,0.18);
  max-width: 440px;
  width: 92vw;
  padding: 36px 30px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.cookie-modal-content h2 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  color: #21416B;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: #ececec;
  border-radius: 15px;
  position: relative;
  transition: background 0.13s;
  cursor: pointer;
  border: none;
}
.cookie-toggle.on {
  background: #F9BB1C;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.15s;
}
.cookie-toggle.on:before {
  transform: translateX(20px);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #21416B;
  align-self: flex-end;
  margin-bottom: 14px;
  cursor: pointer;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .container {
    max-width: 94vw;
  }
  .feature-grid, .team-bio-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid > div, .team-bio-grid > div {
    min-width: 180px;
    max-width: 100%;
    flex: 1 1 150px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .container {
    padding: 0 10px;
  }
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.12rem;
  }
  .content-wrapper {
    gap: 16px;
  }
  .feature-grid, .team-bio-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .team-bio-grid > div {
    max-width: 100%;
    min-width: 0;
    padding: 18px 12px 16px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .main-nav, .cta-btn {
    display: none !important;
  }
  .section {
    margin-bottom: 44px;
    padding: 26px 8px;
  }
  footer {
    padding: 22px 0 9px 0;
    margin-top: 32px;
  }
  .cookie-banner {
    padding: 20px 8px 14px 8px;
    font-size: 0.95em;
  }
  .cookie-modal-content {
    padding: 20px 10px 12px 10px;
  }
}
@media (max-width: 480px) {
  .footer-info p {
    font-size: 0.85rem;
  }
  .copyright {
    font-size: 0.85rem;
  }
  .feature-grid > div {
    padding: 14px 6px;
  }
}

/* --- TRANSITIONS / MICRO-INTERACTIONS --- */
button, .cta-btn, .cookie-btn, .cookie-settings-btn {
  transition: background 0.14s, color 0.14s, box-shadow 0.16s;
}

/* --- Z-INDEX MANAGEMENT --- */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 1000;
}
.mobile-menu {
  z-index: 1200;
}
.cookie-modal {
  z-index: 1300;
}

/* --- CUSTOM SCROLLBAR FOR ACCENT --- */
::-webkit-scrollbar {
  width: 10px;
  background: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  background: #ececec;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #e0e0e0;
}
