/* RESET & BASE ------------------------------------------------------ */
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;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #FFF4E3;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  background: #FFF4E3;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: #387E6B;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #f86e4d;
  outline: none;
}
strong, b {
  font-weight: bold;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

/* TYPOGRAPHY ------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: #387E6B;
  font-weight: 700;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #F86E4D;
}
h4 {
  font-size: 1.05rem;
}
p, li {
  font-size: 1rem;
  color: #333;
}
p {
  margin-bottom: 20px;
}
.text-section p, .text-section ul {
  font-size: 1.05rem;
}
.text-section ul li {
  margin-bottom: 10px;
}
/* Fun, playful font for highlights */
.fun {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #f86e4d;
}

/* LAYOUT & FLEXBOX ------------------------------------------------------ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 20px;
  position: relative;
  padding: 24px;
  box-shadow: 0 6px 18px 0 rgba(56,126,107,0.10), 0 1px 2px 0 rgba(0,0,0,0.03);
  transition: transform 0.18s, box-shadow 0.24s;
}
.card:hover {
  transform: translateY(-7px) scale(1.03) rotate(-1deg);
  box-shadow: 0 10px 24px 0 rgba(56,126,107,0.14), 0 2px 8px 0 rgba(0,0,0,0.06);
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(250,214,132,0.12), 0 1px 4px 0 rgba(56,126,107,0.07);
  border: 2px solid #FAD684;
  position: relative;
  z-index: 1;
  color: #242424;
}
.testimonial-card p {
  color: #222;
  font-size: 1.09rem;
  font-style: italic;
}
.testimonial-card span {
  color: #387E6B;
  font-size: 0.96rem;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPECIFIC COMPONENTS ------------------------------------------------------ */
.logo {
  display: block;
  height: 48px;
  margin-right: 20px;
  margin-top: 2px;
}
.logo img {
  height: 48px;
  width: auto;
}
.header,
footer {
  width: 100%;
  background: #FFF4E3;
}
header {
  border-bottom: 2px solid #FAD684;
  box-shadow: 0 2px 24px 0 rgba(250,214,132,0.10);
  padding-top: 9px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 16px 18px 16px;
}
footer .footer-logo {
  flex: 1 0 120px;
}
.footer-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0.85);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #387E6B;
  font-weight: 600;
  transition: color 0.2s;
  font-size: 1rem;
}
.footer-nav a:hover {
  color: #f86e4d;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #333;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.footer-copy {
  text-align: center;
  padding: 16px 0;
  background: #FAD684;
  font-size: 0.95rem;
  color: #222;
  letter-spacing: 0.02em;
}

/* NAVIGATION ------------------------------------------------------ */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-left: 22px;
  margin-right: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  color: #387E6B;
  padding: 8px 0;
  border-radius: 10px;
  transition: color 0.16s, background 0.17s;
  position: relative;
}
.main-nav a:hover {
  background: #FAD684;
  color: #f86e4d;
}

.mobile-menu-toggle {
  display: none;
  background: #FAD684;
  color: #387E6B;
  font-size: 2.1rem;
  border: none;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  margin-left: 24px;
  margin-right: 2px;
  transition: background 0.25s, color 0.23s;
  z-index: 1002;
  box-shadow: 0 2px 12px rgba(250,214,132,0.17);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #f86e4d;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF4E3;
  z-index: 1030;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(.66,.14,.31,1.18);
  box-shadow: 6px 0 44px 0 rgba(56,126,107,0.11);
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  background: #FAD684;
  border: none;
  font-size: 2.4rem;
  color: #387E6B;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  box-shadow: 0 2px 10px rgba(250,214,132,0.19);
  margin: 22px 22px 0 0;
  cursor: pointer;
  transition: background .22s, color 0.17s;
  z-index: 1041;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #f86e4d;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 42px 0 0 42px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-weight: 700;
  color: #387E6B;
  padding: 14px 4px;
  border-radius: 10px;
  text-align: left;
  transition: background 0.13s, color 0.14s;
}
.mobile-nav a:active,
.mobile-nav a:hover {
  background: #FAD684;
  color: #f86e4d;
}

/* BUTTONS & CTAs ------------------------------------------------------ */
.btn,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 13px 34px;
  border-radius: 23px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.18s, color 0.15s, box-shadow 0.20s, transform 0.14s;
  box-shadow: 0 3px 12px 0 rgba(56,126,107,0.08);
  background: #FAD684;
  color: #387E6B;
  text-shadow: none;
  outline: none;
  position: relative;
  z-index: 1;
}
.btn-primary {
  background: #387E6B;
  color: #fff;
}
.btn:hover, .btn:focus {
  background: #f86e4d;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px 0 rgba(56,126,107,0.18);
}
.btn-primary:hover, .btn-primary:focus {
  background: #f86e4d;
  color: #fff;
}

