/* ===================
   CSS RESET & BASE
=================== */
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,
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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: #F1EFE6;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F1EFE6;
  color: #432818;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
*, *:before, *:after { box-sizing: inherit; }
img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
}
a {
  color: #A47D2D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #432818;
  text-decoration: underline;
}
strong, b {
  font-weight: 600;
  color: #432818;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 12px;
}
main {
  flex: 1 0 auto;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  margin-bottom: 16px;
}

/* ===================
   TYPOGRAPHY
=================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 700;
  color: #432818;
  margin-bottom: 10px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.125rem;
}
p {
  font-size: 1rem;
  color: #432818;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

/* ===================
   HEADER & NAVIGATION
=================== */
header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: #FFF9EF;
  box-shadow: 0 2px 16px rgba(67,40,24,0.06);
  position: relative;
  z-index: 20;
}
header a img {
  height: 46px;
  width: auto;
  border-radius: 0;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-left: 32px;
}
header nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #432818;
  letter-spacing: 0.01em;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  padding: 6px 14px;
}
header nav a:hover,
header nav a:focus {
  background: #C2B28030;
  color: #A47D2D;
  outline: none;
}
.cta-button {
  background: #C2B280;
  color: #432818;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 28px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(67,40,24,0.08);
  border: none;
  margin-left: 24px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  letter-spacing: 0.01em;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #A47D2D;
  color: #fff;
  box-shadow: 0 4px 20px rgba(67,40,24,0.18);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #C2B280;
  margin-left: 20px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #C2B28033;
  outline: none;
}

/* ===================
   MOBILE MENU
=================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF9EF;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.5, 0.08, 0.09, 1);
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 26px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #C2B280;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.2s;
  z-index: 1010;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #C2B28033;
  color: #432818;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  height: 100%;
  padding: 60px 40px 40px 40px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #432818;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 18px;
  display: block;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #C2B28030;
  color: #A47D2D;
  outline: none;
}
@media (max-width: 1024px) {
  header nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===================
   SECTIONS & LAYOUT
=================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffef9;
  border-radius: 24px;
  box-shadow: 0 2px 24px rgba(67,40,24,0.05);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.card {
  background: #fffef9;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(67,40,24,0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  transition: box-shadow 0.18s;
  min-width: 260px;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(67,40,24,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: center;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(67,40,24,0.07);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 520px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px rgba(67,40,24,0.16);
}
.testimonial-card p {
  color: #432818;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #A47D2D;
  font-family: 'Playfair Display', serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* --- FLEX responsive --- */
