/* CSS RESET (normalize & reset to remove browser defaults) */
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, 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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  background: #FCFDF2;
  color: #304040;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* BRAND COLORS */
:root {
  --color-primary: #216869;
  --color-secondary: #FCFDF2;
  --color-accent: #F28D35;
  --color-accent-dark: #b06011;
  --color-bg: #FFFFFF;
  --color-grey: #F5F3EA;
  --color-text: #304040;
  --color-muted: #B6B6A8;
}

/* SELECTION COLOR */
::selection {
  background: var(--color-accent);
  color: #fff;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--color-accent-dark);
}
p, ul, ol, li, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-text);
}
p { margin-bottom: 12px; }
ul, ol { padding-left: 18px; margin-bottom: 12px; }
strong, b {
  font-weight: 700;
  color: var(--color-primary);
}
a {
  color: var(--color-accent-dark);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--color-primary);
  text-decoration: underline;
}

/* BUTTONS */
.btn-primary, button.btn-primary, input[type=submit].btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--color-accent);
  color: #fff !important;
  border: none;
  border-radius: 38px;
  padding: 0.75em 2em;
  box-shadow: 0 2px 12px 0 rgba(242, 141, 53, 0.12);
  margin-top: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.18s, outline 0.1s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-accent-dark);
  box-shadow: 0 4px 22px 0 rgba(33,104,105,0.13);
  outline: none;
}
button, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4em;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 32px;
  transition: background 0.18s, color 0.18s;
}
button:hover, .mobile-menu-toggle:hover, .mobile-menu-close:hover {
  background: var(--color-grey);
  color: var(--color-accent-dark);
}

/* HEADER (Desktop) */
header {
  background: #fff;
  box-shadow: 0 4px 28px rgba(33,104,105,0.07);
  border-bottom: 2px solid var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-primary);
  background: none;
  padding: 7px 16px;
  border-radius: 36px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover {
  background: var(--color-accent);
  color: #fff;
}
header img {
  height: 48px;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  border-radius: 40px;
  font-size: 1.8em;
  margin-left: 16px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-primary);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(252, 253, 242, 0.97);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 28px 32px 24px 24px;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.56,.04,.17,1.15);
  box-shadow: 0 12px 44px rgba(33,104,105,0.13);
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2em;
  align-self: flex-end;
  margin-bottom: 24px;
  color: var(--color-primary);
  background: var(--color-grey);
  border-radius: 50%;
}
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  padding: 13px 18px;
  border-radius: 28px;
  background: none;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover {
  background: var(--color-accent);
  color: #fff;
}

/* HERO & CONTENT SECTIONS */
.hero {
  background: linear-gradient(92deg, #fceabb 0%, #f8b500 60%, #f5e2cc 100%);
  background: var(--color-secondary);
  padding: 60px 0 40px 0;
  margin-bottom: 42px;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  box-shadow: 0 8px 44px 0 rgba(241, 162, 83, 0.13);
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  color: var(--color-accent-dark);
}
.hero p {
  color: var(--color-primary);
  font-size: 1.18rem;
  margin-bottom: 6px;
}

/* FEATURE GRIDS */
.feature-grid, .recipe-highlights, .recipe-cards, .contact-reasons-grid, .seasonal-recipes-grid, .blog-post-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 30px;
}
.feature-grid > div, .recipe-highlights > div, .recipe-cards > div, .contact-reasons-grid > div, .seasonal-recipes-grid > div, .blog-post-cards > div {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 28px rgba(241, 163, 80, .08);
  padding: 28px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border: 1.5px solid #f8efdc;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border-color 0.19s, transform 0.12s;
}
.feature-grid > div:hover, .recipe-highlights > div:hover, .recipe-cards > div:hover, .seasonal-recipes-grid > div:hover, .blog-post-cards > div:hover, .contact-reasons-grid > div:hover {
  box-shadow: 0 10px 34px rgba(33,104,105,0.12);
  border-color: var(--color-accent);
  transform: translateY(-5px) scale(1.02);
}
.feature-grid img, .contact-reasons-grid img, .seasonal-recipes-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #fff8ed;
  padding: 4px;
  box-shadow: 0 2px 7px rgba(242, 141, 53, 0.08);
}

/* CATEGORY LISTS */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0 20px 0;
  list-style: none;
  justify-content: flex-start;
}
.category-list li {
  padding: 8px 18px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  box-shadow: 0 1px 5px rgba(33,104,105,.02);
  cursor: pointer;
  transition: background 0.18s;
}
.category-list li:hover {
  background: var(--color-accent-dark);
}