/* LISTS WITH ICONS ------------------------------------------------------ */
ul li {
  padding-left: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
ul li img {
  width: 26px;
  height: 26px;
  margin-right: 8px;
  flex-shrink: 0;
}

/* SERVICE LIST */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  width: 100%;
  justify-content: flex-start;
}
.service-list > div {
  background: #fff;
  border-radius: 22px;
  padding: 24px 24px 36px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 280px;
  margin-bottom: 0;
  box-shadow: 0 5px 18px 0 rgba(56,126,107,0.07), 0 1.5px 4px 0 rgba(250,214,132,0.08);
  transition: transform 0.15s, box-shadow 0.19s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.service-list > div:hover {
  transform: scale(1.03) rotate(1deg) translateY(-3px);
  box-shadow: 0 12px 34px 0 rgba(250,214,132,0.13), 0 3px 20px 0 rgba(56,126,107,0.14);
}
.service-list .btn {
  margin-top: auto;
}

/* RECIPE CARD */
.recipe-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 26px 20px 26px;
  box-shadow: 0 5px 18px rgba(250,214,132,0.09), 0 1.5px 3px rgba(56,126,107,0.07);
  margin-bottom: 20px;
  flex: 1 1 220px;
  max-width: 340px;
  min-width: 180px;
  transition: box-shadow 0.21s, transform .16s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.recipe-card:hover {
  transform: translateY(-4px) scale(1.02) rotate(-0.5deg);
  box-shadow: 0 11px 32px rgba(250,214,132,0.13), 0 2.5px 10px rgba(56,126,107,0.11);
}
.recipe-card h3 {
  color: #f86e4d;
  font-size: 1.16rem;
}

/* QUICK TAGS */
.quick-tags {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.02rem;
}
.quick-tags span {
  color: #fff;
  background: #387E6B;
  border-radius: 13px;
  padding: 2px 15px 3px 13px;
  margin-right: 2px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.13s;
}
.quick-tags span:hover {
  background: #f86e4d;
  color: #FFF4E3;
}

/* RECIPE FILTERS */
.recipe-filters {
  margin: 12px 0 15px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.recipe-filters ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.recipe-filters li {
  background: #FAD684;
  color: #387E6B;
  border-radius: 13px;
  padding: 2px 13px 3px 11px;
  font-weight: 700;
  transition: background 0.15s, color 0.17s;
}
.recipe-filters li:first-child {
  background: none;
  color: #222;
  font-weight: 900;
  padding: 0;
}
.recipe-filters li:hover {
  background: #f86e4d;
  color: #fff;
}

/* FORM (Contact, Newsletter etc.) */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border-radius: 11px;
  border: 1px solid #FAD684;
  padding: 11px 14px;
  background: #FFF4E3;
  margin-bottom: 16px;
  transition: border-color 0.19s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #387E6B;
  box-shadow: 0 2px 12px #FAD68444;
}

/* NEWSLETTER/CTA-SECTION */
section .btn,
section .btn-primary {
  margin-top: 10px;
}

/* MODALS & OVERLAYS ------------------------------------------------------ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,34,34,0.34);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: #fff;
  border-radius: 20px;
  padding: 34px 28px 28px 28px;
  max-width: 420px;
  width: 94vw;
  box-shadow: 0 6px 38px rgba(250,214,132,0.23), 0 1.5px 7px rgba(56,126,107,0.07);
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 10001;
  animation: bounceIn 0.36s cubic-bezier(.7,1.89,.39,.6);
}
@keyframes bounceIn {
  0% {transform: scale(0.9) translateY(60px); opacity: 0;}
  75% {transform: scale(1.06) translateY(-15px); opacity: 1;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}

/* COOKIE CONSENT BANNER ------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  background: #FFF4E3;
  border-top: 2px solid #FAD684;
  box-shadow: 0 -1.5px 14px rgba(56,126,107,0.09);
  padding: 18px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 1rem;
  color: #222;
  animation: slideUp 0.36s cubic-bezier(.22,.69,.46,1.19);
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-cta {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-banner .btn,
.cookie-banner .btn-primary {
  font-size: 0.97rem;
  padding: 9px 16px;
  border-radius: 13px;
  margin-top: 0;
}
.cookie-banner .btn-settings {
  background: none;
  color: #387E6B;
  border: 1.3px solid #387E6B;
  margin-left: 2px;
  font-weight: 700;
  transition: background 0.11s, color 0.11s;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #fad684;
  color: #fff;
}
.cookie-banner .btn-reject {
  background: #f86e4d;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  padding: 32px 24px 22px 24px;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 9px 42px rgba(56,126,107,0.18), 0 3px 18px rgba(250,214,132,0.13);
  max-width: 410px;
  width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal h2 {
  color: #387E6B;
  font-size: 1.23rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #387E6B;
  margin-right: 7px;
}
.cookie-category label {
  font-size: 1.08rem;
  color: #222;
  font-weight: 600;
}
.cookie-category .always-on {
  color: #387E6B;
  background: #FAD684;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 9px;
  margin-left: 9px;
  letter-spacing: .01em;
}
.cookie-modal .btn,
.cookie-modal .btn-primary {
  width: 100%;
  font-size: 1.03rem;
  border-radius: 13px;
  margin-top: 16px;
}
.cookie-modal .btn-reject {
  background: #f86e4d;
  color: #fff;
}

/* ANIMATIONS & MICRO-INTERACTIONS ------------------------------------------------------ */
.card, .service-list > div, .recipe-card, .testimonial-card {
  transition: transform 0.16s, box-shadow 0.19s;
}
.card:hover, .recipe-card:hover, .service-list > div:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.02) rotate(-0.9deg);
  box-shadow: 0 10px 28px 0 rgba(56,126,107,0.14), 0 2px 8px 0 rgba(250,214,132,0.12);
}
.testimonial-card:before {
  content: '\201C';
  position: absolute;
  top: -28px;
  left: 18px;
  font-size: 3.1rem;
  color: #FAD684;
  opacity: .55;
  z-index: 0;
}

