/* --- CSS RESET & BASE STYLES --- */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1D3557;
  background: linear-gradient(135deg, #F7F9FB 60%, #F5A623 170%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: #1D3557;
  text-decoration: none;
  transition: color 0.2s;
}
strong {
  font-weight: 600;
}

/* --- FONT FAMILIES --- */
h1, h2, h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
}
h1 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.125rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #35527e;
  margin-bottom: 18px;
  font-weight: 400;
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper, .text-section, .card-container, .feature-grid, .content-grid, .card-grid, .tips-grid, .ideas-list, .activities-list, .indoor-activities-list, .weather-overview, .activity-recommendations, .weather-conditions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(29,53,87,0.03);
}

/* --- HEADER --- */
header {
  background: linear-gradient(90deg, #F5A623 0%, #F7F9FB 60%);
  box-shadow: 0 2px 6px rgba(29,53,87,0.04);
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 44px;
  width: auto;
  transition: transform 0.25s;
}
.logo img:hover {
  transform: scale(1.08) rotate(-3deg);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  color: #1D3557;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F5A623;
  background: #f7f9fb;
}

.cta-button {
  background: #1D3557;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 24px;
  box-shadow: 0 3px 16px rgba(48,64,112,0.07);
  transition: background 0.2s, box-shadow 0.25s, color 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #F5A623;
  color: #1D3557;
  box-shadow: 0 4px 20px rgba(245,166,35,0.13);
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu-toggle {
  background: #fff;
  color: #F5A623;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px rgba(29,53,87,0.05);
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: background 0.2s;
  z-index: 202;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F5A623;
  background: #fffbe6;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  box-shadow: 0 12px 32px rgba(29,53,87,0.19);
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.9,0,.16,1);
  z-index: 201;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #1D3557;
  font-size: 2.25rem;
  padding: 16px 22px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 202;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F5A623;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.2rem;
  padding: 12px 0;
  color: #1D3557;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  transition: background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f7f9fb;
  color: #F5A623;
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- HERO/SECTIONS/FEATURES --- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
  border-radius: 0;
}
section .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.content-wrapper, .text-section {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(245,166,35,0.11), 0 2px 8px 0 rgba(29,53,87,0.04);
  padding: 32px 24px;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

/* FEATURE GRID (Index) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.feature-grid > div {
  background: #F7F9FB;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(29,53,87,0.04);
  flex: 1 1 220px;
  min-width: 220px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.17s, transform 0.18s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 28px rgba(245,166,35,0.13);
  transform: translateY(-2px) scale(1.025);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
/* --- IDEAS, ACTIVITIES, INDOOR LISTS --- */
.ideas-list, .activities-list, .indoor-activities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.ideas-list li, .activities-list li, .indoor-activities-list li {
  background: #F7F9FB;
  border-radius: 16px;
  flex: 1 1 220px;
  min-width: 220px;
  padding: 24px 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(29,53,87,.07);
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.17s;
}
.ideas-list li:hover, .activities-list li:hover, .indoor-activities-list li:hover {
  box-shadow: 0 6px 33px rgba(29,53,87,0.14);
  transform: translateY(-3px) scale(1.02);
}
.ideas-list img, .activities-list img, .indoor-activities-list img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-right: 4px;
}
.ideas-list li > div, .activities-list li > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/*.quick-tips*/
.quick-tips {
  margin-top: 12px;
  background: #FFF2D9;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.99rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.quick-tips ul {
  margin: 0;
  margin-top: 8px;
  gap: 6px;
  display: flex;
  flex-direction: column;
}
.quick-tips li {
  margin-bottom: 0px;
  padding-left: 8px;
  list-style: disc;
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 6px;
  align-items: flex-start;
}
.tips-grid > div {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(29,53,87,0.07);
  flex: 1 1 200px;
  min-width: 179px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.tips-grid > div:hover {
  box-shadow: 0 4px 20px rgba(245,166,35,0.13);
  transform: scale(1.025);
}
.tips-grid img {
  width: 32px;
  height: 32px;
}

.activity-categories {
  margin-top: 20px;
  font-size: 1rem;
  color: #2d4262;
}

/* --- WEATHER WIDGET --- */
.weather-overview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.weather-overview > div {
  background: #F7F9FB;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(29,53,87,0.06);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 240px;
}
.weather-overview img {
  width: 42px;
  margin-bottom: 10px;
}
.weather-overview ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.weather-conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.weather-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFF;
  border-radius: 16px;
  border: 1.5px solid #F5A623;
  color: #1D3557;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  padding: 8px 24px 8px 12px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(245,166,35,0.09);
  transition: background 0.18s, color 0.18s, box-shadow 0.20s;
}
.weather-btn img {
  width: 22px;
  height: 22px;
}
.weather-btn:hover, .weather-btn:focus {
  background: #F7F9FB;
  color: #F5A623;
  box-shadow: 0 2px 12px rgba(29,53,87,0.07);
}

.activity-recommendations {
  background: #FFF2D9;
  border-radius: 13px;
  padding: 20px 18px;
  box-shadow: 0 1px 8px rgba(245,166,35,0.09);
  gap: 8px;
  margin-top: 20px;
}
.activity-recommendations ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7.5px;
}

