/* Arcane Fire Schärfservice - Creative Artistic CSS Reset and Normalization */
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;
}
/* Remove tap highlight on mobile */
html {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F5F3EE;
  color: #24282A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #D7C925;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #F26C29;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 24px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Typography - Artistic + Brand */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', 'Impact', 'Arial Narrow Bold', sans-serif;
  letter-spacing: 0.012em;
  font-weight: 700;
  line-height: 1.12;
  color: #24282A;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: #D7C925;
  text-shadow: 2px 3px 0 #24282A, 0 2px 8px rgba(245, 99, 41, 0.12);
  /* artistic paint-like effect */
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #24282A;
  border-left: 6px solid #F26C29;
  padding-left: 18px;
}
h3 {
  font-size: 1.3rem;
  color: #F26C29;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  color: #24282A;
}
p {
  font-size: 1.07rem;
  color: #24282A;
}
strong {
  color: #24282A;
  font-weight: 700;
}
/* ARTISTIC DECORATIVE: squiggle underline for .cta-btn and links in hero */
.cta-btn, .content-wrapper > a.cta-btn {
  position: relative;
}
.cta-btn::after {
  content: '';
  display: block;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  height: 6px;
  background: url('../assets/icons/cta-underline.svg') repeat-x center/contain;
  opacity: 0.7;
  pointer-events: none;
}

/* Brand Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.16rem;
  background: #F26C29;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 14px 32px;
  margin-top: 12px;
  cursor: pointer;
  box-shadow: 0 2px 28px rgba(242,108,41,0.14);
  transition: transform 0.18s, background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-shadow: none;
}
.cta-btn.secondary {
  background: #24282A;
  color: #D7C925;
}
.cta-btn:hover, .cta-btn:focus {
  background: #D7C925;
  color: #24282A;
  transform: scale(1.055) rotate(-2deg);
  box-shadow: 0 6px 38px rgba(242,108,41,0.22);
  text-decoration: none;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #F26C29;
  color: #fff;
}


/* HEADER & NAV */
header {
  background: #fff;
  border-bottom: 2px solid #F26C29;
  box-shadow: 0 2px 18px 0 rgba(215,201,37,0.03);
  position: sticky;
  top: 0;
  z-index: 1100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 16px 12px 12px 12px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: #24282A;
  font-family: 'Oswald', sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 9px;
  transition: background 0.15s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F26C29;
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: #F26C29;
  background: none;
  border: none;
  padding: 6px 11px 5px 11px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.16s, color 0.17s;
  z-index: 1200;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: rgba(242,108,41,0.07);
  outline: none;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: rgba(36,40,42,0.91);
  transform: translateX(110vw);
  transition: transform 0.41s cubic-bezier(.73,0,.33,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 36px;
  padding-left: 0;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  padding: 10px 22px 10px 32px;
  color: #F5F3EE;
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #D7C925;
  background: rgba(242, 108, 41, 0.2);
  border-radius: 28px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 12px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.36rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 0;
  transition: color .22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D7C925;
}

/* Hide navigation on mobile, show hamburger */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}


/* HERO + GENERAL SECTIONS */
.hero {
  min-height: 38vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 0 30px 0;
  background: #F5F3EE;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid > div {
  background: #fff;
  border-radius: 22px 6px 28px 11px;
  box-shadow: 0 3px 16px rgba(36,40,42,0.07), 0 1px 3px rgba(215,201,37,0.10);
  padding: 29px 20px 21px 20px;
  min-width: 230px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
  position: relative;
  border-left: 8px solid #F26C29;
  margin-bottom: 20px;
  transition: transform 0.17s, box-shadow 0.22s;
}
.features-grid > div:hover {
  transform: translateY(-7px) rotate(-1deg) scale(1.04);
  box-shadow: 0 10px 36px #D7C92522;
  background: #FCF9E9;
}
.features-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
  filter: drop-shadow(2px 0 4px #D7C92522);
}

