/* CSS Reset and 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 {
  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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F5F5F2;
  color: #15304A;
  font-family: 'Open Sans', Arial, sans-serif;
}
a {
  color: #15304A;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.45,0,.55,1);
}
a:hover, a:focus {
  color: #FDDB57;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
*:focus {
  outline: 2px solid #FDDB57;
  outline-offset: 2px;
}

/* Brand Colors & Typography */
:root {
  --primary: #15304A;
  --secondary: #FDDB57;
  --accent: #F5F5F2;
  --danger: #E51734;
  --success: #2CD285;
}

body {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.375rem; /* 38px */
  margin-bottom: 18px;
}
h2 {
  font-size: 1.75rem; /* 28px */
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 10px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.125rem; /* 18px */
  margin-bottom: 8px;
  font-weight: 700;
}
p {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--primary);
}

strong {
  font-weight: bold;
}

.container {
  max-width: 1120px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 22px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(21,48,74,0.13);
  transition: transform 0.24s cubic-bezier(.47,1.64,.41,.8), box-shadow 0.22s cubic-bezier(.47,1.64,.41,.8);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-2px) scale(1.025) rotate(-1deg);
  box-shadow: 0 12px 36px rgba(21,48,74,0.18);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section, .text-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF;
  padding: 28px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 28px 0 rgba(21,48,74,0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.2s cubic-bezier(.45,0,.55,1);
  min-width: 240px;
  max-width: 360px;
}
.testimonial-rating {
  font-size: 1.24rem;
  color: var(--secondary);
  letter-spacing: 2px;
  font-weight: bold;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-user {
  color: #676767;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.feature-grid, .category-grid, .kitchen-tip-list, .usp-grid, .specialty-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}
.feature-grid li, .category-grid li, .kitchen-tip-list li, .usp-grid li, .specialty-list li {
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(253,219,87,0.055);
  padding: 22px 20px;
  flex: 1 1 210px;
  max-width: 300px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s cubic-bezier(.47,1.64,.41,.8), transform 0.19s cubic-bezier(.47,1.64,.41,.8);
}
.feature-grid li:hover, .category-grid li:hover, .kitchen-tip-list li:hover, .usp-grid li:hover, .specialty-list li:hover {
  box-shadow: 0 6px 30px 0 rgba(21,48,74,0.17);
  transform: translateY(-4px) scale(1.025) rotate(-1.5deg);
}
.feature-grid img, .category-grid img, .kitchen-tip-list img, .usp-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.values-list li {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 1.01rem;
  letter-spacing: .03em;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px 0 rgba(253,219,87,.07);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.service-grid > div {
  background: #FFF;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(253,219,87,0.06);
  padding: 22px 20px;
  flex: 1 1 230px;
  min-width: 170px;
  margin-bottom: 20px;
}

.howto-list {
  margin: 18px 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.howto-list li {
  position: relative;
  font-size: 1rem;
  padding-left: 10px;
}
.howto-list li::before {
  content: '➔';
  color: var(--secondary);
  left: 0;
  position: absolute;
  font-size: 1rem;
  top: 0;
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  background: var(--secondary);
  border-radius: 20px;
  margin-top: 24px;
  padding: 36px 24px;
  box-shadow: 0 3px 18px 0 rgba(231,23,52,0.03);
}
.cta-section h2 {
  color: var(--primary);
}
.cta-section p {
  color: var(--primary);
  font-size: 1.06rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  padding: 14px 34px;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 0 1px 10px 0 rgba(253,219,87, .09);
  letter-spacing: .04em;
  cursor: pointer;
  transition: background 0.15s cubic-bezier(.45,0,.55,1), color 0.17s cubic-bezier(.45,0,.55,1), transform 0.17s cubic-bezier(.45,0,.55,1), box-shadow 0.16s cubic-bezier(.45,0,.55,1);
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.045);
  box-shadow: 0 6px 26px 0 rgba(253,219,87,.13);
}

/* Header & Navigation */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(21,48,74,0.03);
  position: relative;
  z-index: 998;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 7px 0 7px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s cubic-bezier(.45,0,.55,1), border 0.16s cubic-bezier(.45,0,.55,1);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.17s cubic-bezier(.45,0,.55,1), color 0.17s;
  z-index: 1010;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: #fff;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 40px rgba(21,48,74,0.22);
  z-index: 1999;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  transition: transform 0.36s cubic-bezier(.47,1.64,.41,.8);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.5rem;
  position: absolute;
  top: 22px;
  right: 24px;
  cursor: pointer;
  z-index: 2010;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  margin-top: 92px;
  margin-left: 38px;
  font-size: 1.3rem;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.16s cubic-bezier(.45,0,.55,1), border 0.15s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

/* Hide main nav on mobile, show burger */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 10px;
    margin-right: 10px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 990px) {
  .header-top {
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 540px) {
  .mobile-nav {
    font-size: 1.1rem;
    margin-left: 22px;
    gap: 22px;
  }
  .mobile-menu-close {
    top: 12px;
    right: 14px;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(90deg,#FDDB57 0 30%,#F5F5F2 100%);
  padding: 56px 0 38px 0;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 7px 60px rgba(253,219,87,0.10);
  margin-bottom: 48px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero-section h1 {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px #fff9be, 0 1px 0 #fff;
}
.hero-section p {
  font-size: 1.18rem;
  color: var(--primary);
}

/* Footer */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 26px 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  letter-spacing: .01em;
  padding: 5px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.12s, border 0.12s;
}
.footer-menu a:hover {
  color: var(--secondary);
  border-bottom: 1.5px solid var(--secondary);
}
.footer-contact {
  text-align: center;
  color: #fff;
  font-size: 0.98rem;
  opacity: .95;
}
.footer-contact p {
  color: #fff;
  margin-bottom: 0;
}

/* Contact Info on Kontakt page */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.contact-info img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  vertical-align: -5px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -2px 32px rgba(21,48,74,0.12);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 28px 18px 28px;
  font-size: 1rem;
  animation: cookieSlideIn 0.65s cubic-bezier(.45,0,.55,1);
  transition: transform 0.37s cubic-bezier(.47,1.64,.41,.8);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.12s, color 0.12s, box-shadow 0.18s;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--success);
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: var(--danger);
  border: 2px solid var(--danger);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--danger);
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 19999;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(21,48,74,0.26);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInCookieModal 0.28s cubic-bezier(.71,1.64,.31,.88);
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 48px rgba(21,48,74,0.21);
  border-radius: 17px;
  max-width: 430px;
  width: 90vw;
  padding: 36px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalSlideIn 0.39s cubic-bezier(.47,1.64,.41,.8);
  position: relative;
}
@keyframes cookieModalSlideIn {
  0% { transform: scale(.93) translateY(55px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 6px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.01rem;
}
.cookie-category .toggle {
  width: 40px;
  height: 22px;
  background: #b2b6bb;
  border-radius: 14px;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-category .toggle.enabled {
  background: var(--success);
}
.cookie-category .toggle .knob {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 2px;
  left: 2px;
  transition: left 0.16s cubic-bezier(.47,1.64,.41,.8);
}
.cookie-category .toggle.enabled .knob {
  left: 20px;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cookie-modal .modal-buttons button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal .accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus {
  background: var(--success); color: #fff;
}
.cookie-modal .reject {
  background: #fff;
  color: var(--danger);
  border: 2px solid var(--danger);
}
.cookie-modal .reject:hover, .cookie-modal .reject:focus {
  background: var(--danger); color: #fff;
}
.cookie-modal .save {
  background: var(--primary);
  color: #FFF;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: #bbb;
  font-size: 1.4rem;
  position: absolute;
  top: 10px;
  right: 14px;
  cursor: pointer;
  transition: color .14s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--secondary);
}

/* Page typography & Utility spacing */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
  margin-top: 10px;
  color: var(--primary);
}
.text-section h2, .text-section h3, .text-section h4 {
  margin-top: 10px;
}

.section:not(:last-child) {
  margin-bottom: 60px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* Responsive & Flex-direction switches */
@media (max-width: 990px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .section {
    padding: 34px 8px;
  }
  .hero-section {
    padding: 36px 0 24px 0;
    border-radius: 0 0 22px 22px;
  }
  .feature-grid, .category-grid, .service-grid, .kitchen-tip-list, .usp-grid, .specialty-list, .testimonials {
    gap: 16px;
  }
  .values-list {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .category-grid, .kitchen-tip-list, .service-grid, .usp-grid, .specialty-list, .testimonials {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .text-image-section, .text-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cta-section {
    padding: 22px 8px;
  }
  .hero-section .container {
    align-items: flex-start;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.19rem;
    margin-bottom: 9px;
  }
  h3 {
    font-size: 1.06rem;
    margin-bottom: 5px;
  }
  .section {
    padding: 20px 4px;
    margin-bottom: 32px;
  }
  .cta-button {
    padding: 13px 18px;
    font-size: 0.97rem;
  }
  .footer-contact {
    font-size: 0.92rem;
  }
}

/* Animation Utilities */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* COLORS & VIBRANCY EXTRAS */
.feature-grid li, .category-grid li, .kitchen-tip-list li, .usp-grid li, .specialty-list li {
  background: linear-gradient(94deg,#FFF 74%,#FDDB57 130%);
  box-shadow: 0 1.5px 10px 0 rgba(253,219,87,.045), 0 2px 12px rgba(21,48,74,0.03);
}
.CTA-primary, .testimonial-card {
  box-shadow: 0 5px 24px 0 rgba(253,219,87,0.09);
}

/* Utility classes */
.hide {
  display: none !important;
}
.mb-16 { margin-bottom: 16px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-0 { margin-top: 0 !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* End of CSS */
