/* ============================== */
/* === GenussWeise Style Reset ==== */
/* ============================== */
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #181e28;
  color: #f3f5f9;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #e9c46a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #f4a261;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ======================== */
/* === TYPOGRAPHY SCALE === */
/* ======================== */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #e9c46a;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f4a261;
  margin-bottom: 20px;
  letter-spacing: 0.025em;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #e9c46a;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f4a261;
  margin-bottom: 10px;
}
p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #f3f5f9;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b {
  color: #e9c46a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/* ========================= */
/* === LAYOUT CONTAINERS === */
/* ========================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #20293b;
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 rgba(38, 70, 83, 0.12), 0 1.5px 14px 0 rgba(244, 162, 97, 0.07);
}
@media (max-width: 768px) {
  section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* ==================== */
/* === MAIN NAV BAR === */
/* ==================== */
header {
  width: 100%;
  background: #181e28;
  box-shadow: 0 4px 32px 0 rgba(38, 70, 83, 0.08);
  z-index: 30;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 16px 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #e9c46a;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #181e28;
  background: #e9c46a;
}
.main-nav img {
  width: 44px;
  margin-right: 12px;
}
.main-nav .cta-btn {
  background: linear-gradient(90deg, #f4a261 60%, #e76f51 100%);
  color: #181e28;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  padding: 10px 22px;
  margin-left: 12px;
  box-shadow: 0 4px 22px 0 rgba(233, 196, 106, 0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.23s;
  letter-spacing: 0.02em;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #e9c46a;
  color: #264653;
  box-shadow: 0 2px 8px 0 rgba(233, 196, 106, 0.28);
}

/* Hide nav and show burger on mobile */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 50;
    background: none;
    border: none;
    color: #e9c46a;
    font-size: 2rem;
    border-radius: 50%;
    padding: 8px 14px 8px 12px;
    transition: background 0.2s;
    box-shadow: 0 1px 6px #26465350;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    background: #264653;
    color: #e9c46a;
  }
}

/* ====================== */
/* === MOBILE NAV BAR === */
/* ====================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #20293be6;
  transform: translateX(-100vw);
  transition: transform 0.45s cubic-bezier(0.45, 0.04, 0.43, 1);
  z-index: 1000;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  border: none;
  background: transparent;
  color: #e9c46a;
  font-size: 2.3rem;
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1020;
  border-radius: 8px;
  padding: 4px 10px 2px 10px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #264653;
  color: #e76f51;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 90px 38px 30px 38px;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #e9c46a;
  font-size: 1.15rem;
  padding: 15px 0 15px 4px;
  border-radius: 8px;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f4a261;
  color: #181e28;
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ========================= */
/* === HERO SECTIONS ======= */
/* ========================= */
section:first-of-type {
  background: #181e28;
  box-shadow: 0 8px 32px 0 rgba(38,70,83,0.18);
  margin-bottom: 50px;
}

/* ========================= */
/* === BUTTONS & CTA ======= */
/* ========================= */
.cta-btn, .quick-filters button, .service-teaser span, .service-detail b {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 10px;
  padding: 11px 24px;
  background: linear-gradient(90deg, #f4a261 70%, #e76f51 100%);
  color: #181e28;
  box-shadow: 0 1px 10px 0 rgba(233,196,106,0.11);
  font-size: 1.08rem;
  border: none;
  margin-bottom: 16px;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: background 0.2s, color 0.18s, box-shadow 0.18s;
}
.cta-btn:hover, .cta-btn:focus, .quick-filters button:hover, .quick-filters button:focus {
  background: #e9c46a;
  color: #264653;
  box-shadow: 0 2px 16px 0 rgba(244, 162, 97, 0.25);
}
.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}
.quick-filters button {
  background: #264653;
  color: #e9c46a;
  box-shadow: none;
  padding: 10px 17px;
  border: none;
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.16s;
}
.quick-filters button:hover, .quick-filters button:focus {
  background: #f4a261;
  color: #181e28;
}

