/* ==== CSS RESET & NORMALIZATION ==== */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.5;
}
body {
  background: #F9F6EF;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #26734D;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #1e5d3c;
}
ul, ol {
  padding-left: 1.2em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #26734D;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h1 {font-size: 2.5rem; margin-bottom: 18px;}
h2 {font-size: 2rem; margin-bottom: 16px;}
h3 {font-size: 1.28rem; margin-bottom: 12px;}
h4, h5, h6 {font-size: 1rem; margin-bottom: 8px; color: #2C2C2C;}
p, li, dd {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #2C2C2C;
}
strong, b { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* ==== GRADIENT MODERN BACKGROUNDs ==== */
body {
  background: linear-gradient(109deg, #F9F6EF 0%, #f6fcf8 100%);
}
section.hero {
  background: linear-gradient(90deg, #F9F6EF 60%, #b9ead9 120%);
  border-radius: 30px;
  margin-bottom: 40px;
  padding: 48px 0 48px 0;
}
section.features, section.values, section.articles, section.tips, section.filter-search, section.team, section.about, .recipes-list, section.faq, section.contact, section.contact-form, section.policy, section.confirmation {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(38,115,77,0.08);
}
section.newsletter {
  background: linear-gradient(87deg, #f2f5fc 0%, #d4fbec 70%, #F9F6EF 100%);
  border-radius: 22px;
  margin-bottom: 35px;
  box-shadow: 0 4px 24px rgba(38,115,77,0.05);
}
section.footer {
  background: linear-gradient(109deg, #26734D 60%, #3bb285 100%);
  color: #fff;
  border-radius: 0;
}

/* ==== HEADER & NAV ==== */
header {
  background: #fff;
  box-shadow: 0 2px 14px rgba(38,115,77,0.06);
  padding: 0;
  transition: box-shadow 0.2s;
  z-index: 1021;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
}
header a img {
  height: 48px;
  width: auto;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #26734D;
  padding: 8px 0 8px 0;
  position: relative;
  transition: color .18s;
}
.main-nav a.cta-btn {
  background: linear-gradient(90deg, #26734D 20%, #3bb285 100%);
  color: #fff!important;
  border-radius: 32px;
  padding: 10px 28px;
  margin-left: 16px;
  box-shadow: 0 2px 12px rgba(38,115,77,0.08);
  font-size: 1rem;
  transition: background 0.18s, transform 0.18s;
  border: none;
  outline: none;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: linear-gradient(90deg, #26734D 0%, #256143 100%);
  transform: translateY(-2px) scale(1.04);
}
.main-nav a:hover, .main-nav a:focus {
  color: #1e5d3c;
}

.mobile-menu-toggle {
  display: none;
  background: linear-gradient(70deg, #26734D 40%, #3bb285 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, box-shadow 0.12s;
  box-shadow: 0 2px 12px rgba(38,115,77,.10);
  outline: none;
  z-index: 1111;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  outline: 2px solid #26734D;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #ffffffee;
  box-shadow: 0 6px 36px rgba(38,115,77,.19);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.34s cubic-bezier(.6,.2,.4,1);
  z-index: 1200;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.34s cubic-bezier(.6,.2,.4,1);
}
.mobile-menu-close {
  margin-top: 30px;
  margin-left: 30px;
  background: transparent;
  border: none;
  font-size: 2.3rem;
  color: #26734D;
  cursor: pointer;
  padding: 6px 12px;
  align-self: flex-end;
  outline: none;
}
.mobile-menu-close:focus {
  outline: 2px solid #26734D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 38px;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
  padding-left: 30px;
  padding-right: 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #26734D;
  padding: 16px 0 12px 0;
  transition: color 0.15s, background 0.12s;
  border-radius: 8px;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #eaf9f2;
  color: #1e5d3c;
}

@media (max-width: 1024px) {
  header .container {
    gap: 16px;
  }
  .main-nav a {
    font-size: 0.97rem;
    margin-left: 0;
  }
}
@media (max-width:768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  header a img {
    max-width: 39vw;
    height: 40px;
    margin-right: 0px;
  }
}
@media (min-width:769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==== SECTION SPACING & FLEX LAYOUTS ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(38,115,77,0.06);
  padding: 24px 20px;
  min-width: 240px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f7fbf9;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(38,115,77,0.06);
  position: relative;
  max-width: 650px;
  color: #2C2C2C;
}
.testimonial-card blockquote {
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  font-weight: 500;
  font-size: 1.18rem;
  margin-bottom: 0;
  line-height: 1.45;
}
.testimonial-user {
  font-size: 1rem;
  color: #26734D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-left: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fafff6;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(38,115,77,0.05);
  padding: 24px 22px;
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 260px;
  margin-bottom: 20px;
  transition: box-shadow .18s, background .15s, transform .16s;
}
.feature-item img {width: 42px; height: 42px;}
.feature-item h3 {color:#26734D; font-weight: 700; font-size: 1.17rem; margin-bottom:6px;}
.feature-item p {color: #414e3a; font-size: 1rem; margin-bottom: 0;}
.feature-item:hover {box-shadow: 0 6px 32px rgba(38,115,77,.12); background: #eaf9f2; transform: translateY(-2px) scale(1.025);}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 18px;
}
/* Responsive Flex Adjustments */
@media (max-width: 1100px) {
  .feature-grid {justify-content: center;}
}
@media (max-width: 900px) {
  .feature-grid {gap: 16px;}
  .feature-item {min-width: 160px; max-width: 210px; padding: 18px 14px;}
}
@media (max-width:768px) {
  .section {margin-bottom:40px; padding:28px 8px;}
  .card-container, .content-grid, .feature-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-item {max-width: 100%; min-width: 120px;}
  .testimonial-card {max-width: 100%; padding: 19px 10px;}
  .text-image-section {flex-direction: column; gap: 18px;}
}

.text-section {width: 100%; margin-top: 0px;}
.text-section ul, .text-section ol {margin-top: 0; margin-bottom: 16px;}
.text-section li {margin-bottom: 8px;}
.text-section p, .text-section ul, .text-section h3 {color: #2C2C2C;}
.text-section h3 {margin-top: 16px;}

/* ==== PAGINATION ==== */
.pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
.pagination a, .pagination span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #26734D;
  font-weight: 600;
  background: #eaf9f2;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 1rem;
  transition: background 0.17s, color 0.16s;
}
.pagination a.active, .pagination a:hover, .pagination a:focus {
  background: linear-gradient(90deg, #26734D 70%, #3bb285 100%);
  color: #fff;
}
.pagination span {background:transparent; color:#93ac9e; padding:8px;}

/* ==== CTA BUTTONS ==== */
.cta-btn, button.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  background: linear-gradient(90deg, #26734D 60%, #3bb285 100%);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 12px 34px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(38,115,77,.09);
  transition: background 0.17s, box-shadow 0.13s, transform 0.16s;
  text-align: center;
  margin-top: 12px;
  margin-bottom:12px;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus, button.cta-btn:hover, button.cta-btn:focus {
  background: linear-gradient(90deg, #2c915a 60%, #26734D 100%);
  box-shadow: 0 8px 24px rgba(38,115,77,.15);
  color: #fff;
  transform: translateY(-1.5px) scale(1.03);
}

/* ==== INPUT FIELDS & FORMS ==== */
input[type="text"], select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid #d9ead3;
  outline: none;
  background: #f9fffa;
  transition: border 0.18s, box-shadow 0.15s;
  margin-bottom: 12px;
  width: 100%;
  max-width: 320px;
  color: #26734D;
  margin-right: 10px;
}
input[type="text"]:focus, select:focus {
  border: 1.5px solid #26734D;
  box-shadow: 0 1px 6px #eaf9f2;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 4px;
  display: block;
}

/* ==== FOOTER ==== */
.footer {
  margin-top: 44px;
  padding-top: 32px;
  padding-bottom: 34px;
}
.footer .container {
  display: flex;
  flex-direction: column;
}
.footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.92;
  font-weight: 500;
  transition: opacity 0.16s, color 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  opacity: 1;
  color: #ffc983;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.social-links a img {
  width: 30px; height: 30px;
  filter: saturate(1.2) brightness(1.05);
  opacity: 0.98;
  transition: opacity 0.15s, filter 0.13s;
}
.social-links a:hover img {
  filter: saturate(1.7) brightness(1.18);
  opacity: 1;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.contact-info span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
  color: #fff;
}
.contact-info img {
  width: 18px; height: 18px;
  filter: brightness(2) hue-rotate(-10deg);
}
@media (max-width: 900px) {
  .footer .content-wrapper {
    gap: 16px;
  }
  .footer-menu {
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .footer {padding: 20px 0;}
  .footer .content-wrapper, .footer-menu {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-menu a {
    font-size: 0.97rem;
  }
  .social-links {gap: 11px;}
  .contact-info {
    flex-direction: column;
    gap: 8px;
  }
}

/* ==== PRIVACY NOTE IN NEWSLETTER ==== */
.privacy-note {
  font-size: 0.97rem;
  color: #738d7b;
  margin-top: 6px;
  margin-bottom: 0;
}

/* ==== POLICY & CONFIRMATION SECTIONS ==== */
section.policy, section.confirmation {
  margin-bottom: 60px;
  padding: 46px 16px 38px 16px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 18px rgba(38,115,77,0.08);
}
.policy h1, .confirmation h1 {color:#26734D;}
.policy h2 {font-size: 1.32rem; color:#26734D;}

/* ==== COOKIE CONSENT BANNER & MODAL ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left:0; right:0;
  width: 100vw;
  z-index: 1500;
  background: linear-gradient(90deg,#F9F6EF 60%, #b9ead9 120%);
  box-shadow: 0 -3px 32px rgba(38,115,77,.21);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 22px 28px 20px 28px;
  gap: 26px;
  justify-content: flex-start;
  transition: transform 0.34s, opacity 0.23s;
}
.cookie-banner.hidden {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #2C2C2C;
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 480px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 28px;
  padding: 10px 24px;
  border: none;
  outline: none;
  cursor: pointer;
  margin-right: 6px;
  min-width: 120px;
  transition: background 0.16s, color 0.13s, box-shadow 0.16s;
  box-shadow: 0 2px 8px rgba(38,115,77,0.09);
}
.cookie-btn.accept {
  background: linear-gradient(90deg,#26734D 60%,#3bb285 100%);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: linear-gradient(90deg,#256143 55%,#26734D 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(38,115,77,0.14);
}
.cookie-btn.reject {
  background: #fff;
  color: #26734D;
  border: 1.5px solid #26734D;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #d6f5e6;
  color: #145d32;
}
.cookie-btn.settings {
  background: #F9F6EF;
  color: #2C2C2C;
  border: 1.5px solid #b0c7bc;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #eaf9f2;
  color: #26734D;
  border-color: #26734D;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 16px 8px 10px 8px;
    align-items: flex-start;
  }
  .cookie-banner p {max-width: 98vw;}
  .cookie-banner .cookie-actions {gap: 8px;}
}
/* ==== COOKIE MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(38,115,77,.16);
  transform: translate(-50%, -50%) scale(1);
  z-index: 1600;
  min-width: 320px;
  width: 94vw;
  max-width: 400px;
  padding: 36px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 1;
  transition: opacity 0.2s, visibility 0.2s;
}
.cookie-modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal h3 {
  color: #26734D;
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2C2C2C;
  margin-bottom: 0;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #26734D;
  width: 19px;
  height: 19px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
}
.cookie-modal .cookie-btn {width: 100%; font-size: 1rem;}
.cookie-modal .essential[disabled] {opacity:0.6; color:#9dbca8; pointer-events:none;}

@media (max-width: 599px){
  .cookie-modal{min-width:180px; max-width:98vw;}
  .cookie-modal .modal-actions{flex-direction: column; gap:8px;}
}

/* ==== ANIMATIONS ==== */
.cta-btn, .card, .feature-item, .testimonial-card, .cookie-btn, .mobile-menu, .mobile-menu-toggle {
  transition: background 0.2s, color 0.18s, box-shadow 0.15s, transform 0.18s, opacity 0.16s;
}

/* ==== MISC/UTILITY OVERRIDES ==== */
hr {
  border: none;
  height: 1px;
  background: #b9ead9;
  margin: 36px 0 28px 0;
}
blockquote {
  margin-left: 0; margin-right: 0;
  border-left: 4px solid #26734D;
  padding-left: 18px;
}
dl {margin-bottom: 12px;}
dt {font-weight: bold; color:#26734D; margin-top:10px; margin-bottom:2px;}
dd {margin-left: 18px; margin-bottom: 7px;}

/* ==== ACCESSIBILITY HIDDEN ==== */
.visually-hidden {
  position: absolute!important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0; margin: -1px; padding: 0;
}

/* ==== END ==== */
