/* RESET & BASE STYLES */
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, 
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F3F0EA;
  color: #2E3E4E;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #7C4F2B;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.3,1.27,.41,.98);
}
a:hover, a:focus {
  color: #2E3E4E;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  text-transform: uppercase;
  color: #2E3E4E;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  line-height: 1.1;
  font-weight: 700;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; letter-spacing: 0.015em; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
.subheadline {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  color: #7C4F2B;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  font-weight: 500;
}
p, ul, ol, li, table, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 14px;
}
strong {
  color: #2E3E4E;
  font-weight: 700;
}

/* CREATIVE ARTISTIC COLOR ACCENTS */
:root {
  --brand-primary: #2E3E4E;
  --brand-secondary: #7C4F2B;
  --brand-accent: #F3F0EA;
  --vivid-orange: #F2853C;
  --vivid-blue: #4377FF;
  --vivid-green: #20C47C;
  --blend1: #F9E0CE;
  --blend2: #F6F1C9;
  --shadow-main: 0 6px 32px 0 rgba(44,34,54,0.06), 0 1.5px 6px 0 rgba(124,79,43,0.13);
}

/* LAYOUT CONTAINERS (Flexbox only) */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--blend1);
  border-radius: 32px;
  box-shadow: var(--shadow-main);
  z-index: 1;
  position: relative;
}
.section:nth-child(2n) {
  background: var(--blend2);
}

/* Feature Grid / Card Container (Flexbox) */
.feature-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.card-container {
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-main);
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 320px;
  padding: 28px 20px 24px 20px;
  transition: box-shadow .23s cubic-bezier(.37,1.35,.3,.93), transform .14s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card:hover {
  box-shadow: 0 10px 40px 0 rgba(44,34,54,0.18);
  transform: translateY(-4px) scale(1.02);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 18px 0 rgba(44,34,54,0.07);
  margin-bottom: 20px;
  border-left: 5px solid var(--brand-secondary);
  color: #222;
  font-size: 1.05rem;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--brand-primary);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 18px;
  padding: 18px 18px 16px 18px;
  box-shadow: 0 2px 10px 0 rgba(124,79,43,0.07);
  margin-bottom: 20px;
}

.text-section {
  margin-bottom: 20px;
}

