/* ====================
   RESET & BASE STYLES
==================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #232D3B;
  background-color: #F3F7FA;
  min-height: 100vh;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2059ac;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #7CB518;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
  font-size: 1rem;
}
li + li {
  margin-top: 8px;
}
hr {
  border: none;
  border-top: 1px solid #e0e6eb;
  margin: 32px 0;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================
   TYPOGRAPHY & HEADINGS
================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #232D3B;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-top: 12px;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-top: 32px;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-top: 24px;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.25rem;
  color: #4A6179;
  margin-bottom: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.text-section h2,
.text-section h3 {
  margin-top: 0;
}
p {
  margin-bottom: 16px;
  color: #232D3B;
  font-size: 1rem;
}
strong {
  color: #232D3B;
  font-weight: bold;
}
.text-section,
.content-wrapper.text-section {
  max-width: 720px;
}

/* ================================
   LAYOUT SECTIONS & COMPONENTS
================================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(44,62,80,0.10);
  padding: 28px 24px 20px 24px;
  min-width: 240px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 4px 24px 0 rgba(44,62,80,0.18);
  transform: translateY(-4px) scale(1.016);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(44,62,80,0.09);
  position: relative;
  flex: 1 1 270px;
  padding: 24px 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-left: 6px solid #7CB518;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(44,62,80,0.10);
  transition: border-color 0.2s;
}
.testimonial-card:hover {
  border-left-color: #2059ac;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #232D3B;
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #4A6179;
  font-style: normal;
}


/* LISTS */
ul {
  list-style-type: disc;
  margin-bottom: 20px;
  color: #232D3B;
  padding-left: 24px;
}
ol {
  list-style-type: decimal;
  margin-bottom: 20px;
  color: #232D3B;
  padding-left: 28px;
}
li img {
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
  margin-right: 8px;
}