/* ========================= */
/* === FEATURE GRIDS/LISTS== */
/* Universal flex patterns */
/* ========================= */
.feature-grid, .category-grid, .service-list, .service-overview-list, .footer-menu, .recipe-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid li, .category-grid div, .service-teaser, .service-detail {
  background: #1f2839;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(38,70,83,0.09);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 190px;
  max-width: 290px;
  flex: 1 1 200px;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid transparent;
  transition: border 0.18s, box-shadow 0.20s;
}
.feature-grid li:hover, .category-grid div:hover, .service-teaser:hover, .service-detail:hover {
  border: 2px solid #f4a261;
  box-shadow: 0 2px 20px 0 rgba(244,162,97,0.15);
  z-index: 5;
}
.feature-grid img, .category-grid img, .service-detail img, .service-teaser img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 12px;
  color: #e9c46a;
  font-size: 1.02rem;
}

/* ========================= */
/* === CARD CONTAINERS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232e40;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(38, 70, 83, 0.09);
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* ========================= */
/* === TESTIMONIALS CARD === */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #f3f5f9;
  color: #222a36;
  border-radius: 14px;
  padding: 20px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px 0 rgba(38,70,83,0.09);
  border-left: 5px solid #f4a261;
  max-width: 600px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(233,196,106,0.17);
  border-left: 5px solid #e76f51;
}
.testimonial-card p {
  color: #232e40;
  font-size: 1.13rem;
  margin-bottom: 11px;
}
.testimonial-card strong {
  color: #e76f51;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* ================================ */
/* === NEWSLETTER & CALL 2 ACTION */
/* ================================ */
ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #f4a261;
  border-radius: 80%;
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
}

/* Remove list dots for footer and other navs */
.footer-menu ul li:before,
.footer-menu nav a:before,
.quick-filters li:before {
  display: none;
}