/* PAGINATION */
.pagination {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-start;
  margin: 12px 0 0 0;
}
.pagination span {
  padding: 7px 13px;
  border-radius: 13px;
  background: var(--color-grey);
  color: var(--color-accent-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* TESTIMONIAL CARDS */
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 5px 32px rgba(33,104,105,0.09);
  padding: 20px 24px;
  margin-bottom: 20px;
  border: 1.5px solid #eed28d;
  min-width: 270px;
  max-width: 370px;
  flex: 1 1 250px;
  transition: box-shadow 0.19s, border-color 0.19s, transform 0.12s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 39px rgba(241,162,83,0.16);
  border-color: var(--color-accent);
  transform: translateY(-4px) scale(1.012);
}
.testimonial-card p {
  color: #4f3b16;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: var(--color-accent-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 10px 0 20px 0;
}
.faq-accordion h3 {
  cursor: pointer;
  position: relative;
  padding-right: 10px;
  color: var(--color-primary);
}
.faq-accordion h3:after {
  content: '+';
  font-size: 1.2em;
  color: var(--color-accent-dark);
  margin-left: 6px;
}
.faq-accordion div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 11px rgba(241, 163, 80, .08);
  padding: 20px 21px 10px 21px;
  border: 1.5px solid #f4e4ba;
  transition: box-shadow 0.13s;
}
.faq-accordion div:hover {
  box-shadow: 0 8px 14px rgba(33,104,105,.08);
  border-color: var(--color-accent);
}

/* Inputs & Search */
input[type="text"], select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  border: 1.5px solid #DEC080;
  border-radius: 16px;
  padding: 12px 16px;
  background: #fff;
  margin: 10px 0 18px 0;
  transition: border-color 0.14s;
}
input[type="text"]:focus,
select:focus {
  border-color: var(--color-accent-dark);
  outline: none;
}

/* Filter & Collections */
.blog-filter, .tipps-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}