/* HEADER / NAVIGATION */
header {
  background: #fff;
  border-bottom: 2px solid #f4eff8;
  box-shadow: 0 2px 18px 0 rgba(46,62,78,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1001;
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  min-height: 64px;
}
nav img {
  height: 42px;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
nav ul li {
  display: flex;
  align-items: center;
}
nav ul li a {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 1rem;
  color: var(--brand-primary);
  position: relative;
  padding: 8px 4px;
  border-radius: 3px;
  transition: background .15s;
}
nav ul li a:hover, nav ul li a:focus {
  color: var(--vivid-orange);
  background: #fff4e7;
}
.cta-button {
  background: linear-gradient(90deg,var(--vivid-orange) 90%, var(--vivid-blue) 100%);
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: 32px;
  border: none;
  letter-spacing: .10em;
  box-shadow: 0 6px 16px 0 rgba(242,133,60,0.11);
  cursor: pointer;
  transition: background .22s cubic-bezier(.19,1.29,.24,.96),box-shadow .21s;
  margin-left: 28px;
  position: relative;
  text-shadow: 0 1px 5px rgba(44,34,54,0.04);
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg,var(--vivid-blue) 90%, var(--vivid-orange) 100%);
  box-shadow: 0 10px 38px 0 rgba(242,133,60,0.13);
  color: #fff;
}

/* HAMBURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--vivid-orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(242,133,60,0.11);
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 1011;
  transition: background .15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--vivid-blue);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 18px 0 rgba(46,62,78,0.09);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.47,1.64,.37,.97);
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -6px 0 32px rgba(44,34,54,0.13);
}
.mobile-menu-close {
  background: var(--vivid-blue);
  color: #fff;
  font-size: 1.8rem;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  margin: 22px 18px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: background .13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--vivid-orange);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 26px 20px 38px;
}
.mobile-nav a {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-size: 1.13rem;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 12px 4px;
  border-radius: 7px;
  margin-right: 8px;
  transition: background .18s, color .23s;
  min-height: 44px;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--vivid-orange);
  background: #fff3e5;
}

@media (max-width: 1020px) {
  nav ul {
    gap: 16px;
  }
  .cta-button {
    margin-left: 12px;
    padding: 10px 20px;
  }
}
@media (max-width: 900px) {
  nav ul { gap: 8px; }
  .cta-button { margin-left: 0; }
}
@media (max-width: 768px) {
  nav ul, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  nav {
    min-height: 52px;
    padding: 10px 14px;
  }
}

/* MOBILE NAV OVERLAY/BG CONTROL */
.mobile-menu-bg {
  display: none;
}
.mobile-menu.open + .mobile-menu-bg {
  display: block;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(46,62,78,0.30);
  z-index: 1190;
  transition: opacity .2s;
}

/* MAIN/SECTION SPACING */
main {
  width: 100%;
  padding-top: 24px;
  padding-bottom: 20px;
}

section {
  margin-bottom: 60px;
}

/* TABLE STYLES (Preis-Tabelle) */
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(124,79,43,0.09);
}
thead {
  background: var(--vivid-orange);
  color: #fff;
}
th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #F3F0EA;
  font-size: 1rem;
}
th {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.02rem;
  letter-spacing: .06em;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:nth-child(even) {
  background: #f8f3ef;
}

/* BUTTONS DEFAULT */
button, .cta-button {
  outline: none;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
}
button:active, .cta-button:active {
  transform: scale(0.98);
}

/* FOOTER */
footer {
  background: #2E3E4E;
  color: #fff;
  padding: 40px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 34px;
  width: 100%;
}
footer img {
  height: 52px;
  margin-bottom: 18px;
}
footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
footer ul li a {
  color: #fff;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.98rem;
  transition: color 0.18s;
}
footer ul li a:hover, footer ul li a:focus {
  color: var(--vivid-orange);
}
footer div {
  font-size: 0.97rem;
  color: #f9f4ea;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
}
footer strong {
  color: #fff;
}

@media (max-width: 900px) {
  .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  footer .content-wrapper {
    align-items: flex-start;
  }
}

/* RESPONSIVE FLEX DIRECTION & SPACING */
@media (max-width: 768px) {
  .container,
  .content-grid,
  .feature-grid,
  .text-image-section,
  .card-container,
  .content-wrapper {
    flex-direction: column !important;
    gap: 20px;
  }
  .section {
    padding: 24px 7px;
    margin-bottom: 32px;
    border-radius: 17px;
  }
  .card {
    min-width: 0;
    width: 100%;
    padding: 18px 12px 16px 12px;
    border-radius: 18px;
  }
  .testimonial-card { flex-direction: column; gap: 12px; }
  .feature-item { min-width: unset; }
  footer .content-wrapper {
    gap: 20px;
  }
}

/* CREATIVE ARTISTIC EXTRAS */
.feature-grid > div, .feature-item {
  border-left: 5px solid var(--vivid-orange);
  background: linear-gradient(120deg, #fff 78%, #F9E0CE 100%);
  box-shadow: 0 2px 11px 0 rgba(242,133,60,0.07);
  border-radius: 15px;
  padding: 22px 16px 18px 22px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .14s;
}
.feature-grid > div:hover, .feature-item:hover {
  box-shadow: 0 7px 20px 0 rgba(44,34,54,0.13);
  transform: translateY(-3px) scale(1.01);
}
.feature-grid > div img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  filter: drop-shadow(0 3px 9px rgba(242,133,60,0.12));
}

/* TABLET ADAPTATIONS */
@media (max-width: 460px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.09rem; }
  main { padding-top: 10px; }
  .section { padding: 15px 3px; }
  .testimonial-card, .feature-item, .card {
    padding: 13px 8px 13px 10px;
  }
}

/* MICRO-INTERACTIONS & EFFECTS */
.card, .feature-item, .testimonial-card {
  transition: box-shadow .22s, transform .18s;
}
.card:focus-within, .feature-item:focus-within, .testimonial-card:focus-within {
  box-shadow: 0 7px 20px 0 rgba(67,119,255,0.13);
}

