/* ====================================================================
   BREEZY ESCAPADE LEIPZIG – MINIMALIST RESPONSIVE STYLESHEET
   ==================================================================== */
/* -----------------------
   CSS RESET & NORMALIZE
--------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #FFFDF8;
  color: #20496A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.20s;
}
a:focus {
  outline: 2px solid #64B6AC;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
:focus {
  outline: 2px solid #20496A;
  outline-offset: 2px;
}
/* -----------------------
   BASE TYPOGRAPHY SCALE
--------------------------*/
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  color: #20496A;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 18px;
  color: #20496A;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #20496A;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #20496A;
}
p, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  color: #20496A;
}
.subheadline {
  font-size: 1.3rem;
  color: #20496A;
  margin-bottom: 18px;
  font-weight: 400;
}
.privacy-note {
  font-size: 0.97rem;
  color: #6e7b8a;
}
.community-rating {
  font-size: 1.1rem;
  color: #20496A;
  font-weight: 600;
  margin-top: 16px;
}
/* -----------------------
   CONTAINER & CONTENT
--------------------------*/
.container {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 820px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 12px;
}
/* -----------------------
   HEADER & NAVIGATION
--------------------------*/
header {
  background: #FFFDF8;
  border-bottom: 1px solid #e8edea;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 36px;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #20496A;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #e6f2ef;
  color: #20496A;
}
.btn-primary {
  background: #20496A;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 10px 28px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(32,73,106, 0.10);
  margin-left: 14px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #64B6AC;
  color: #20496A;
  box-shadow: 0 4px 20px rgba(32,73,106, 0.21);
}
/* Hide desktop nav on mobile by default */
@media (max-width: 992px) {
  header .container nav {
    display: none;
  }
}
/* ---------------
   MOBILE MENU
-------------------*/
.mobile-menu-toggle {
  display: none;
  background: #20496A;
  color: #fff;
  font-size: 2rem;
  padding: 10px 14px;
  border-radius: 7px;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 230;
  box-shadow: 0 2px 12px rgba(32,73,106, 0.14);
  border: none;
  transition: background 0.19s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #64B6AC;
}
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,73,106, 0.98);
  z-index: 240;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.5,0,.2,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2em;
  padding: 18px 24px 6px 6px;
  margin-right: 8px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  z-index: 241;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #64B6AC;
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 24px 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 12px 0;
  width: 100%;
  border-radius: 4px;
  transition: background 0.2s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #64B6AC;
  background: rgba(255,255,255,0.06);
}
@media (min-width: 993px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* --------------------
   MAIN CONTENT SECTIONS
------------------------*/
main {
  flex: 1 1 auto;
  width: 100%;
}
section {
  box-sizing: border-box;
  background: transparent;
  border-radius: 8px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* -----------------------
   SPACING, FLEX GALLERY
--------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 2px 12px rgba(32,73,106, 0.09);
  border-radius: 8px;
  padding: 28px 26px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 340px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px rgba(32,73,106, 0.12);
  transform: translateY(-2px) scale(1.017);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 18px rgba(32,73,106,0.11);
  font-style: italic;
  transition: box-shadow 0.18s;
  color: #20496A;
}
.testimonial-card span {
  align-self: flex-end;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  color: #20496A;
  font-weight: 500;
  margin-top: 8px;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 28px rgba(32,73,106, 0.17);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.team-list > div {
  flex: 1 1 180px;
  background: #fff;
  border-radius: 8px;
  padding: 22px 18px;
  box-shadow: 0 2px 14px rgba(32,73,106,0.07);
  margin-bottom: 20px;
  min-width: 210px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.team-list > div:hover {
  box-shadow: 0 6px 24px rgba(32,73,106,0.07);
  transform: translateY(-3px);
}
@media (max-width: 992px) {
  .team-list {
    gap: 20px;
    flex-direction: column;
  }
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 20px 0;
}
/* --------------------------
   FOOTER AREA & SOCIALS
----------------------------*/
footer {
  background: #fff;
  border-top: 1px solid #e8edea;
  padding: 40px 0 20px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo {
  min-width: 120px;
  margin-bottom: 24px;
}
.footer-links, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a, .footer-legal a {
  font-family: 'Montserrat', sans-serif;
  color: #20496A;
  font-size: 1rem;
  opacity: 0.86;
  transition: color 0.17s, opacity 0.16s;
  margin-bottom: 2px;
}
.footer-links a:hover, .footer-legal a:hover {
  color: #64B6AC;
  opacity: 1;
}
.footer-contacts {
  font-size: 0.95rem;
  color: #435770;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.footer-contacts a {
  color: #20496A;
  text-underline-offset: 2px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.footer-social a {
  display: flex;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.17s;
}
.footer-social a:hover {
  background: #e6f2ef;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
/* -----------------------------
   COOKIE CONSENT BANNER + MODAL
----------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 5000;
  background: #fff;
  border-top: 1px solid #e8edea;
  box-shadow: 0 -2px 20px rgba(32,73,106,0.08);
  padding: 22px 26px 17px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  transition: transform 0.29s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  visibility: hidden;
}
.cookie-banner p {
  color: #20496A;
  font-size: 1rem;
  margin-bottom: 7px;
}
.cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 4px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 8px 18px;
  cursor: pointer;
  border: none;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn-accept {
  background: #20496A;
  color: #fff;
  font-weight: 700;
}
.cookie-btn-accept:hover {
  background: #64B6AC;
  color: #20496A;
}
.cookie-btn-reject {
  background: #e8edea;
  color: #20496A;
  font-weight: 600;
}
.cookie-btn-reject:hover {
  background: #20496A;
  color: #fff;
}
.cookie-btn-settings {
  background: transparent;
  color: #20496A;
  text-decoration: underline;
  font-weight: 500;
  padding: 8px 6px;
}
.cookie-btn-settings:hover {
  color: #64B6AC;
}
@media (max-width: 460px) {
  .cookie-banner {
    padding: 16px 10px 12px 10px;
  }
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }
}
.cookie-modal {
  position: fixed;
  z-index: 5010;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32,73,106,.60);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 26px rgba(32,73,106,.21);
  max-width: 400px;
  width: 94vw;
  padding: 34px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: fadeInScale 0.37s cubic-bezier(.46,.87,.34,.98);
}
@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(.88); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-dialog h2 {
  font-size: 1.23rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #20496A;
  margin-bottom: 6px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  color: #20496A;
  font-size: 1.3em;
  border: none;
  padding: 6px 9px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.15s;
}
.cookie-modal-close:hover { 
  background: #e6f2ef;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-category label {
  flex: 1 1 auto;
  font-size: 1rem;
  color: #20496A;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #64B6AC;
}
.cookie-category .cookie-toggle[disabled] {
  opacity: 0.55;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
/* ---------------------------
   BUTTONS & INTERACTIONS
-----------------------------*/
button,
.btn-primary,
.cookie-btn {
  transition: background 0.19s, color 0.18s, box-shadow 0.17s, transform 0.13s;
}
button:active,
.btn-primary:active,
.cookie-btn:active {
  transform: scale(0.98);
}
/* -------------
   ADDRESS BLOCK
---------------*/
address {
  font-style: normal;
  background: #fff;
  border-radius: 8px;
  padding: 18px 18px 12px 18px;
  box-shadow: 0 2px 13px rgba(32,73,106, 0.07);
  margin: 16px 0;
  color: #20496A;
}
address a { color: #20496A; text-decoration: underline; }
address img { margin-right: 8px; vertical-align: middle; }

/* ----------------------
   MISC CLASSES/UTILITIES
------------------------*/
ul li, ol li {
  margin-bottom: 9px;
  font-size: 1rem;
}
section ul, section ol {
  margin-bottom: 18px;
}

/* ---------------------------------
  RESPONSIVENESS & FLEX LAYOUTS ONLY
-----------------------------------*/
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding-left: 10px; padding-right: 10px; }
  section, .section { padding: 28px 6px; }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
  h3, .h3 { font-size: 1.08rem; }
  .card-container,
  .content-grid,
  .footer-links, .footer-legal {
    flex-direction: column;
    gap: 16px;
  }
  .team-list {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  section, .section { padding-left: 3vw; padding-right: 3vw; }
  .card {
    padding: 18px 8px;
    min-width: unset;
  }
  .cookie-modal-dialog { padding: 16px 6px 16px 9px; }
}
@media (max-width: 340px) {
  .card,
  .team-list > div {
    padding-left: 3px;
    padding-right: 3px;
  }
}
/* ====================================================================
   END OF MINIMALIST STYLESHEET
   ==================================================================== */