/* CSS RESET & NORMALIZE */
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,
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 {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FBF9F6;
  color: #274B57;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  background-color: #FCFAF7;
}

/* SOFT PASTEL PALETTE */
:root {
  --brand-primary: #174655;
  --brand-secondary: #EAD2B7;
  --brand-accent: #C94F1F;
  --brand-bg1: #FBF9F6;
  --brand-bg2: #F6EEE0;
  --brand-pastel-blue: #BCD8F6;
  --brand-pastel-green: #CDEACC;
  --brand-pastel-yellow: #FFF4C9;
  --brand-pastel-pink: #FDDDE6;
  --brand-white: #FFFFFF;
  --brand-grey: #F5F2EF;
  --brand-shadow: 0 2px 12px rgba(31, 55, 70, 0.08);
  --brand-radius: 18px;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.015em;
  margin-bottom: 20px;
  line-height: 1.09;
}
h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 18px;
  line-height: 1.15;
}
h3, .h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 10px;
  line-height: 1.17;
}
h4, .h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #274B57;
  margin-bottom: 14px;
}

.subheadline {
  font-size: 1.18rem;
  color: #37667b;
  margin-bottom: 22px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 640px;
}

ul, ol {
  padding-left: 28px;
  margin-bottom: 18px;
}

strong {
  font-weight: 700;
  color: var(--brand-accent);
}

a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #174655;
  text-decoration: underline;
  outline: none;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-pastel-blue);
  border-radius: var(--brand-radius);
  box-shadow: var(--brand-shadow);
  padding: 24px 24px 18px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 4px 20px rgba(31, 55, 70, 0.15);
  transform: translateY(-3px) scale(1.02);
}

.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: 20px;
  padding: 20px 24px 20px 24px;
  margin-bottom: 20px;
  background: var(--brand-pastel-yellow);
  color: #274B57;
  border-radius: 18px;
  box-shadow: var(--brand-shadow);
  min-width: 240px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(31, 55, 70, 0.19);
  transform: translateY(-3px) scale(1.017);
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #344d61;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, var(--brand-pastel-pink) 0%, var(--brand-pastel-yellow) 100%);
  padding: 54px 0 56px 0;
  margin-bottom: 54px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 21px;
  padding-top: 8px;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.3rem;
  font-weight: 700;
}

/* FEATURES SECTION */
.features {
  background: var(--brand-pastel-green);
  border-radius: 18px;
  box-shadow: var(--brand-shadow);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  justify-content: flex-start;
  align-items: flex-start;
}
.feature-icon {
  flex: 0 0 60px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 4px;
}
.feature-description {
  flex: 1 1 220px;
  min-width: 180px;
  margin-right: 16px;
  margin-bottom: 18px;
}

.feature-list li,
.value-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1.06rem;
  line-height: 1.5;
  gap: 11px;
}
.feature-list img {
  margin-right: 7px;
}

.category-list li {
  margin-bottom: 13px;
  font-size: 1.08rem;
  color: #365c69;
  padding-left: 8px;
}

/* RECIPE CARDS */
.recipe-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.recipe-card {
  background: var(--brand-white);
  border-radius: 15px;
  box-shadow: var(--brand-shadow);
  padding: 23px 20px 18px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.recipe-card:hover,
.recipe-card:focus {
  box-shadow: 0 6px 24px rgba(31, 55, 70, 0.16);
  transform: translateY(-4px) scale(1.025);
}

/* ABOUT/VALUES/TEAM */
.team-bios li {
  background: var(--brand-pastel-blue);
  border-radius: 15px;
  box-shadow: var(--brand-shadow);
  margin-bottom: 18px;
  padding: 18px 21px 16px 21px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.value-list {
  margin-bottom: 12px;
  list-style: disc inside;
}

/* PRO-TIP/SPECIAL BOXES */
.pro-tip-box, .info-box {
  background: var(--brand-pastel-green);
  color: #197659;
  padding: 16px 21px 14px 18px;
  border-radius: 12px;
  box-shadow: var(--brand-shadow);
  font-size: 1.01rem;
  margin: 12px 0;
  letter-spacing: 0.01em;
}

/* PAGINATION */
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  margin-bottom: 6px;
  font-size: 1.08rem;
  color: #888;
}
.pagination button {
  padding: 8px 17px;
  border-radius: 8px;
  border: none;
  background: var(--brand-pastel-blue);
  color: #32576E;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.19s, box-shadow 0.17s;
  opacity: 0.95;
}
.pagination button:disabled {
  background: #ebeaee;
  color: #b4b1b2;
  cursor: not-allowed;
}

/* SEARCH BAR */
.search-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 10px;
  align-items: center;
}
.search-bar input[type='text'] {
  border: none;
  background: var(--brand-pastel-yellow);
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 1rem;
  min-width: 180px;
  color: #355961;
  outline: none;
  box-shadow: 0 1.5px 6px rgba(31, 55, 70, 0.07);
}
.search-bar input[disabled] {
  background: #f5eee4;
  color: #bbc2c3;
}
.search-bar .cta-button[disabled] {
  background: #ebeaee;
  color: #b4b1b2;
  cursor: not-allowed;
  opacity: 0.69;
}

