/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FDF6EE;
  color: #1D2431;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1D2431;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1.2em;
}
strong, b {
  font-weight: bold;
}
button {
  font-family: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1D2431;
  letter-spacing: 0.01em;
  margin-bottom: 0.6em;
  font-weight: 700;
}
h1 { font-size: 2.2rem; line-height: 1.1; margin-bottom: 0.8em; }
h2 { font-size: 1.7rem; line-height: 1.18; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4, h5, h6 { font-size: 1rem; font-weight: 700; }
p, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #312915;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.85em;
}

/* GLOBAL CONTAINERS & SECTION SPACING */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FLEX LAYOUTS (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 12px rgba(29,36,49,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 330px;
}
.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;
  background: #fff;
  border: 1px solid #ede1cd;
  box-shadow: 0 2px 12px rgba(29,36,49,0.04);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #272014;
}
.testimonial-card p {
  flex: 1;
  margin: 0 0 0.5em 0;
  font-size: 1.05rem;
  color: #272014;
}
.testimonial-card strong {
  font-family: 'Playfair Display', Georgia, serif;
  color: #BFA97A;
  font-weight: 700;
  font-size: 1.08rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**** NAVIGATION STYLES ****/
header {
  background: #fff;
  padding: 20px 0 20px 0;
  border-bottom: 1px solid #ede1cd;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 10px;
}
.main-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: #1D2431;
  padding: 7px 2px;
  position: relative;
  transition: color 0.18s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: #BFA97A;
  border-radius: 1px;
  transition: width 0.2s;
  margin-top: 3px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #BFA97A;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.cta-btn {
  background: #BFA97A;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 24px;
  margin-left: 32px;
  box-shadow: 0 2px 10px rgba(191,169,122,0.10);
  transition: background 0.19s, color 0.19s, box-shadow 0.18s;
  border: 1px solid #BFA97A;
  position: relative;
  top: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #BFA97A;
  border: 1px solid #BFA97A;
  box-shadow: 0 4px 18px rgba(191,169,122,0.16);
  text-decoration: none;
}

/**** HERO SECTION ****/
.hero {
  background: #F3E7D3;
  padding: 50px 0 45px 0;
  border-bottom: 1px solid #ede1cd;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero h1 {
  font-size: 2.4rem;
  color: #1D2431;
  margin-bottom: 0.25em;
  letter-spacing: 0.015em;
}
.hero p {
  font-size: 1.14rem;
  color: #312915;
}
.hero .cta-btn {
  margin-top: 18px;
}

/**** FEATURE GRID (AUF ALLEN SEITEN) ****/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 18px 0 18px 0;
}
.feature-grid > div {
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px 22px 22px;
  box-shadow: 0 1.5px 13px rgba(29,36,49,0.06);
  border: 1px solid #ede1cd;
  flex: 1 1 255px;
  min-width: 235px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 0; /* overwrite any margin */
}
.feature-grid > div img {
  margin-bottom: 12px;
  width: 44px;
  height: 44px;
}
.feature-grid > div h3 {
  font-size: 1.13rem;
  color: #1D2431;
  margin-bottom: 0.6em;
}
.feature-grid > div p {
  font-size: 0.97rem;
  color: #312915;
  margin-bottom: 0;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 4px 20px rgba(191,169,122,0.14);
  transform: translateY(-2px) scale(1.015);
}

/**** FOOTER ****/
footer {
  background: #1D2431;
  color: #fff;
  padding: 40px 0 30px 0;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-wrapper nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-wrapper nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: #fff;
  opacity: 0.86;
  transition: color 0.17s, opacity 0.19s;
  letter-spacing: 0.01em;
}
.footer-wrapper nav a:hover, .footer-wrapper nav a:focus {
  color: #BFA97A;
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.98rem;
  color: #ede1cd;
  line-height: 1.7;
}
.footer-contact a {
  color: #BFA97A;
  font-weight: 500;
  transition: color 0.17s;
}
.footer-contact a:hover {
  color: #fff;
}

/**** RESPONSIVE FLEX LAYOUTS ****/
@media (max-width: 1100px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .footer-wrapper {
    gap: 18px;
  }
  .container {
    padding: 0 12px;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  .hero h1 { font-size: 1.55rem; }
  .feature-grid {
    gap: 10px;
  }
  .feature-grid > div {
    min-width: 90vw;
    max-width: 97vw;
    width: 100%;
    margin-bottom: 0;
  }
  .container {
    padding: 0 7px;
  }
  .section {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
  }
  .main-nav, .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .logo {
    margin-bottom: 0.6em;
  }
  .hero {
    padding: 30px 0 25px 0;
  }
  .cta-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
    display: block;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 530px) {
  h1, .hero h1 { font-size: 1.13rem; }
  h2 { font-size: 1.02rem; }
  .cta-btn, .footer-wrapper nav a, .footer-contact {
    font-size: 0.95rem;
  }
  .card, .feature-grid > div {
    padding: 18px 8px 16px 8px;
  }
  .testimonial-card {
    padding: 12px 6px;
  }
}

/**** CARDS (IF MANUAL .card CONTAINER IS USED) ****/
.card {
  border: 1px solid #ede1cd;
  background: #fff;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 18px rgba(191,169,122,0.13);
  transform: translateY(-3px) scale(1.017);
}

/**** BUTTONS ****/
button, .cta-btn {
  cursor: pointer;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
}
button:focus-visible, .cta-btn:focus-visible {
  box-shadow: 0 0 0 2px #BFA97A44;
}

/**** LISTS ****/
ul, ol {
  font-size: 1rem;
  margin-bottom: 1.2em;
  padding-left: 1.25em;
  color: #312915;
  line-height: 1.7;
}
ul li, ol li {
  margin-bottom: 0.4em;
}

/**** MOBILE ONLY: HAMBURGER MENU ****/
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 900px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 28px;
    top: 25px;
    font-size: 1.9rem;
    background: #fff;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #1D2431;
    box-shadow: 0 1.5px 7px rgba(29,36,49,0.08);
    z-index: 201;
    border: 1px solid #ede1cd;
    transition: background 0.17s, color 0.18s;
  }
  .mobile-menu-toggle:active, .mobile-menu-toggle:focus {
    background: #BFA97A22;
    color: #BFA97A;
  }
}