/* ================================
   BUTTONS & INTERACTIONS
================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  padding: 12px 32px;
  background: #232D3B;
  color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 12px 0 rgba(44,62,80,0.07);
  letter-spacing: 0.03em;
  transition: background 0.18s, transform 0.19s, box-shadow 0.16s;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.btn-primary:focus,
.btn-primary:hover {
  background: #3566ad;
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 4px 20px 0 rgba(44,62,80,0.14);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 26px;
  background: #7CB518;
  color: #fff;
  border-radius: 25px;
  transition: background 0.15s, transform 0.18s;
  margin-right: 8px;
  cursor: pointer;
}
.btn-secondary:focus,
.btn-secondary:hover {
  background: #5e8900;
  color: #fff;
  transform: translateY(-2px);
}
.btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8eef4;
  color: #232D3B;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s;
  margin-right: 8px;
  border: 1px solid #e0e6eb;
  cursor: pointer;
}
.btn-tertiary:hover, .btn-tertiary:focus {
  background: #d6e0ea;
  color: #2059ac;
}

/* ================================
   HEADER & NAVIGATION
================================ */
header {
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(44,62,80,0.07);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
header a img {
  max-height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #232D3B;
  letter-spacing: 0.015em;
  font-size: 1.03rem;
  padding: 8px 11px;
  border-radius: 7px;
  transition: background 0.18s, color 0.13s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #7CB518;
  background: #e1f0db;
}
header .btn-primary {
  margin-left: 18px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #232D3B;
  cursor: pointer;
  padding: 6px 12px;
  display: none;
  z-index: 150;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #232D3B;
  color: #fff;
  transform: translateX(-100vw);
  transition: transform 0.43s cubic-bezier(0.68, -.55, 0.27, 1.55);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
  gap: 24px;
  box-shadow: 0 8px 44px 0 rgba(44,62,80,0.17);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  align-self: flex-end;
  margin-right: 32px;
  margin-bottom: 20px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.23rem;
  color: #fff;
  padding: 13px 0;
  border-radius: 5px;
  transition: background 0.17s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F3F7FA;
  color: #232D3B;
}

/* Show/hide main-nav & mobile menu button */
@media (max-width: 1023px) {
  .main-nav,
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ================================
   MAIN SECTION SPACING
================================ */
main {
  padding-bottom: 60px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
section .container {
  padding: 0 20px;
}

/* ================================
   FOOTER
================================ */
footer {
  background: #232D3B;
  color: #f3f7fa;
  padding: 50px 0 22px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
}
footer a img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 6px;
}
.footer-nav a {
  color: #d9e7f3;
  font-size: 1.01rem;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
  transition: color 0.16s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #7CB518;
}
.footer-contact {
  font-size: 0.98rem;
  color: #a6b6ca;
  margin-top: 4px;
  max-width: 340px;
}
footer p {
  color: #a6b6ca;
  word-break: break-word;
}

/* ================================
   MISCELLANEOUS UI: BADGES, ICONS
================================ */
img[alt^="Award"],
img[alt^="Partner"],
img[alt^="Gastronomiepartner"] {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin-right: 12px;
  margin-top: -6px;
}

/* ================================
   RESPONSIVE: TABLET & MOBILE
================================ */
@media (max-width: 1023px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
  .feature-grid, .card-container, .content-grid {
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  section {
    margin-bottom: 36px;
    padding: 30px 0 22px 0;
  }
  h1 { font-size: 2.02rem; }
  h2 { font-size: 1.4rem; }
  .content-wrapper {
    gap: 13px;
    padding: 0;
  }
  .feature-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item,
  .card {
    min-width: 0;
    width: 100%;
    margin-bottom: 14px;
  }
  .testimonial-card {
    gap: 12px;
    padding: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-contact {
    font-size: 0.92rem;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1rem; }
  main { padding-bottom: 14px; }
}

/* ================================
   COOKIE CONSENT BANNER & MODAL
================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #232D3B;
  color: #fff;
  border-top: 3px solid #7CB518;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  padding: 22px 8px 18px 8px;
  box-shadow: 0 -2px 22px 2px rgba(44,62,80,0.15);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s, transform 0.35s;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-message {
  margin-bottom: 14px;
  max-width: 600px;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary,
.cookie-banner .btn-tertiary {
  min-width: 120px;
}
/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(44,62,80,0.64);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.35s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #232D3B;
  border-radius: 16px;
  box-shadow: 0 10px 40px 0 rgba(44,62,80,0.18);
  width: 100%;
  max-width: 430px;
  padding: 44px 30px 32px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-pop 0.33s cubic-bezier(0.42,0,0.58,1);
}
@keyframes modal-pop {
  0% { transform: scale(0.82) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  margin-top: 0;
  color: #232D3B;
  font-size: 1.27rem;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
}
/* cookie switch toggle */
.cookie-toggle input[type="checkbox"] {
  appearance: none;
  width: 44px;
  height: 22px;
  background: #d9e7f3;
  border-radius: 20px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.16s;
}
.cookie-toggle input[type="checkbox"]:checked {
  background: #7CB518;
}
.cookie-toggle label {
  display: block;
  width: 44px;
  height: 22px;
  position: absolute;
  left: 0; top: 0;
  cursor: pointer;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.cookie-toggle input[type="checkbox"]:checked + .slider {
  transform: translateX(22px);
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .btn-secondary,
.cookie-modal .btn-tertiary {
  min-width: 110px;
}

/* ================================
   FORM ELEMENTS (future proof)
================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea {
  display: block;
  width: 100%;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 11px 14px;
  margin-bottom: 18px;
  background: #F3F7FA;
  color: #232D3B;
  border-radius: 7px;
  border: 1px solid #c6d0db;
  transition: border-color 0.18s;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #232D3B;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #232D3B;
}

/* ================================
   SCROLLBAR & SELECTION
================================ */
::selection {
  background: #7CB518;
  color: #fff;
}
::-webkit-scrollbar {
  width: 11px;
  background: #e8eef4;
}
::-webkit-scrollbar-thumb {
  background: #c0cfe3;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2059ac;
}

/* ================================
   MISC & UTILITY CLASSES
================================ */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.m-b-0 {
  margin-bottom: 0 !important;
}
.section:last-child,
section:last-child {
  margin-bottom: 0;
}

/* ================================
   PRINT (best practice)
================================ */
@media print {
  header, footer, nav, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { color: #000; background: #fff; }
}