/* CTA BUTTONS */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  background: var(--brand-accent);
  color: var(--brand-white);
  padding: 13px 30px;
  border-radius: 99px;
  box-shadow: 0 2px 8px rgba(201, 79, 31, 0.12);
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  cursor: pointer;
  margin-top: 6px;
  outline: none;
  margin-bottom: 1px;
  letter-spacing: 0.04em;
}
.cta-button:hover, .cta-button:focus {
  background: #AD4021;
  color: #fff;
  box-shadow: 0 6px 16px rgba(201, 79, 31, 0.19);
  transform: translateY(-2px) scale(1.04);
}


/* MAIN NAVIGATION */
header {
  background: var(--brand-white);
  box-shadow: 0 2px 12px rgba(31, 55, 70, 0.07);
  padding: 0;
  position: relative;
  z-index: 22;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 18px 22px 18px;
}
header img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--brand-primary);
  font-size: 1.01rem;
  font-weight: 500;
  padding: 6px 7px;
  border-radius: 8px;
  transition: background 0.15s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-pastel-pink);
  color: var(--brand-accent);
  outline: none;
}

.header .cta-button {
  margin-left: 13px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: var(--brand-primary);
  cursor: pointer;
  padding: 8px 12px;
  margin-right: 2px;
  transition: color 0.18s;
  z-index: 302;
}
.mobile-menu-toggle:focus {
  color: var(--brand-accent);
  outline: none;
}

/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(110deg, var(--brand-pastel-pink) 0%, var(--brand-pastel-blue) 100%);
  box-shadow: 0 6px 44px rgba(24,32,44,0.19);
  z-index: 301;
  padding: 38px 22px 22px 22px;
  transform: translateX(-101vw);
  transition: transform 0.36s cubic-bezier(.72,.02,.3,1.13);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--brand-primary);
  cursor: pointer;
  margin-bottom: 18px;
  margin-top: -8px;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 8px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: var(--brand-primary);
  font-weight: 600;
  padding: 11px 5px;
  border-radius: 8px;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e6f4fd;
  color: var(--brand-accent);
  outline: none;
}


