/* ================================================================================
   RESET & BASE STYLES
================================================================================ */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  color: #222;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #015C77;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F6BE36;
  outline: none;
}
ul, ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}
li {
  margin-bottom: 0.25rem;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
  padding: 0;
  color: inherit;
}
button {
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #015C77;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 16px;
  color: #343A40;
}
strong {
  font-weight: 600;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* ================================================================================
   FLEXBOX LAYOUT HELPERS
================================================================================ */
.feature-grid,
.card-container,
.card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.content-grid {
  gap: 20px;
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(40,56,72,0.08);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(1,92,119,0.10);
  transform: translateY(-3px) scale(1.012);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #EEF2F4;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(1,92,119,0.05);
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 280px;
}
.testimonial-card p {
  color: #222;
  font-size: 1.05rem;
}
.testimonial-card strong {
  color: #015C77;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================================================================================
   HEADER & NAVIGATION
================================================================================ */
header {
  background: #fff;
  border-bottom: 1px solid #eef2f4;
  box-shadow: 0 2px 12px rgba(1,92,119,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 20px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #015C77;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #F6BE36;
  color: #093b4b;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F6BE36;
  color: #015C77;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1.07rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(246,190,54,0.09);
  border: none;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.2s;
  display: inline-block;
  margin-top: 8px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #015C77;
  color: #F6BE36;
  box-shadow: 0 6px 22px rgba(1,92,119,0.11);
  transform: translateY(-1.5px) scale(1.03);
}

/* Hamburger Icon and Mobile Nav */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1111;
  font-size: 2.3rem;
  background: #FFF;
  color: #015C77;
  border-radius: 8px;
  padding: 8px 14px;
  box-shadow: 0px 1px 14px rgba(1,92,119,0.07);
  border: none;
  transition: background 0.18s;
}
.mobile-menu-toggle:active {
  background: #F6BE36;
  color: #015C77;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(1,92,119,0.94);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 28px 0 0;
  font-size: 2.5rem;
  background: none;
  color: #F6BE36;
  border: none;
  transition: color 0.12s, background 0.12s;
  border-radius: 12px;
  padding: 4px 10px;
  z-index: 9999;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F6BE36;
  color: #015C77;
}
.mobile-nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 16px;
  background: none;
  transition: background 0.17s, color 0.17s;
  width: 80vw;
  max-width: 340px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6BE36;
  color: #015C77;
}

/* ================================================================================
   MAIN & SECTIONS
================================================================================ */
main {
  padding: 0 0 48px 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.content-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}

/* Feature grid, activities, etc */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}
.feature-grid > div, .activity-card, .activity-idea, .tipps-card, .weather-card {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(1,92,119,0.05);
  padding: 26px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  transition: box-shadow 0.19s, transform 0.19s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-grid > div img {
  max-width: 48px;
  margin-bottom: 8px;
}
.feature-grid > div:hover, .activity-card:hover, .activity-idea:hover, .tipps-card:hover, .weather-card:hover {
  box-shadow: 0 8px 32px rgba(1,92,119,0.13);
  transform: translateY(-3px) scale(1.022);
}
.activity-filters, .quick-filters {
  display: flex;
  gap: 8px;
  font-size: 1.1rem;
  color: #015C77;
  margin-bottom: 12px;
  align-items: center;
}
.activity-filters strong {
  font-weight: 600;
  margin-right: 5px;
}
.activity-filters span, .quick-filters span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.97rem;
  background: #EEF2F4;
  color: #015C77;
  padding: 4px 10px;
  border-radius: 6px;
  margin: 0 2px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.drinnen-draussen-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.drinnen-draussen-toggle button {
  background: #EEF2F4;
  color: #015C77;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 5px;
  transition: background 0.16s, color 0.16s;
}
.drinnen-draussen-toggle button:hover, .drinnen-draussen-toggle button.active {
  background: #F6BE36;
  color: #015C77;
}

.bad-weather-tips {
  margin-top: 18px;
  background: #EEF2F4;
  border-radius: 8px;
  padding: 18px 20px;
}

.reader-favourites {
  margin-top: 24px;
  padding: 18px 20px;
  background: #EEF2F4;
  border-radius: 8px;
}
.reader-favourites h3 {
  margin-bottom: 8px;
}
.wetter-check-tool {
  margin-top: 10px;
  background: #EEF2F4;
  color: #015C77;
  border-radius: 8px;
  padding: 14px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.indoor-outdoor-ideas {
  margin-top: 16px;
  padding: 12px 18px;
  background: #EEF2F4;
  border-radius: 8px;
}

/* ================================================================================
   FOOTER
================================================================================ */
footer {
  background: #EEF2F4;
  padding: 36px 0 0 0;
  border-top: 1px solid #f0f3f7;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  color: #015C77;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-links a:hover {
  color: #F6BE36;
}
.brand-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px 44px;
  margin-bottom: 16px;
  border-top: 1px solid #dde1e7;
  padding-top: 18px;
}
.brand-foot img {
  max-width: 60px;
  margin-bottom: 8px;
}
.contact-snippet {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97rem;
  color: #015C77;
}
.contact-snippet img {
  vertical-align: middle;
  width: 18px;
  margin-right: 4px;
}
.social-media-links {
  display: flex;
  gap: 16px;
}
.social-media-links a img {
  width: 32px;
  transition: filter 0.2s, transform 0.12s;
}
.social-media-links a:hover img {
  filter: brightness(0.8) sepia(1) hue-rotate(340deg) saturate(1.22);
  transform: scale(1.12) translateY(-2px);
}
.hours {
  font-size: 0.98rem;
  color: #343a40;
}

/* ================================================================================
   MISC UTILITY
================================================================================ */
.address, .map-snippet, .transport-options, .contact-details, .office-hours {
  margin-bottom: 18px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.address img, .map-snippet img, .contact-details img, .office-hours img {
  width: 18px;
  margin-right: 6px;
}
.transport-options ul {
  list-style: disc;
  padding-left: 22px;
}

input[type="checkbox"] {
  accent-color: #015C77;
}

/* ================================================================================
   COOKIE CONSENT BANNER & MODAL
================================================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  color: #015C77;
  box-shadow: 0 -2px 22px rgba(1,92,119,0.08);
  z-index: 3000;
  padding: 18px 16px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(.73,0,.27,1);
}
.cookie-banner.hidden {
  transform: translateY(140%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner-content {
  flex: 1 1 270px;
  color: #015C77;
}
.cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-btn, .cookie-settings-btn {
  padding: 7px 18px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  background: #EEF2F4;
  color: #015C77;
  border: none;
}
.cookie-btn.accept {
  background: #F6BE36;
  color: #015C77;
}
.cookie-btn.reject {
  background: #eef2f4;
  color: #015C77;
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: #015C77;
  color: #fff;
  box-shadow: 0 2px 14px rgba(1,92,119,0.10);
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(1,92,119,0.25);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s cubic-bezier(.79,0,.21,1);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #015C77;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(1,92,119,0.20);
  padding: 36px 30px;
  min-width: 320px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: fadeInUp 0.36s cubic-bezier(.44,.13,.18,1.26) both;
}
@keyframes fadeInUp {
  from { transform: translateY(90px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 1.4rem;
  background: none;
  color: #015C77;
  border: none;
  border-radius: 6px;
  padding: 2px 10px;
  transition: color 0.18s, background 0.14s;
}
.cookie-modal .close-modal-btn:hover,
.cookie-modal .close-modal-btn:focus {
  background: #F6BE36;
  color: #015C77;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-category label {
  font-size: 1rem;
}
.category-essential {
  color: #015C77;
  font-weight: 500;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 4px;
}

/* ================================================================================
   RESPONSIVE DESIGN
================================================================================ */
@media (max-width: 1050px) {
  .feature-grid > div, .activity-card, .activity-idea, .tipps-card, .weather-card {
    max-width: 47vw;
    min-width: 170px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .activity-card, .activity-idea, .tipps-card, .weather-card {
    max-width: 95vw;
    flex: 1 1 220px;
  }
}
@media (max-width: 780px) {
  .feature-grid,
  .card-container,
  .content-grid,
  .card-grid,
  .testimonials {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .brand-foot,
  .footer-links {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonials {
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .feature-grid > div, .activity-card, .activity-idea, .tipps-card, .weather-card {
    max-width: 99vw;
    min-width: 160px;
    padding: 22px 10px;
  }
  .section {
    padding: 32px 6px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 16px;
  }
  /* Mobile menu triggers */
  .mobile-menu-toggle {
    display: block;
  }
  header nav, header .cta-btn {
    display: none !important;
  }
  .brand-foot {
    gap: 18px;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .section {
    padding: 20px 2px;
    margin-bottom: 18px;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.05rem; }
}
@media (max-width: 370px) {
  .cookie-modal {
    padding: 16px 2vw;
    min-width: 0;
  }
}

/* ================================================================================
   MICRO-INTERACTIONS & ACCESSIBILITY
================================================================================ */
:focus {
  outline: 2px solid #F6BE36;
  outline-offset: 2px;
}
a:active, button:active {
  opacity: 0.93;
}

::-webkit-scrollbar {
  width: 8px;
  background: #EEF2F4;
}
::-webkit-scrollbar-thumb {
  background: #DFE5EA;
  border-radius: 4px;
}

/* Hide jquery fallback classes */
.mobile-menu[aria-hidden="true"] { display: none; }
/* Cookie preference states (to be toggled via JS) */

/* End of file */
