/* RESET & BASE ------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F6FBFF;
  color: #222c35;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,svg {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #204060;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 {font-size: 2.5rem;line-height: 1.15;}
h2 {font-size: 2rem;}
h3 {font-size: 1.4rem;}
h4,h5,h6 {font-size: 1.1rem;}
p, ul, ol {
  color: #4B5666;
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.7;
}
ul,ol{padding-left:18px;}
a {
  color: #F0A914;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #d08900; }
strong { color: #204060; font-weight: bold; }

/* LAYOUT & CONTAINERS ------------------------------- */
.container {
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}
.content-wrapper {
  padding: 0;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 16px 0 rgba(36, 80, 200, 0.07);
}
main > section { margin-bottom: 0; border: none; }

/* FLEXBOX LAYOUTS ---------------------------------- */
.card-container,
.feature-grid,
.service-categories-grid,
.testimonial-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(32,64,96,0.06);
  transition: box-shadow .22s, transform .18s;
}
.card:hover {
  transform: translateY(-4px) scale(1.025) rotateZ(-1.3deg);
  box-shadow: 0 6px 20px rgba(32,64,96,0.16);
}
.feature-item,
.service-category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F8FCFF;
  border-radius: 14px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 2px 12px 0 rgba(240,169,20,0.10);
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 220px;
  transition: box-shadow .18s;
}
.feature-item:hover, .service-category:hover {
  box-shadow: 0 6px 18px 0 rgba(32,64,96,0.09);
  background: #fffbe7;
}
.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: #fffbe7;
  border-radius: 16px;
  min-width: 240px;
  flex: 1 1 240px;
  box-shadow: 0 3px 8px 0 rgba(240,169,20,0.10);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.13s;
}
.testimonial-card:hover {
  transform: scale(1.028) rotateZ(1.6deg);
  box-shadow: 0 9px 22px 0 rgba(32,64,96,0.14);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* NAVIGATION ------------------------------------------ */
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(32,64,96,0.04);
  padding: 0;
}
.logo img {
  max-height: 54px;
  margin-right: 20px;
  vertical-align: middle;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #204060;
  padding: 7px 11px;
  border-radius: 8px;
  position: relative;
  transition: background .19s, color .17s;
  outline: none;
}
.main-nav a:hover, .main-nav a:focus,
.footer-nav a:hover, .footer-nav a:focus {
  background: #F0A914;
  color: #fff;
}
.cta-button {
  background: #F0A914;
  color: #204060;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 18px;
  padding: 10px 22px;
  margin-left: 12px;
  border: none;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(240,169,20,0.14);
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, transform 0.13s;
  outline: none;
  text-align: center;
  text-shadow: 0 1px 3px #fff8;
}
.cta-button:hover, .cta-button:focus {
  background: #204060;
  color: #F0A914;
  box-shadow: 0 5px 14px 0 rgba(32,64,96,0.13);
  transform: scale(1.04) rotateZ(0.6deg);
}

