/* === CSS RESET & BASE === */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #17232E;
  background-color: #F5F5F1;
  line-height: 1.65;
  min-height: 100vh;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #17232E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C5A475;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
address {
  font-style: normal;
  color: #17232E;
  font-size: 1rem;
  line-height: 1.7;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  color: #17232E;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.15rem;
}
.subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #555;
  font-size: 1.13rem;
  margin-bottom: 28px;
  letter-spacing: 0.1px;
}
p {
  font-size: 1rem;
  color: #232325;
  margin-bottom: 18px;
}
strong, b {
  font-weight: 600;
  color: #17232E;
}

/* === CONTAINER LAYOUTS === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}


/* === SECTIONS / SPACING === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* === CARD LAYOUTS & FLEX CONTAINERS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(23,35,46,0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 5px 20px 0 rgba(23,35,46,0.14);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 9px 0 rgba(23,35,46,0.08);
  padding: 28px 24px;
  margin-bottom: 20px;
  max-width: 700px;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #222;
  font-size: 1.10rem;
  margin-bottom: 10px;
}
.testimonial-card span {
  color: #555;
  font-size: 0.98rem;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 4px 14px 0 rgba(23,35,46,0.15);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(23,35,46,0.06);
  flex: 1 1 260px;
  padding: 26px 20px;
  text-align: left;
  min-width: 220px;
  transition: box-shadow 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 22px 0 rgba(23,35,46,0.13);
}
.feature-grid h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.18rem;
  font-weight: 600;
}
.feature-highlights ul {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.feature-highlights li {
  background: #fff;
  padding: 16px 22px;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 rgba(23,35,46,0.07);
  font-size: 1rem;
  color: #17232E;
}


/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 32px;
}
header nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
header nav a {
  font-size: 1rem;
  padding: 12px 7px;
  color: #17232E;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  position: relative;
}
header nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #C5A475;
  transition: width 0.25s;
  position: absolute;
  left: 0; bottom: 6px;
}
header nav a:hover::after, header nav a:focus::after {
  width: 90%;
}
header .button-primary {
  margin-left: 22px;
}

/* === BUTTONS === */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C5A475;
  color: #17232E;
  border-radius: 32px;
  padding: 13px 32px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 1px 7px 0 rgba(23,35,46,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.08s;
  outline: none;
}
.button-primary:hover, .button-primary:focus {
  background: #17232ECC;
  color: #fff;
  box-shadow: 0 5px 18px 0 rgba(23,35,46,0.19);
  transform: translateY(-2px) scale(1.04);
}
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #C5A475;
  border-radius: 32px;
  padding: 12px 26px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid #C5A475;
  box-shadow: 0 1px 6px 0 rgba(23,35,46,0.04);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s, border 0.14s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #C5A475;
  color: #fff;
  box-shadow: 0 5px 18px 0 rgba(197,164,117,0.15);
}

/* === STATUS BADGES (e.g. "Verfügbar", "Reserviert") === */
.status {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 14px;
  font-size: 0.98rem;
  color: #fff;
  background: #C5A475;
  border-radius: 12px;
  font-weight: 600;
  vertical-align: middle;
  letter-spacing: 0.01em;
}

/* === LISTS WITH ICON/LABEL === */
ul > li, ol > li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 11px;
  font-size: 1.05rem;
  color: #24292F;
}
ul > li::before, ol > li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C5A475;
  margin-right: 8px;
}


/* === TEXT SECTION === */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section h3 {
  margin-top: 10px;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}