/* FORM FIELD DEFAULTS (if any forms used) */
input, textarea, select {
  border: 1.5px solid #eecba6;
  border-radius: 8px;
  padding: 12px 13px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 14px;
  width: 100%;
  transition: border .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--vivid-orange);
  outline: none;
}
label {
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.93rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #2E3E4E;
  padding: 22px 20px 18px 20px;
  box-shadow: 0 -10px 24px 0 rgba(46,62,78,0.10);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: space-between;
  z-index: 9999;
  gap: 32px;
  animation: fadein-banner 0.4s cubic-bezier(.36,1.53,.27,.88);
}
@keyframes fadein-banner {
  from { transform: translateY(100px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.cookie-consent-banner p {
  flex: 2;
  font-size: 1.02rem;
  color: #363636;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  border-radius: 14px;
  padding: 9px 20px;
  color: #fff;
  background: var(--vivid-blue);
  border: none;
  cursor: pointer;
  margin: 0 3px;
  transition: background .17s, box-shadow .2s;
  box-shadow: 0 2px 7px rgba(67,119,255,0.09);
}
.cookie-btn.accept {
  background: var(--vivid-orange);
}
.cookie-btn.reject {
  background: #b31e11;
}
.cookie-btn.setting {
  background: var(--brand-primary);
}
.cookie-btn:focus, .cookie-btn:hover {
  filter: brightness(1.12);
  box-shadow: 0 6px 25px 0 rgba(33,92,188,0.11);
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 7px 13px 11px;
  }
  .cookie-consent-actions { gap: 7px; }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 325px;
  max-width: 96vw;
  width: 410px;
  background: #fff;
  color: #222;
  border-radius: 22px;
  box-shadow: 0 7px 39px 0 rgba(44,34,54,0.23);
  transform: translate(-50%,-50%) scale(1.03);
  z-index: 10002;
  animation: fadein-cookie-modal 0.3s cubic-bezier(.29,1.46,.34,.94);
  display: flex;
  flex-direction: column;
  padding: 40px 28px 26px 30px;
  gap: 19px;
}
@keyframes fadein-cookie-modal {
  from { opacity:0; transform:translate(-50%,-40%) scale(.94); }
  to { opacity:1; transform: translate(-50%,-50%) scale(1.03); }
}
.cookie-modal h2 {
  color: var(--brand-primary);
  font-size: 1.43rem;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 7px;
}
.cookie-category[data-essential="true"] input { display: none; }
.cookie-category label {
  font-size: 1.01rem;
  color: #2E3E4E;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal-bg {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(44,62,78,.32);
  z-index: 10001;
  animation: fadein-cookie-bg 0.27s cubic-bezier(.26,1.37,.36,.71);
}
@keyframes fadein-cookie-bg {
  from { opacity:0; }
  to { opacity:1; }
}
@media (max-width: 460px) {
  .cookie-modal {
    min-width: 180px;
    padding: 15px 8px 8px 15px;
  }
}

/* Switch (toggle for cookies) */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}
.cookie-switch input { display:none; }
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #d2cdbd;
  border-radius: 16px;
  transition: background .18s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--vivid-orange);
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform .19s;
  box-shadow: 0 2px 6px 0 rgba(46,62,78,0.2);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}

/* ICONS STANDARD SPACING */
img[alt^="Adresse"], img[alt^="Telefon"], img[alt^="E-Mail"], img[alt^="Öffnungszeiten"] {
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
footer img[alt^="Adresse"], footer img[alt^="Telefon"], footer img[alt^="E-Mail"] {
  margin-right: 8px;
}

/* PRINT FRIENDLY */
@media print {
  header, nav, .mobile-menu, .mobile-menu-toggle, footer, .cookie-consent-banner, .cookie-modal-bg, .cookie-modal {
    display: none !important;
  }
  main, .container, .content-wrapper, .section {
    box-shadow: none !important;
    background: #fff !important;
    color: #222 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}