/* Spezial cards/layouts */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 15px;
  margin-bottom: 10px;
}
.quick-links a {
  background: var(--color-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 1px 7px rgba(33,104,105,0.04);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  transition: background 0.14s, color 0.16s;
}
.quick-links a:hover {
  background: var(--color-accent-dark);
  color: #FFD600;
}

/* TEXT SECTIONS */
.text-section {
  background: #fffbea;
  border-radius: 22px;
  box-shadow: 0 3px 12px 0 rgba(241, 163, 80, 0.08);
  padding: 28px 24px;
  margin-bottom: 24px;
}
.text-section ul, .text-section ol {
  margin-top: 9px;
  margin-bottom: 14px;
}

/* ADDRESS */
address {
  font-style: normal;
  font-size: 1rem;
  color: var(--color-text);
  margin: 6px 0 21px 0;
}

/* FOOTER */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 48px 0 30px 0;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-top: 80px;
  box-shadow: 0 -7px 42px rgba(33,104,105,0.10);
}
footer .container {
  flex-direction: column;
  gap: 26px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 13px;
}
.footer-nav a {
  color: var(--color-accent);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 13px;
  border-radius: 13px;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover {
  background: var(--color-accent);
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  font-size: 0.99rem;
  color: #faebd7;
  margin-bottom: 6px;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  margin-right: 5px;
  background: #fff8ed;
  border-radius: 50%;
  padding: 2.5px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  color: #fff5e6;
}
.footer-brand img {
  height: 36px;
  width: auto;
}

/* RESPONSIVE & FLEXBOX MEDIA QUERIES */
@media (max-width: 1050px) {
  .feature-grid > div, .recipe-highlights > div, .recipe-cards > div, .seasonal-recipes-grid > div {
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 420px;
  }
  .testimonial-card {
    max-width: 480px;
  }
}
@media (max-width: 900px) {
  .testimonial-row, .feature-grid, .contact-reasons-grid, .seasonal-recipes-grid,
  .recipe-highlights, .blog-post-cards, .recipe-cards {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  header .container { flex-direction: row; padding: 12px 9px; }
  header nav { display: none !important; }
  .btn-primary { padding: 0.67em 1.6em; font-size: 1em; }
  .mobile-menu-toggle {
    display: inline-flex;
    font-size: 1.8em;
  }
  .mobile-menu {
    padding: 24px 12px 24px 13px;
    min-width: 0;
    width: 100vw;
    max-width: unset;
  }
  header .btn-primary {
    display: none;
  }
  .footer-contact, .footer-brand, .footer-nav {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 460px) {
  h1, h2, h3 { text-align: left; }
  .testimonial-card, .feature-grid > div, .recipe-highlights > div, .recipe-cards > div, .blog-post-cards > div {
    padding: 12px 8px 14px 10px;
    font-size: 0.96rem;
  }
  .footer-brand img { height: 24px; }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbea;
  color: #5d4c30;
  box-shadow: 0 -4px 28px rgba(241, 163, 80, .13);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 22px 14px;
  border-top: 3px solid var(--color-accent);
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieSlideIn 0.56s cubic-bezier(.26,.92,.32,1.12);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner p {
  max-width: 400px;
  font-size: 0.98rem;
  margin-bottom: 0;
  color: #7a5e1a;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 11px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
  border-radius: 23px;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  box-shadow: 0 1px 7px rgba(33,104,105,0.04);
  transition: background 0.18s, color 0.18s;
}
.cookie-accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-accept:hover {
  background: var(--color-accent-dark);
}
.cookie-reject {
  background: #fff;
  color: var(--color-accent-dark);
  border: 1.5px solid var(--color-accent-dark);
}
.cookie-reject:hover {
  background: var(--color-accent-dark);
  color: #fff;
}
.cookie-settings {
  background: var(--color-grey);
  color: var(--color-primary);
  border: 1.5px solid var(--color-accent-dark);
}
.cookie-settings:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,104,105,0.13);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fffbea;
  border-radius: 25px;
  box-shadow: 0 8px 48px rgba(33,104,105,0.18);
  min-width: 330px;
  max-width: 430px;
  padding: 30px 30px 24px 30px;
  position: relative;
  color: var(--color-text);
  font-family: 'Roboto', Arial, sans-serif;
  animation: modalAppear 0.3s cubic-bezier(.34,1.8,.34,1);
}
@keyframes modalAppear {
  from {transform: scale(0.91) translateY(70px); opacity: 0;}
  to {transform: scale(1)   translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.cookie-modal .category {
  background: #fff;
  border-radius: 14px;
  padding: 10px 10px 10px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 13px;
  box-shadow: 0 1px 6px rgba(241, 163, 80, .07);
}
.cookie-modal .category label {
  font-size: 1.03rem;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal .category input[type=checkbox]{
  accent-color: var(--color-accent-dark);
  width: 19px; height: 19px;
  border-radius: 6px;
  margin-right: 3px;
}
.cookie-modal .category input[disabled] {
  opacity: 0.38;
}
.cookie-modal .modal-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 17px;
  font-size: 1.4rem;
  background: var(--color-grey);
  border-radius: 50%;
  padding: 6px 10px;
}
.cookie-modal .close-modal:hover {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-modal { padding: 16px 6vw 13px 7vw; min-width: 0; width: 92vw; }
  .cookie-modal h2 { font-size: 1.08rem; }
}

/* Hide cookie banner/modal for print */
@media print {
  .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
}

/* SCROLLBAR FOR CONSISTENCY */
::-webkit-scrollbar {
  width: 10px;
  background: #fcfdf2;
}
::-webkit-scrollbar-thumb {
  background: #edd9c1;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f28d35;
}

/* GLOBAL CARD CONTAINER STYLES as per MANDATORY requirements */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(33,104,105,.11);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ADDITIONAL SPACING UTILITIES */
.mb-20 { margin-bottom: 20px!important; }
.mb-40 { margin-bottom: 40px!important; }

/* SMOOTH TRANSITION & HOVER MICRO-INTERACTIONS */
a, .btn-primary, button, .feature-grid > div, .recipe-highlights > div,
.recipe-cards > div, .testimonial-card, .mobile-nav a, .footer-nav a {
  transition: background 0.18s, color 0.17s, box-shadow 0.16s, border 0.17s, transform 0.11s;
}

/* REMOVE tap HIGHLIGHT on mobile for a more native feel */
*:focus {
  outline: 2px solid var(--color-accent-dark);
  outline-offset: 1px;
}
::-webkit-input-placeholder { color: #b9ae92; }
::-moz-placeholder { color: #b9ae92; }
:-ms-input-placeholder { color: #b9ae92; }
::placeholder { color: #b9ae92; }

/* ACCESSIBILITY: FOCUS RING FOR KEYBOARD USERS */
:focus-visible {
  outline: 2.5px solid var(--color-primary);
  outline-offset: 2px;
}

/* Hide visually but still accessible for screenreaders */
.sr-only {
  position: absolute!important;
  width: 1px!important; height: 1px!important;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