/* DECORATIONS - PLAYFUL DOTS ---------------------------------------------- */
section {
  position: relative;
}
section:after {
  content: '';
  display: block;
  position: absolute;
  right: 24px;
  top: 44px;
  width: 46px;
  height: 46px;
  background: #f86e4d;
  opacity: 0.12;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: float-bubble 3.6s infinite alternate;
}
@keyframes float-bubble {
  from { transform: translateY(0) scale(1) rotate(-4deg); }
  to   { transform: translateY(-12px) scale(1.11) rotate(7deg); }
}

/* UTILITIES & ETC ------------------------------------------------------ */
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-40 { margin-top: 40px !important; }
.text-center { text-align: center !important; }

/* RESPONSIVE DESIGN (Mobile-First) -------------------------------------- */
@media (max-width: 1120px) {
  .container { max-width: 98vw; }
  .service-list > div { min-width: 180px; }
}
@media (max-width: 980px) {
  .main-nav {
    gap: 8px;
    font-size: 0.98rem;
  }
  .service-list > div {
    min-width: 120px;
    max-width: 250px;
    padding-left: 13px;
    padding-right: 13px;
  }
  .recipe-card {
    min-width: 130px;
    max-width: 248px;
  }
  .footer-nav { font-size: 0.96rem; }
}
@media (max-width: 900px) {
  .footer-contact {
    flex-basis: 100%;
    order: 3;
  }
  .footer-logo,
  .footer-nav {
    order: 1;
    flex-basis: 50%;
  }
  .footer-logo,
  .footer-nav,
  .footer-contact {
    margin-bottom: 18px;
  }
  .footer-logo img { height: 36px; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header .container,
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .service-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .service-list > div, .card-container > .card, .recipe-card {
    min-width: 0;
    max-width: 100vw;
    width: 100%;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 30px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    padding: 13px 13px;
    min-width: 0;
    font-size: 0.99rem;
  }
  .sample-recipes ul {
    gap: 8px;
  }
  .mobile-menu, .modal-overlay {
    padding: 0;
  }
}
/* Extra mobile for home hero gap fix */
@media (max-width: 520px) {
  h1 {
    font-size: 1.47rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  .content-wrapper {
    gap: 8px;
  }
  .btn, .btn-primary {
    padding: 10px 18px;
    font-size: 0.97rem;
  }
}

/* SCROLLBAR ------------------------------------------------------ */
::-webkit-scrollbar { width: 10px; background: #FFF4E3; }
::-webkit-scrollbar-thumb { background: #FAD684; border-radius: 7px; }
body { scrollbar-color: #FAD684 #FFF4E3; scrollbar-width: thin; }

/* PRINT ------------------------------------------------------ */
@media print {
  .btn, .mobile-menu-toggle, .footer-copy, .cookie-banner, .modal-overlay { display: none !important; }
}