/* ======================== */
/* === SEARCH BAR ========= */
.search-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.search-bar input[type="text"] {
  border: 2px solid #e9c46a;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  background: #f3f5f9;
  color: #232e40;
  transition: border 0.18s, box-shadow 0.17s;
}
.search-bar input[type="text"]:focus {
  border: 2px solid #e76f51;
  box-shadow: 0 2px 12px rgba(233,196,106,0.14);
  outline: none;
}
.search-bar label {
  color: #e9c46a;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ======================== */
/* === SPECIAL PATTERNS === */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .contact-details, .recipe-categories {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tips-highlights {
  background: #e9c46a;
  color: #181e28;
  border-radius: 12px;
  padding: 15px 20px;
  margin-top: 15px;
  font-size: 1.07rem;
  font-weight: 600;
}
.opening-hours {
  margin-top: 18px;
  background: #232e40;
  color: #e9c46a;
  border-radius: 11px;
  padding: 15px 22px;
}
.opening-hours h3 {
  color: #f4a261;
  margin-bottom: 10px;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  color: #e9c46a;
}

/* ======================== */
/* === FOOTER ============ */
footer {
  background: #181e28;
  color: #e9c46a;
  padding: 38px 0 6px 0;
  margin-top: 60px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 30px;
}
.footer-menu nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-menu nav a {
  color: #e9c46a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 2px;
  padding: 6px 0 6px 0;
  transition: color 0.16s, border-left 0.16s;
  border-left: 3px solid transparent;
}
.footer-menu nav a:hover, .footer-menu nav a:focus {
  color: #e76f51;
  border-left: 3px solid #f4a261;
}
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: #e9c46a;
  font-family: 'Open Sans', Arial, sans-serif;
}
.brand-info img {
  width: 38px;
  margin-bottom: 7px;
}
.footer-social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 23px;
  margin-top: 11px;
}
.footer-social-icons img {
  width: 32px;
  filter: drop-shadow(0 1px 4px #e9c46a30);
  transition: filter 0.18s, transform 0.12s;
}
.footer-social-icons img:hover, .footer-social-icons img:focus {
  filter: drop-shadow(0 3px 13px #e76f51);
  transform: translateY(-2px) scale(1.09);
}

/* ======================== */
/* === RESPONSIVE FLEX ==== */
@media (max-width: 1060px) {
  .feature-grid,
  .service-list,
  .service-overview-list,
  .category-grid,
  .recipe-categories,
  .footer-menu {
    flex-wrap: wrap;
    gap: 21px;
  }
}
@media (max-width: 900px) {
  .feature-grid li, .category-grid div, .service-teaser, .service-detail {
    min-width: 140px;
    max-width: 100%;
    flex: 1 1 45%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.37rem; }
  .container {
    padding: 0 8px;
  }
  .content-wrapper { gap: 16px; }
  .feature-grid, .service-list, .category-grid, .service-overview-list, .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .feature-grid li, .category-grid div, .service-teaser, .service-detail {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .footer-menu { gap: 24px; }
  .content-grid { flex-direction: column; gap: 10px; }
  .text-image-section, .contact-details, .recipe-categories {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .testimonial-card { padding: 13px 15px; }
}

@media (max-width: 540px) {
  h1 { font-size: 1.36rem; }
  h2 { font-size: 1.1rem; }
  section { padding: 18px 5px; margin-bottom: 20px; }
}

/* =================================== */
/* === COOKIE CONSENT BANNER/POPUP === */
/* =================================== */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232e40;
  color: #e9c46a;
  z-index: 1800;
  padding: 18px 28px;
  box-shadow: 0 -6px 28px 0 #26465370;
  transition: transform 0.3s cubic-bezier(0.46, 0.03, 0.52, 1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner p {
  margin-bottom: 0;
  color: #e9c46a;
  font-size: 1rem;
  flex: 1 1 60vw;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.99rem;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  padding: 9px 16px;
  box-shadow: 0 1px 5px #e9c46a50;
  background: #f4a261;
  color: #181e28;
  margin: 0;
  transition: background 0.17s, color 0.14s;
}
.cookie-banner button.reject {
  background: #264653;
  color: #e9c46a;
}
.cookie-banner button.settings {
  background: #e9c46a;
  color: #264653;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #e76f51;
  color: #fff;
}

/* ======================== */
/* === COOKIE SETTINGS ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(24,30,40,0.92);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.16s;
}
.cookie-modal {
  background: #20293b;
  border-radius: 16px;
  padding: 34px 28px;
  width: 96vw;
  max-width: 410px;
  color: #e9c46a;
  box-shadow: 0 12px 40px 0 #232e40b0;
  display: flex;
  flex-direction: column;
  gap: 19px;
  z-index: 2150;
  animation: cookieModalIn 0.44s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translateY(120px) scale(0.93); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  color: #f4a261;
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #e9c46a;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #f4a261;
  width: 19px;
  height: 19px;
}
.cookie-modal .cookie-action-row {
  margin-top: 13px;
  display: flex;
  gap: 17px;
  justify-content: flex-end;
}
.cookie-modal button {
  border-radius: 7px;
  border: none;
  cursor: pointer;
  padding: 7px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 600;
  background: #e9c46a;
  color: #181e28;
  transition: background 0.13s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #e76f51;
  color: #fff;
}

@media (max-width: 540px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 10px; }
  .cookie-modal { padding: 18px 7px; }
}

/* ========================= */
/* === TRANSITIONS, EFFECTS*/
/* ========================= */
a, button, .service-teaser, .service-detail, .feature-grid li, .category-grid div, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.14s, background 0.16s, color 0.13s, transform 0.13s;
}
button, .cta-btn {
  transition: background 0.18s, color 0.13s, box-shadow 0.16s, border 0.12s, transform 0.13s;
}

/* Micro-interactions */
.service-teaser:hover, .service-detail:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 4px 18px 0 #e9c46a50;
}

/* ================ */
/* === UTILS ====== */
/* ================ */
.hide { display: none !important; }
.show { display: block !important; }
.hidden { opacity: 0 !important; pointer-events: none !important; }

/* =============================== */
/* === OVERRIDES & ACCESSIBILITY ==*/
/* =============================== */
:focus {
  outline: 2px solid #f4a261;
  outline-offset: 2px;
}
::-webkit-scrollbar {
  width: 9px;
  background: #232e40;
}
::-webkit-scrollbar-thumb {
  background: #e9c46a;
  border-radius: 6px;
}

/* Selection highlights */
::selection { background: #e9c46a; color: #181e28; }
::-moz-selection { background: #e9c46a; color: #181e28; }