/* === FOOTER === */
footer {
  background: #fff;
  padding: 40px 0 24px 0;
  border-top: 1px solid #ececec;
  color: #222;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  font-size: 1rem;
  color: #6B6B6B;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
footer nav a:hover, footer nav a:focus {
  color: #C5A475;
}
footer address {
  margin-top: 10px;
  color: #555;
  font-size: 0.98rem;
  line-height: 1.7;
}
footer img {
  display: inline-block;
  width: 48px;
  margin-bottom: 10px;
}
footer div:last-child {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
footer div:last-child a img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
footer div:last-child a:hover img {
  opacity: 1;
}


/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .container { max-width: 920px; }
  .feature-grid > div { min-width: 170px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .header .container {flex-direction: row;}
  .container {max-width: 97vw;}
  .content-wrapper {gap: 20px;}
  .card-container, .feature-grid, .content-grid, .feature-highlights ul { flex-direction: column; gap: 20px; }
  .feature-grid > div { min-width: 0; }
  .text-image-section { flex-direction: column; gap: 18px; }
  header .container { gap: 10px; }
  footer .content-wrapper { flex-direction: column; gap: 22px; }
  footer div:last-child { justify-content: flex-start; }
  section { padding: 32px 6vw; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.06rem; }
  .button-primary, .button-secondary { width: 100%; min-width: unset; }
  .container { padding-left: 10px; padding-right: 10px; }
  section { padding: 26px 2vw; }
  .testimonial-card { padding: 19px 12px; }
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 990px) {
  header nav, header .button-primary { display: none; }
  .mobile-menu-toggle {
    display: flex;
    font-size: 2rem;
    color: #17232E;
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    padding: 8px 16px;
    z-index: 201;
    transition: color 0.17s;
  }
  .mobile-menu-toggle:focus {
    color: #C5A475;
    outline: none;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #F5F5F1;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.7, 0, 0.2, 1);
    box-shadow: -2px 0 24px 0 rgba(23,35,46,0.09);
    will-change: transform;
    overflow-y: auto;
    padding: 46px 28px 28px 28px;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #17232E;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 18px;
    transition: color 0.19s;
  }
  .mobile-menu-close:focus, .mobile-menu-close:hover {
    color: #C5A475;
    outline: none;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 22px;
  }
  .mobile-nav a {
    font-size: 1.20rem;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #17232E;
    padding: 12px 0;
    border-bottom: 1px solid #ececec;
    transition: background 0.17s, color 0.18s;
    border-radius: 3px;
    width: 100%;
  }
  .mobile-nav a:last-child {
    border-bottom: none;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #ECEAE6;
    color: #C5A475;
  }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  color: #17232E;
  box-shadow: 0 -2px 26px rgba(23,35,46, 0.09);
  z-index: 3000;
  padding: 28px 22px 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  font-size: 1.02rem;
  border-top: 1px solid #ECECEC;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.22s, transform 0.25s;
}
.cookie-banner.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner-message {
  flex: 1 1 0;
  min-width: 120px;
  color: #222;
}
.cookie-banner-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-banner .button-primary,
.cookie-banner .button-secondary {
  padding: 11px 24px;
  border-radius: 22px;
  font-size: 0.98rem;
}

/* === COOKIE MODAL === */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,35,46,0.22);
  z-index: 3010;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s;
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 296px;
  width: 95vw;
  max-width: 410px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 44px 0 rgba(23,35,46,0.19);
  z-index: 3020;
  padding: 34px 24px 26px 24px;
  transform: translate(-50%, 48%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s, transform 0.26s;
}
.cookie-modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #C5A475;
  cursor: pointer;
}
.cookie-modal h2 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0;
}
.cookie-category label {
  font-size: 1rem;
  opacity: 0.97;
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 1.5px solid #C5A475;
  background: #fff;
  vertical-align: middle;
  margin-right: 2px;
  cursor: pointer;
  position: relative;
  transition: border .16s, box-shadow .13s;
}
.cookie-category input[type="checkbox"]:checked {
  background: #C5A475;
  border-color: #C5A475;
}
.cookie-category input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 5px; left: 8px;
  width: 5px;
  height: 10px;
  border-radius: 1px;
  border-right: 2.6px solid #fff;
  border-bottom: 2.6px solid #fff;
  transform: rotate(40deg);
}
.cookie-modal-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal .button-primary, .cookie-modal .button-secondary {
  padding: 11px 21px;
}

/* === MICRO-INTERACTIONS & TRANSITIONS === */
.button-primary, .button-secondary,
header nav a, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a, .status {
  transition: background 0.18s, color 0.17s, box-shadow 0.16s, transform 0.12s;
}

/* === HIDE SCROLL ON MOBILE MENU OPEN === */
.body-modal-open, .body-menu-open {
  overflow: hidden;
}

/* === UTILITY === */
.hide {
  display: none !important;
}
.visible {
  display: block !important;
}

/* === PRINT (for privacy/legal pages) === */
@media print {
  header, footer, .cookie-banner, .mobile-menu {display: none !important;}
  body {background: #fff; color: #111;}
  section {padding: 0; margin: 16px 0;}
}