/**** MOBILE MENU OVERLAY ****/
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #F3E7D3;
  box-shadow: 0 8px 40px rgba(29,36,49,0.13);
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(0.55,0,0.1,1);
  z-index: 222;
  padding-top: 60px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: #fff;
  color: #BFA97A;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ede1cd;
  transition: background 0.18s, color 0.18s;
  z-index: 223;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #BFA97A33;
  color: #1D2431;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin: 38px 0 0 35px;
}
.mobile-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.22rem;
  padding: 8px 0;
  color: #1D2431;
  border-radius: 3px;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #ede1cd;
  color: #BFA97A;
}

/**** COOKIES BANNER ****/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fffefd;
  border-top: 1px solid #ede1cd;
  box-shadow: 0 -4px 24px rgba(29,36,49,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: center;
  padding: 22px 18px;
  z-index: 975;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-banner__text {
  color: #312915;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  max-width: 480px;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 10px 18px;
  border-radius: 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 3px;
  border: 1px solid #BFA97A;
  background: #BFA97A;
  color: #fff;
  transition: background 0.19s, color 0.19s;
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: #BFA97A;
}
.cookie-banner button.cookie-settings {
  background: #fffefd;
  border: 1px solid #BFA97A;
  color: #BFA97A;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #ede1cd;
  color: #1D2431;
  border: 1px solid #BFA97A;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/**** COOKIES PREFERENCES MODAL ****/
.cookie-modal {
  position: fixed;
  z-index: 980;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(29,36,49, 0.36);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}
.cookie-modal.visible {
  display: flex;
}
.cookie-modal__box {
  background: #fffefd;
  padding: 36px 30px 24px 30px;
  border-radius: 18px;
  box-shadow: 0 6px 33px rgba(29,36,49,0.18);
  min-width: 320px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.22rem;
  color: #1D2431;
  margin-bottom: 7px;
}
.cookie-modal__settings-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-toggle {
  position: relative;
  width: 38px;
  height: 22px;
  background: #ede1cd;
  border-radius: 11px;
  margin-left: 11px;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 38px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
}
.cookie-toggle__slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #BFA97A;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle__slider {
  left: 18px;
  background: #1D2431;
}
.cookie-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
  margin-top: 16px;
}
.cookie-modal__footer button {
  padding: 10px 20px;
  border-radius: 18px;
  border: 1px solid #BFA97A;
  background: #BFA97A;
  color: #fff;
  font-weight: 600;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.03rem;
  transition: background 0.19s, color 0.19s;
}
.cookie-modal__footer button.cookie-cancel {
  background: #fffefd;
  color: #BFA97A;
}
.cookie-modal__footer button:hover, .cookie-modal__footer button:focus {
  background: #ede1cd;
  color: #1D2431;
}
@media (max-width: 540px) {
  .cookie-modal__box {
    padding: 20px 7px;
    min-width: 0;
  }
  .cookie-modal__footer {
    flex-direction: column;
    gap: 10px;
  }
}

/**** MISCELLANEOUS STYLES ****/
blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.18rem;
  color: #272014;
  border-left: 3.5px solid #BFA97A;
  padding-left: 1.2em;
  margin: 1.2em 0;
}
::-webkit-scrollbar-thumb {
  background: #ede1cd;
  border-radius: 8px;
}
::-webkit-scrollbar {
  width: 9px;
  background: #F3E7D3;
}

/* Accessibility and hover/focus for links */
a:focus-visible {
  outline: 2px solid #BFA97A;
  outline-offset: 2px;
}

/* Spacing for all sections and their cards */
section {
  margin-bottom: 60px;
}
.card, .feature-grid > div, .testimonial-card {
  margin-bottom: 20px;
}
section:last-child {
  margin-bottom: 0;
}

/**** CONTACT/ICONS IN TEXT ****/
.text-section img[alt^="Adresse"],
.text-section img[alt^="Telefon"],
.text-section img[alt^="E-Mail"],
.text-section img[alt^="Öffnungszeiten"] {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 2px;
}

/**** ANIMATIONS ****/
.mobile-menu {
  will-change: transform;
}
.cookie-banner, .cookie-modal__box {
  will-change: opacity, transform;
}

/**** END OF STYLE.CSS ****/