/* MOBILE MENU --------------------------------------- */
.mobile-menu-toggle {
  background: #F0A914;
  color: #204060;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s, color 0.18s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #204060;
  color: #F0A914;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #204060ee;
  transform: translateX(-100vw);
  transition: transform 0.31s cubic-bezier(0.9,0.22,0.14,1.0);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #F0A914;
  color: #204060;
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 22px 0 0 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1200;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus  {
  background: #fff;
  color: #F0A914;
}
.mobile-nav {
  margin-top: 46px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #fff;
  background: transparent;
  border-radius: 10px;
  padding: 14px 12px 14px 8px;
  margin: 0;
  width: 100%;
  transition: background .16s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #204060;
  background: #F0A914;
}

/* HERO, HEADINGS, ANIMATION -------------------------- */
@keyframes float {
  0% {transform: translateY(0) scale(1);}
  55% {transform: translateY(-10px) scale(1.01);}
  100% {transform: translateY(0) scale(1);}
}
.content-wrapper h1, .content-wrapper h2 {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  letter-spacing: 0.010em;
  animation: float 2.8s cubic-bezier(0.51,0.09,0.38,1.09) infinite;
  background: linear-gradient(92deg, #204060 85%, #F0A914 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* FEATURE & SERVICE ICONS ---------------------------- */
.feature-item img, .service-category img,
.contact-shortcut img, .contact-direct img,
.contact-location img,
.average-rating img {
  width: 38px;
  height: 38px;
  background: #fffbe7;
  border-radius: 10px;
  box-shadow: 0 2px 6px 0 rgba(240,169,20,0.12);
  padding: 4px;
  margin-bottom: 6px;
  display: inline-block;
}
.average-rating strong {
  color: white;
}
.contact-shortcut, .contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 14px;
  margin-bottom: 6px;
}
.contact-shortcut a,
.contact-direct a {
  font-weight: 700;
  color: #204060;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  letter-spacing: 0.01em;
  margin-right: 8px;
}
.contact-shortcut a:hover, .contact-direct a:hover {
  color: #F0A914;
}

/* TABLES (Preise)  ----------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}
th, td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 2px solid #C4CBCE;
  font-size: 1.08rem;
}
th {
  background: #F0A914;
  color: #204060;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  border-radius: 9px 9px 0 0;
  border: none;
  letter-spacing: 0.01em;
}
tr:nth-child(even) td {
  background: #f9fafc;
}
/* TESTIMONIALS / REVIEWS ------------------------------ */
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fffbe7;
  color: #204060;
  border-radius: 16px;
  box-shadow: 0 2px 11px 0 rgba(240,169,20,0.085);
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 250px;
  z-index: 1;
  margin-bottom: 20px;
  flex-direction: column;
}
.testimonial-card p {
  color: #204060;
  font-size: 1.07rem;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: #204060;
  font-weight: 900;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
}
.average-rating {
  margin-top: 22px;
  background: #204060;
  color: #fff;
  padding: 10px 22px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
}

.review-form-info {
  margin-top: 32px;
  margin-bottom: 10px;
  background: #f1f7ff;
  border-radius: 15px;
  padding: 24px 18px;
  font-size: 1rem;
  color: #204060;
  box-shadow: 0 2px 9px 0 rgba(32,64,96,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* FOOTER ---------------------------------------------- */
footer {
  background: #204060;
  padding: 0;
  margin-top: 40px;
  color: #fff;
}
footer p {
  color: white;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 34px 18px 16px 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #F0A914;
  background: transparent;
  transition: color 0.19s, background 0.14s;
  font-weight: 700;
  border-radius: 7px;
  padding: 5px 10px;
}
.footer-info {
  color: #fff;
  font-size: 0.97rem;
  line-height: 1.65;
}
.footer-info a { color: #F0A914; font-weight: 600; }
.footer-info a:hover { color: #fff; text-decoration: underline; }

/* MAP EMBED ------------------------------------------- */
.map-embed {
  border-radius: 8px;
  background: #C4CBCE;
  color: #204060;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.03rem;
  margin: 12px 0 10px 0;
  min-height: 120px;
}

/* MODALS & COOKIE BANNER ------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 9900;
  background: #204060;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px 18px 22px;
  font-size: 1rem;
  box-shadow: 0 -4px 18px 0 rgba(32,64,96,0.13);
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
  transition: transform .37s ease, opacity .33s;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-button {
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  padding: 9px 22px;
  background: #F0A914;
  color: #204060;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.15s, transform 0.13s;
  box-shadow: 0 2px 8px 0 rgba(240,169,20,0.14);
}
.cookie-button:hover, .cookie-button:focus {
  background: #204060;
  color: #F0A914;
  transform: scale(1.045);
}

/* Cookie Settings Modal ------------------------------ */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: #204060ee;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #204060;
  border-radius: 22px;
  box-shadow: 0 6px 44px 0 rgba(32,64,96,0.23);
  padding: 38px 26px 18px 26px;
  min-width: 320px; max-width: 98vw;
  min-height: 200px;
  margin: 0 14px;
  animation: float 1.44s 1 alternate;
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  margin-top: 0;
}
.cookie-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-list label {
  display: flex;
  align-items: center;
  font-size: 1.04rem;
  gap: 10px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-list input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #F0A914;
  cursor: pointer;
}
.cookie-modal .cookie-modal-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;top:8px;right:12px;color:#204060;font-size:2rem;font-weight:bold;background:none;border:none;cursor:pointer;padding:4px 6px;border-radius:50%;transition:background .15s;}
.cookie-modal-close:hover,.cookie-modal-close:focus{background:#F0A914;color:#fff;}

/* ANIMATION micro-interactions ---------------------- */
.cta-button, .cookie-button, .feature-item, .service-category, .card, .testimonial-card {
  transition: box-shadow 0.18s, background 0.14s, color 0.15s, transform 0.13s;
}
/* MISC ---------------------------------------------- */
.section a:not(.cta-button) {
  font-weight: 600;
  color: #204060;
  background: #F0A9141a;
  padding: 7px 14px;
  border-radius: 8px;
  margin-right: 8px;
  transition: background .18s, color .15s;
}
.section a:not(.cta-button):hover, .section a:not(.cta-button):focus {
  color: #F0A914;
  background: #2040600a;
}

/* LISTS playful ------------------------------------- */
ul.feature-list, .section ul.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
ul.feature-list li {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #f3f9ff;
  padding: 8px 14px 8px 4px;
  border-radius: 11px;
  box-shadow: 0 1px 4px 0 rgba(32,64,96,0.05);
}
ul.feature-list img {
  width: 26px;
  height: 26px;
}

/* THANK YOU playful check ---------------------------- */
main .cta-button:last-child {
  animation: float 3.4s infinite alternate;
}

/* Responsive Transitions ------------------------------ */
@media (max-width:1024px) {
  .feature-grid, .testimonial-slider, .testimonial-grid, .service-categories-grid, .content-grid {
    gap: 16px;
  }
  .container { max-width: 100vw; }
}
@media (max-width: 900px) {
  .main-nav, .footer-nav {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem;}
  .container {
    padding-left:10px;
    padding-right:10px;
  }
  .section {
    margin-bottom: 30px;
    padding: 18px 8px;
    border-radius: 14px;
  }
  .feature-grid, .testimonial-slider, .testimonial-grid, .service-categories-grid, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card, .feature-item, .service-category, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  header .container {
    flex-direction: row;
    padding-top: 7px;
    padding-bottom: 7px;
    gap: 8px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-info { font-size: 0.93rem; }
}
@media (max-width:480px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    font-size: .99rem;
    padding: 18px 7px 12px 7px;
  }
  .cookie-buttons { width: 100%; gap: 9px; }
  .mobile-nav { padding-left: 12px; }
}

/* PLAYFUL TYPO HIERARCHY AND COLOR ACCENTS ----------- */
::-webkit-input-placeholder { color: #C4CBCE; }
::-moz-placeholder { color: #C4CBCE; }
:-ms-input-placeholder { color: #C4CBCE; }
::placeholder { color: #C4CBCE; opacity: 1; }

/* SCROLLBAR playful ---------------------------------- */
body::-webkit-scrollbar { width:12px; background:#C4CBCE; }
body::-webkit-scrollbar-thumb { background:#F0A914; border-radius:10px; }

/* SELECTION playful ---------------------------------- */
::selection {
  background: #F0A914;
  color: #fff;
}

/* END OF FILE */