/* --- CONTACT DETAILS --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 14px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-details img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}

.map-embed {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F7F9FB;
  border-radius: 11px;
  box-shadow: 0 1px 4px rgba(29,53,87,0.039);
  padding: 18px 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1D3557;
}

/* --- BADGES --- */
.commitment-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.commitment-badges span {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f7f9fb;
  border-radius: 9px;
  font-size: 0.95rem;
  padding: 7px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2d4262;
  box-shadow: 0 1px 4px 0 rgba(29,53,87,0.07);
}
.commitment-badges img {
  width: 20px;
  height: 20px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 28px;
  background: #F7F9FB;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(29,53,87,0.05);
  color: #243245;
  font-size: 1.07rem;
}
.testimonial-card p {
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #1D3557;
  opacity: 0.87;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- FOOTER --- */
footer {
  background: #1D3557;
  color: #fff;
  padding: 48px 0 36px 0;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.18s;
  opacity: 0.89;
  border-radius: 4px;
  padding: 5px 10px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F5A623;
  background: rgba(245,166,35,0.11);
}
.footer-info {
  text-align: center;
  font-size: 0.96rem;
  opacity: 0.87;
  margin-top: 10px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF2D9;
  color: #1D3557;
  box-shadow: 0 -4px 24px rgba(29,53,87,0.10);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  z-index: 850;
  animation: slideUp 0.43s cubic-bezier(.55,0,.9,1);
}
@keyframes slideUp {
  from { transform: translateY(80px); opacity: 0.2; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text { flex: 1; }
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 22px;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(245,166,35,0.10);
  transition: background 0.17s, color 0.13s, box-shadow 0.19s;
  margin-left: 0;
}
.cookie-btn.accept {
  background: #1D3557;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #1D3557;
  border: 1.5px solid #1D3557;
}
.cookie-btn.settings {
  background: #F7F9FB;
  color: #1D3557;
  border: 1.5px solid #F5A623;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F5A623;
  color: #1D3557;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F7F9FB;
  color: #F5A623;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fff;
  color: #F5A623;
}

/* COOKIES MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29,53,87,0.30);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.29s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 34px 28px;
  min-width: 290px;
  max-width: 96vw;
  box-shadow: 0 1px 32px 0 rgba(29,53,87,0.25);
  color: #1D3557;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: popIn 0.26s cubic-bezier(.6,1.2,.7,1.0);
}
@keyframes popIn {
  from { transform: scale(.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 15px;
  top: 13px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #1D3557;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #F7F9FB;
  border-radius: 22px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.19s;
  border: 1.5px solid #F5A623;
}
.cookie-toggle:checked {
  background: #F5A623;
  border-color: #1D3557;
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #1D3557;
  position: absolute;
  left: 3px;
  top: 2px;
  transition: left 0.2s;
}
.cookie-toggle:checked:before {
  left: 20px;
  background: #F7F9FB;
}
.cookie-modal-buttons {
  display: flex;
  gap: 17px;
  margin-top: 8px;
  align-items: center;
}

/* --- MISCELLANEOUS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #F7F9FB;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(29,53,87,.06);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f7f9fb;
  border-radius: 13px;
  padding: 18px 14px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .container {
    max-width: 940px;
  }
}
@media (max-width: 1020px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .ideas-list, .activities-list, .indoor-activities-list, .tips-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .ideas-list li, .activities-list li, .indoor-activities-list li, .tips-grid > div {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .section, section {
    margin-bottom: 36px;
    padding: 22px 0;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper, .text-section, .map-embed {
    padding: 16px 7px;
    border-radius: 12px;
  }
  .weather-overview > div {
    padding: 16px 8px;
  }
  .footer-nav {
    gap: 14px;
  }
}
@media (max-width: 650px) {
  .testimonial-card {
    padding: 18px 11px;
    border-radius: 9px;
    font-size: 1rem;
  }
  .footer-info {
    font-size: 0.9rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 9px;
  }
  .cookie-banner-buttons {
    width: 100%;
    flex-wrap: wrap;
    gap: 11px;
  }
  .cookie-btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
  .cookie-modal-content {
    padding: 17px 7px;
    min-width: 0;
  }
}
@media (max-width: 540px) {
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
@media (max-width: 480px) {
  .logo img {
    height: 34px;
  }
  .container { padding: 0 3px; }
  .footer-info { font-size: 0.83rem; }
}

/* --- SCROLLBAR DESIGN --- */
::-webkit-scrollbar {
  width: 10px;
  background: #f7f9fb;
}
::-webkit-scrollbar-thumb {
  background: #F5A623;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffc646;
}

/* --- FOCUS STYLES --- */
a:focus, button:focus, .cta-button:focus, .main-nav a:focus, .footer-nav a:focus {
  outline: 2px solid #F5A623;
  outline-offset: 2px;
}

/* --- MODERN MICRO-INTERACTIONS --- */
a, .cta-button, .card, .feature-grid > div, .weather-btn, .tips-grid > div, .footer-nav a, .mobile-nav a {
  transition: color 0.18s, background 0.18s, box-shadow 0.19s, transform 0.18s;
}

/* --- Z-INDEX GUIDELINES --- */
header { z-index: 100; }
.mobile-menu { z-index: 201; }
.mobile-menu-toggle { z-index: 202; }
.cookie-banner { z-index: 850; }
.cookie-modal { z-index: 900; }

/* --- OVERRIDES FOR GENERIC CLASSES (MANDATORY SPACING & FLEX) --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- END --- */