/* FOOTER */
footer {
  background: var(--brand-pastel-blue);
  margin-top: 60px;
  padding: 36px 0 22px 0;
  box-shadow: 0 -2px 14px rgba(31, 55, 70, 0.08);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 10px;
}
.footer-contact p, .footer-menu a {
  font-size: 1rem;
  color: #274B57;
  margin-bottom: 8px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-menu a {
  color: #5B6582;
  text-decoration: none;
  transition: color 0.17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--brand-accent);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.footer-social a img {
  width: 27px;
  height: 27px;
  transition: filter 0.16s, transform 0.17s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(0.75) contrast(1.18);
  transform: scale(1.09);
}
.newsletter-signup {
  background: var(--brand-pastel-yellow);
  border-radius: 13px;
  padding: 14px 21px 18px 18px;
  box-shadow: var(--brand-shadow);
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 5px;
}
.newsletter-signup h3 {
  margin-bottom: 11px;
  color: var(--brand-primary);
  font-size: 1.18rem;
  font-family: 'Playfair Display', serif;
}
.newsletter-signup p {
  margin-bottom: 10px;
}
.newsletter-signup .cta-button {
  margin-bottom: 0;
  margin-top: 3px;
  padding: 10px 25px;
  font-size: 0.98rem;
}

/* CTA SECTION */
.cta {
  background: var(--brand-pastel-pink);
  border-radius: 16px;
  box-shadow: var(--brand-shadow);
  text-align: center;
}
.cta .content-wrapper {
  align-items: center;
  gap: 19px;
}
.cta h2 {
  margin-bottom: 8px;
  color: var(--brand-primary);
}
.cta p {
  color: #365c69;
}

/* INFO SECTIONS (about, legal, thankyou, contact) */
.about, .legal, .thankyou, .contact, .knowledge, .values {
  background: var(--brand-pastel-blue);
  border-radius: var(--brand-radius);
  box-shadow: var(--brand-shadow);
}

.info-box {
  background: var(--brand-pastel-pink);
  color: #864145;
}

/* ARTICLE LISTS, FILTERS */
.article-list, .filter-list {
  margin-bottom: 10px;
  list-style: none;
  padding: 0;
}
.article-list li, .filter-list li {
  background: var(--brand-white);
  border-radius: 10px;
  box-shadow: var(--brand-shadow);
  padding: 15px 17px 14px 19px;
  margin-bottom: 13px;
  font-size: 1.05rem;
  color: #28434e;
  display: flex;
  flex-direction: column;
  gap: 1.5px;
}
.filter-list img {
  margin-right: 8px;
  width: 50px;
  vertical-align: middle;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--brand-pastel-yellow);
  color: #252525;
  border-top: 1.5px solid #e6dec1;
  box-shadow: 0 -2px 16px rgba(201, 79, 31, 0.08);
  z-index: 501;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  padding: 28px 14px 22px 14px;
  transition: transform 0.36s, opacity 0.21s;
}
.cookie-banner.hide {
  transform: translateY(180px);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  max-width: 520px;
  font-size: 1.1rem;
  color: #6e4e26;
  margin-right: 25px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
}
.cookie-banner button {
  border: none;
  border-radius: 99px;
  font-size: 1rem;
  padding: 11px 24px;
  margin-right: 2px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, box-shadow 0.17s;
}
.cookie-banner .accept-all {
  background: var(--brand-accent);
  color: var(--brand-white);
  box-shadow: 0 2px 7px rgba(201, 79, 31, 0.11);
}
.cookie-banner .accept-all:hover {
  background: #ad4021;
}
.cookie-banner .reject-all {
  background: var(--brand-pastel-green);
  color: #2a7147;
}
.cookie-banner .reject-all:hover {
  background: #bdddb6;
}
.cookie-banner .cookie-settings {
  background: var(--brand-pastel-blue);
  color: #124162;
}
.cookie-banner .cookie-settings:hover {
  background: #b0c8ed;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 510;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23, 70, 85, 0.17);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--brand-white);
  border-radius: 16px;
  box-shadow: 0 6px 40px rgba(17, 58, 70, 0.13);
  padding: 36px 32px 30px 32px;
  min-width: 328px;
  max-width: 99vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 521;
}
.cookie-modal h3 {
  font-size: 1.22rem;
  color: var(--brand-primary);
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  color: #375782;
  font-size: 1.06rem;
}
.cookie-modal .category-description {
  color: #867a53;
  font-size: 0.97rem;
  margin-left: 2px;
  margin-bottom: 6px;
}
.cookie-modal .cookie-switch {
  width: 38px;
  height: 22px;
  border-radius: 99px;
  background: #e3e8f1;
  position: relative;
  transition: background 0.18s;
  margin-left: 7px;
}
.cookie-modal .cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 18px;
  height: 18px;
  background: var(--brand-accent);
  border-radius: 50%;
  transition: left 0.15s, background 0.15s;
}
.cookie-modal .cookie-switch input:checked + .slider {
  left: 18px;
  background: #EAD2B7;
}
.cookie-modal .cookie-actions {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal .cta-button {
  padding: 11px 24px;
  font-size: 1rem;
  font-weight: 500;
}

/* GENERAL FLEXBOX COMPLIANCE */
.section, .features, .highlights, .testimonials, .cta, .about, .team, .values, .contact, .legal, .thankyou, .knowledge {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* RESPONSIVE: MOBILE-FIRST */
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
  .footer-brand img {
    height: 36px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding: 19px 9px 19px 12px;
    gap: 9px;
  }
  .hero {
    padding: 33px 0 33px 0;
    margin-bottom: 34px;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 6px;
  }
  .content-wrapper {
    gap: 17px;
  }
  .card-container, .recipe-cards, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .team-bios li, .feature-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 0 10px;
  }
  .testimonials .testimonial-slider {
    flex-direction: column;
    gap: 19px;
  }
  .testimonial-card {
    min-width: 0;
    font-size: 0.97rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 19px 9px 13px 9px;
  }
  .cookie-banner .cookie-text {
    margin: 0 0 8px 0;
  }
  .cookie-modal {
    padding: 24px 10px 16px 10px;
    min-width: 0;
  }
}
@media (max-width: 500px) {
  h1, .h1 { font-size: 1.4rem; }
  h2, .h2 { font-size: 1.11rem; }
  .hero .content-wrapper, .section, .content-wrapper {
    padding: 0 2px;
  }
  .testimonial-card, .team-bios li, .newsletter-signup, .info-box, .pro-tip-box {
    padding-left: 8px;
    padding-right: 8px;
    min-width: 0;
    max-width: 100%;
  }
  .footer-brand img {
    height: 25px;
  }
}

/* TRANSITIONS + MICRO-INTERACTIONS */
.section, .feature-grid, .card, .content-wrapper, .recipe-card,
.newsletter-signup, .testimonial-card, .pro-tip-box, .cta,
.cookie-banner, .cookie-modal {
  transition: box-shadow 0.17s, background 0.13s, transform 0.16s;
}

::-webkit-scrollbar {
  width: 10px;
  background: #F9F9F9;
}
::-webkit-scrollbar-thumb {
  background: #ead2b7;
  border-radius: 6px;
}

/* FOCUS VISIBLE FOR A11Y */
:focus-visible {
  outline: 2.5px dashed var(--brand-accent);
  outline-offset: 2px;
}

/* END OF STYLE */