/* Responsive flex containers as required */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px 6px 24px 14px;
  background: #fff;
  box-shadow: 0 3px 13px #F26C2922;
  padding: 26px 22px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 12px 38px #24282A10, 0 2px 12px #D7C92518;
  transform: scale(1.03) rotate(0.6deg);
}
.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;
    gap: 24px;
  }
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
  .container {
    padding: 0 6px;
  }
  header .container {
    padding: 16px 6px 12px 6px;
    gap: 14px;
  }
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 20px 12px 22px 13px;
  box-shadow: 0 3px 24px #24282A10, 0 0px 6px #D7C92519;
  gap: 20px;
  padding: 24px 30px 22px 26px;
  margin-bottom: 22px;
  border-left: 8px solid #D7C925;
  position: relative;
  min-width: 240px;
}
.testimonial-card p {
  color: #24282A;
  font-size: 1.1rem;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-card strong {
  color: #F26C29;
  font-size: 1.05rem;
}
.testimonial-card [alt=Bewertung] {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* ICONS, CALL-OUTS, DECOR */
.achievement-callout {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #24282A;
  color: #D7C925;
  border-radius: 26px 9px 31px 12px;
  box-shadow: 0 2px 10px #F26C2922;
  gap: 16px;
  padding: 19px 26px;
  font-size: 1.13rem;
  margin-bottom: 16px;
}
.achievement-callout img {
  width: 34px;
  height: 34px;
  margin-right: 12px;
  flex-shrink: 0;
}


/* CONTACT / INFO BOXES */
.contact-snippet, .contact-details-reminder, .directions-brief {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F5F3EE;
  border-radius: 15px 6px 19px 8px;
  box-shadow: 0 3px 14px #D7C92511;
  padding: 16px 20px;
  font-size: 1.02rem;
}
.contact-snippet img {
  width: 28px;
  height: 28px;
}

.interactive-map {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 2px dashed #D7C925;
  border-radius: 18px 4px 19px 11px;
  padding: 15px 20px;
  margin-top: 16px;
  font-size: 1.08rem;
  box-shadow: 0 3px 10px #D7C92515;
}

/* TABLES & DL */
table {
  width: 100%;
  background: #fff;
  border-radius: 14px 6px 18px 8px;
  box-shadow: 0 2px 11px #D7C92511;
  margin-bottom: 22px;
  overflow: hidden;
  border-collapse: collapse;
  font-size: 1.07rem;
}
table th, table td {
  padding: 14px 10px;
  border-bottom: 1px solid #F5F3EE;
}
table th {
  background: #D7C925;
  color: #24282A;
  font-family: 'Oswald', sans-serif;
  font-size: 1.09rem;
}
table tr:last-child td {
  border-bottom: none;
}
dt {
  font-family: 'Oswald', sans-serif;
  color: #F26C29;
  font-weight: 700;
  margin-top: 18px;
  font-size: 1.11rem;
}
dd {
  margin-left: 0;
  margin-bottom: 10px;
  color: #24282A;
  font-size: 1.02rem;
}


/* FOOTER */
footer {
  background: #24282A;
  color: #F5F3EE;
  padding: 38px 0 20px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #D7C925;
  font-family: 'Oswald', sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-brand-info {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: flex-start;
  margin-top: 12px;
}
.footer-brand-info img {
  width: 50px;
  height: 50px;
}
.footer-brand-info p {
  color: #F5F3EE;
  font-size: 0.97rem;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-nav { gap: 12px; }
  .footer-brand-info { flex-direction: column; gap: 9px; align-items: flex-start; }
}

/* COOKIE BANNER & MODALS */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3000;
  background: #24282A;
  color: #F5F3EE;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px 20px 24px;
  box-shadow: 0 -2px 16px #24282A23;
  font-size: 1.03rem;
  gap: 22px;
  flex-wrap: wrap;
  animation: cookie-popin 0.63s cubic-bezier(.31,1.21,.91,.31) both;
}
@keyframes cookie-popin {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__actions {
  display: flex;
  gap: 19px;
}
.cookie-btn, .cookie-btn:visited {
  display: inline-flex;
  align-items: center;
  padding: 11px 21px;
  border: none;
  border-radius: 18px;
  background: #D7C925;
  color: #24282A;
  font-family: 'Oswald', sans-serif;
  font-size: 1.01rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .17s, color .17s, box-shadow .17s;
  box-shadow: 0 2px 8px #D7C92519;
  margin-right: 0;
  margin-left: 0;
}
.cookie-btn.secondary {
  background: #F26C29;
  color: #fff;
}
.cookie-btn.settings {
  background: #24282A;
  color: #D7C925;
  border: 2px solid #D7C925;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F5F3EE;
  color: #24282A;
  box-shadow: 0 4px 20px #D7C92526;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #D7C925;
  color: #24282A;
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,40,42,0.91);
  z-index: 4500;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 30px 0 0 0;
  animation: fadeIn .22s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal__content {
  background: #fff;
  color: #24282A;
  border-radius: 24px 16px 16px 32px;
  max-width: 430px;
  width: 90%;
  margin-bottom: 36px;
  box-shadow: 0 9px 32px #F26C2929,0 1px 3px #24282A22;
  padding: 26px 20px 24px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: popModal .31s cubic-bezier(.43,1.6,.69,1.04);
}
@keyframes popModal {
  from { opacity: 0; transform: scale(0.81); }
  to   { opacity: 1; transform: scale(1); }
}
.cookie-modal__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.cookie-modal__close {
  font-size: 2.1rem;
  color: #24282A;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 10px;
}
.cookie-modal__close:hover {
  background: #F5F3EE;
  color: #F26C29;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 4px;
}
/* switch/toggle visual */
.cookie-switch {
  position: relative;
  width: 48px;
  height: 26px;
  display: inline-block;
}
.cookie-switch input {
  display: none;
}
.cookie-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #D7C925;
  border-radius: 26px;
  transition: background .19s;
}
.cookie-switch-slider:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform .19s;
  box-shadow: 0 1px 5px #24282A18;
}
.cookie-switch input:checked + .cookie-switch-slider {
  background: #F26C29;
}
.cookie-switch input:checked + .cookie-switch-slider:before {
  transform: translateX(22px);
}
.cookie-switch[aria-disabled="true"] .cookie-switch-slider {
  background: #bbb;
  cursor: not-allowed;
}
.cookie-switch[aria-disabled="true"]:before {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .cookie-banner {flex-direction: column;align-items: flex-start; padding:20px 12px;gap:12px;}
  .cookie-modal__content {padding:16px 8px 16px 10px;}
}


/* LISTS & FORMS */
ul li, ol li {
  margin-bottom: 7px;
  position: relative;
  padding-left: 22px;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: #F26C29;
  border-radius: 50%;
  position: absolute;
  left: 0; top: 7px;
}


/* CUSTOM FLEX-BASED SPACING PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Micro-interactions */
*:focus {
  outline: 2px solid #D7C925;
  outline-offset: 2px;
  background: rgba(215,201,37,0.05);
}

/* Artistic Extras */
section {
  background: #F5F3EE;
  border-radius: 24px 17px 22px 4px;
  box-shadow: 0 3px 26px #D7C92509;
}

/* Utility */
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

/* Responsive utility classes */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.09rem; }
  section {padding:24px 4px;}
  .testimonial-card {padding:13px 11px 14px 10px;}
}

/* Scroll bar for artistic accent */
::-webkit-scrollbar {
  width: 10px;
  background: #FCF9E9;
}
::-webkit-scrollbar-thumb {
  background: #D7C925;
  border-radius: 6px;
}


/* Accessibility: Hidden text for screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* Animated logo mark for artistic style (optional) */
@keyframes logo-flicker {
  0%, 18%,100% { opacity:1; }
  21%, 23%,82% { opacity:0.7; }
  25%, 31%,96% { opacity:0.93;}
}
header .container > a img, .footer-brand-info img {
  animation: logo-flicker 5s infinite linear alternate-reverse;
}

/* Fix for absolutely positioned decor only */
.card .decor, .features-grid .decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* End CSS */