@media (max-width: 768px) {
  .section {
    padding: 28px 6px;
    margin-bottom: 38px;
    border-radius: 16px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .card {
    padding: 22px 10px;
    min-width: 0;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    margin-left: 0;
  }
}

/* ===================
   BUTTONS & INTERACTIONS
=================== */
button, .cta-button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 28px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
button:focus-visible {
  outline: 2px solid #A47D2D;
}

/* ===================
   FOOTER
=================== */
footer {
  width: 100%;
  background: #FFF9EF;
  padding: 38px 0 18px 0;
  margin-top: 52px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -2px 22px rgba(67,40,24,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer a img {
  height: 38px;
  width: auto;
  border-radius: 0;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: #432818;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
footer nav a:hover,
footer nav a:focus {
  background: #C2B28021;
  color: #A47D2D;
  outline: none;
}
footer .text-section {
  color: #432818;
  font-size: 0.95rem;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

/* ===================
   ICONS
=================== */
img[alt^="Telefon"],
img[alt^="E-Mail"],
img[alt^="Standort"],
img[alt^="Adresse"],
img[alt^="Öffnungszeiten"] {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
  border-radius: 0;
}

/* ===================
   FORM ELEMENTS
=================== */
input, textarea, select {
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid #C2B280;
  border-radius: 10px;
  margin-bottom: 18px;
  background: #FAF7EC;
  color: #432818;
  transition: border 0.15s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #A47D2D;
  box-shadow: 0 0 4px #C2B28033;
  outline: none;
}
label {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #432818;
}

/* ===================
   COOKIES BANNER & MODAL
=================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff7e1;
  color: #432818;
  padding: 24px;
  box-shadow: 0 -8px 28px rgba(67,40,24,0.06);
  z-index: 1200;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  border-radius: 22px 22px 0 0;
  animation: cookieBannerAppear 0.7s ease;
}
@keyframes cookieBannerAppear {
  from { opacity: 0; transform: translateY(90px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  flex: 1 0 220px;
  margin-bottom: 0;
  color: #432818;
}
.cookie-banner .cookie-btn {
  background: #C2B280;
  color: #432818;
  border-radius: 24px;
  border: none;
  font-size: 1rem;
  padding: 10px 28px;
  font-weight: 500;
  margin: 0 5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 8px rgba(67,40,24,0.05);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #A47D2D;
  color: #fff;
  box-shadow: 0 3px 18px rgba(67,40,24,0.15);
}
.cookie-banner .cookie-btn.secondary {
  background: #F1EFE6;
  color: #432818;
  border: 1px solid #C2B280;
}
.cookie-banner .cookie-btn.secondary:hover, .cookie-banner .cookie-btn.secondary:focus {
  background: #fff;
  color: #A47D2D;
  border-color: #A47D2D;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(67,40,24,0.36);
  z-index: 1250;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s;
}
.cookie-modal {
  background: #fffef9;
  border-radius: 22px;
  padding: 38px 34px 30px 34px;
  max-width: 420px;
  width: 94%;
  box-shadow: 0 4px 48px rgba(67,40,24,0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalAppear 0.32s ease;
  position: relative;
  color: #432818;
}
@keyframes cookieModalAppear {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.cookie-modal label {
  font-size: 1.04rem;
  color: #432818;
  margin-bottom: 0;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #C2B280;
  width: 20px;
  height: 20px;
  border-radius: 6px;
}
.cookie-category .always-on {
  background: #F1EFE6;
  color: #A47D2D;
  font-size: 1rem;
  border-radius: 10px;
  padding: 2px 12px;
  margin-left: 2px;
  border: none;
  font-weight: 500;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #C2B280;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 8px;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus { background: #C2B28033; color: #432818; }
.cookie-modal .cookie-btn {
  margin-top: 24px;
  width: 100%;
}

/* ===================
   UTILITIES
=================== */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.primary-bg {
  background: #FFF9EF;
}
.rounded-xl {
  border-radius: 22px;
}
.shadow {
  box-shadow: 0 4px 32px rgba(67,40,24,0.13);
}

/* ===================
   LIST & FEATURE ICONS
=================== */
ul li img {
  height: 26px;
  width: 26px;
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 0;
}

/* ===================
   SOCIAL ICONS (footer, kontakt)
=================== */
.text-section a img[alt^='Facebook'], .text-section a img[alt^="Instagram"] {
  height: 30px;
  width: 30px;
  margin-right: 8px;
  border-radius: 8px;
  transition: background 0.18s;
  background: #fff;
  box-shadow: 0 1px 8px rgba(67,40,24,0.05);
  padding: 4px;
}
.text-section a:hover img[alt^='Facebook'],
.text-section a:focus img[alt^='Facebook'],
.text-section a:hover img[alt^='Instagram'],
.text-section a:focus img[alt^='Instagram'] {
  background: #C2B28050;
}

/* ===================
   RESPONSIVE
=================== */
@media (max-width: 600px) {
  .container {
    padding: 0 3px;
  }
  header {
    padding: 10px 0;
  }
  .section {
    padding: 16px 2px;
    margin-bottom: 22px;
  }
  footer {
    padding: 16px 0 8px 0;
    border-radius: 20px 20px 0 0;
  }
  .cookie-modal {
    padding: 20px 6px 20px 6px;
    max-width: 97vw;
  }
}

/* ===================
   MICRO-INTERACTIONS
=================== */
a, button, .cta-button, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn, .cookie-modal .close-modal {
  transition: background 0.25s, color 0.18s, box-shadow 0.18s, transform 0.13s;
}
.cta-button:active, .cookie-btn:active {
  transform: scale(0.96);
}
.testimonial-card { transition: box-shadow 0.2s, transform 0.15s; }
.testimonial-card:active { transform: scale(0.98); }
.card:active { transform: scale(0.99); }

/* ===================
   SCROLLBARS (nice)
=================== */
::-webkit-scrollbar { width: 10px; background: #F1EFE6; }
::-webkit-scrollbar-thumb { background: #C2B28055; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #A47D2D88; }

/* ===============
   ACCESSIBILITY
=============== */
:focus-visible {
  outline: 2px solid #A47D2D;
  outline-offset: 1.5px;
}

/* === END === */
