/* 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,
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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  background: #F5F5F5;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #183153;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #A62619;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover,
a:focus {
  color: #CF3B2E;
  text-decoration: underline;
}

ul, ol {
  margin-left: 1.5em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #183153;
  margin-bottom: 14px;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
}
h3 {
  font-size: 1.4rem;
}
h4,
h5,
h6 {
  font-size: 1rem;
}

p, li, label {
  font-size: 1rem;
  color: #284067;
  margin-bottom: 8px;
}

b, strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
input, textarea, button {
  font-family: inherit;
  font-size: 1rem;
}

/* SOFT PASTEL BRAND PALETTE ------------------- */
:root {
  --brand-primary: #183153;
  --brand-secondary: #F5F5F5;
  --brand-accent: #CF3B2E;
  --brand-pink: #FFD6E0;
  --brand-yellow: #FFF9C4;
  --brand-green: #D7F9EA;
  --brand-blue: #DEE7FA;
  --brand-mauve: #F3E4FB;
  --brand-card: #FFFFFF;
  --brand-shadow: rgba(24, 49, 83, 0.07);
  --danger: #B83228;
}

/* CONTAINER & LAYOUT -------------------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-card);
  border-radius: 24px;
  box-shadow: 0 8px 24px var(--brand-shadow);
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 22px 8px;
    border-radius: 14px;
  }
  .container {
    padding: 0 8px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--brand-card);
  border-radius: 18px;
  box-shadow: 0 4px 18px var(--brand-shadow);
  padding: 20px 18px;
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  flex: 1 1 320px;
  transition: transform 0.18s, box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 32px rgba(24,49,83,.12);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* HERO & SPECIAL BANNERS ---------------------- */
.hero, .blog-hero, .contact-hero {
  background: linear-gradient(120deg, #F3E4FB 0%, #DEE7FA 100%);
  padding: 64px 0 46px 0;
  margin-bottom: 36px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 6px 20px var(--brand-shadow);
  display: flex;
  align-items: center;
}
.hero .content-wrapper, .blog-hero .content-wrapper, .contact-hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.hero h1, .blog-hero h1, .contact-hero h1 {
  color: var(--brand-primary);
  font-size: 2.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.hero p, .blog-hero p, .contact-hero p {
  color: #556387;
  font-size: 1.1rem;
}
@media (max-width: 550px) {
  .hero, .blog-hero, .contact-hero {
    padding-top: 32px;
    padding-bottom: 28px;
    border-radius: 0 0 12px 12px;
  }
  .hero h1 {
    font-size: 1.3rem;
  }
}

.cta-banner {
  background: linear-gradient(90deg, #FFD6E0 5%, #D7F9EA 100%);
  border-radius: 24px;
  box-shadow: 0 6px 24px var(--brand-shadow);
  margin-bottom: 60px;
  padding: 38px 20px;
}
.cta-banner h2 {
  color: #A62619;
}

/* FEATURES, ICON LISTS ------------------------ */
.features ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
  margin-top: 16px;
}
.features li {
  flex: 1 1 200px;
  background: #F3E4FB;
  border-radius: 18px;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 200px;
  box-shadow: 0 2px 10px var(--brand-shadow);
  transition: box-shadow 0.2s, background 0.2s;
}
.features li img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}
.features li:hover {
  background: #DEE7FA;
  box-shadow: 0 7px 28px rgba(24,49,83,.12);
}

@media (max-width: 900px) {
  .features ul {
    gap: 14px;
  }
  .features li {
    min-width: 140px;
    padding: 14px 8px 10px 8px;
  }
}
@media (max-width: 600px) {
  .features ul {
    flex-direction: column;
    gap: 10px;
  }
}

/* CARDS & RECIPES ----------------------------- */
.recipe-list, .bio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.recipe-card, .tip-card, .faq-item, .blog-post {
  background: #DEE7FA;
  border-radius: 18px;
  box-shadow: 0 3px 14px var(--brand-shadow);
  padding: 20px 18px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, background 0.2s;
}
.recipe-card:hover, .tip-card:hover, .faq-item:hover, .blog-post:hover {
  background: #FFD6E0;
  box-shadow: 0 8px 40px rgba(207,59,46,0.12);
}

@media (max-width: 768px) {
  .recipe-list, .bio-list {
    flex-direction: column;
    gap: 12px;
  }
  .recipe-card, .tip-card, .faq-item, .blog-post {
    padding: 14px 10px;
    margin-bottom: 18px;
  }
}

/* TESTIMONIALS ------------------------------- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #FFF9C4;
  color: #183153;
  border-radius: 22px;
  box-shadow: 0 4px 22px var(--brand-shadow);
  padding: 20px;
  flex: 1 1 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #284067;
}
.testimonial-card small {
  color: #A62619;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
}

@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 200px;
  }
}

/* BUTTONS & CTAs ---------------------------- */
.btn-primary,
.btn-primary:visited {
  background: linear-gradient(90deg, #FFD6E0 0%, #DEE7FA 100%);
  color: #183153;
  border: none;
  border-radius: 8px;
  padding: 12px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.11rem;
  font-weight: 600;
  box-shadow: 0 2px 18px rgba(24,49,83,0.08);
  transition: background 0.23s, color 0.21s, box-shadow 0.24s, transform 0.12s;
  cursor: pointer;
  margin-top: 8px;
  display: inline-block;
  letter-spacing: 0.01em;
  outline: none;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(90deg, #D7F9EA 0%, #FFD6E0 100%);
  color: #A62619;
  box-shadow: 0 6px 32px rgba(24,49,83,0.16);
  transform: translateY(-1px) scale(1.04);
}

.btn-secondary {
  background: transparent;
  color: #A62619;
  border: 2px solid #FFD6E0;
  border-radius: 8px;
  padding: 10px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  margin-top: 10px;
  box-shadow: 0 2px 10px rgba(228,171,196,0.09);
  transition: background 0.18s, color .18s, box-shadow .19s, transform .13s;
  letter-spacing: 0.01em;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #FFD6E0;
  color: #183153;
  border-color: #CF3B2E;
  box-shadow: 0 6px 24px rgba(228,165,165,0.16);
  transform: translateY(-1px) scale(1.03);
}

button, input[type="submit"] {
  cursor: pointer;
}

/* FORMS ------------------------------------- */
input[type="text"], input[type="email"], input[type="tel"], textarea {
  background: #DEE7FA;
  border: 1px solid #bbbfd6;
  border-radius: 8px;
  padding: 11px 15px;
  font-size: 1rem;
  margin-bottom: 18px;
  width: 100%;
  transition: border-color .19s, box-shadow .22s;
  outline: none;
  box-shadow: none;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus {
  border-color: #A62619;
  box-shadow: 0 2px 8px #FFD6E033;
}
textarea {
  min-height: 90px;
  resize: vertical;
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
}

/* NAVIGATION HEADER ------------------------- */
header {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(24,49,83,0.09);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0 0 0 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  color: #183153;
  padding: 9px 13px;
  border-radius: 6px;
  transition: background .19s, color .19s;
}
header nav a:hover, header nav a.active {
  background: #FFD6E0;
  color: #A62619;
}

header img {
  height: 46px;
  width: auto;
}
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 950px) {
  header nav {
    gap: 12px;
  }
}
@media (max-width: 800px) {
  header nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: #FFD6E0;
    border: none;
    border-radius: 44px;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    color: #A62619;
    position: relative;
    z-index: 201;
    box-shadow: 0 2px 8px #FFD6E033;
    transition: background 0.19s, color 0.19s;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    background: #DEE7FA;
    color: #CF3B2E;
  }
  header .container {
    gap: 0;
  }
}

/* MOBILE MENU OVERLAY ----------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(100deg, #DEE7FA 80%, #FFD6E0 100%);
  z-index: 260;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 36px 24px 24px 24px;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(0.6,0.01,0.26,1), opacity 0.24s;
  box-shadow: 0 2px 32px #18315322;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #F3E4FB;
  border: none;
  border-radius: 36px;
  font-size: 2rem;
  color: #A62619;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 28px;
  right: 32px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  z-index: 300;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FFD6E0;
  color: #CF3B2E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 42px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  padding: 12px 10px;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #183153;
  border-radius: 8px;
  background: transparent;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  margin-bottom: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD6E0;
  color: #A62619;
}
@media (min-width: 801px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none;
  }
}

/* MAIN CONTENT SPACING ---------------------- */
main {
  margin-bottom: 50px;
}

.section, .about-summary, .services-teaser,
.team, .brand-philosophy, .newsletter-signup,
.featured-recipes, .tips-list, .faq, .contact-form, .contact-details, .location-map, .confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, .about-summary, .services-teaser,
  .team, .brand-philosophy, .newsletter-signup,
  .featured-recipes, .tips-list, .faq, .contact-form, .contact-details, .location-map, .confirmation {
    margin-bottom: 32px;
    padding: 20px 7px;
  }
}

/* BLOG POSTS --------------------------------- */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blog-post {
  background: #F3E4FB;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(24,49,83,0.11);
  margin-bottom: 18px;
  padding: 22px 16px;
  transition: box-shadow 0.17s, background 0.15s;
}
.blog-post:hover {
  background: #D7F9EA;
  box-shadow: 0 8px 36px rgba(207,59,46,0.10);
}
.blog-post h3 {
  color: #A62619;
}

/* FAQ & TIPS --------------------------------- */
.faq-item {
  background: #D7F9EA;
  border-radius: 14px;
  box-shadow: 0 2px 11px var(--brand-shadow);
  margin-bottom: 20px;
  padding: 15px 12px;
  transition: background 0.14s, box-shadow 0.2s;
}
.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.faq-item:hover {
  background: #FFF9C4;
}

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

/* ABOUT / TEAM BIOS --------------------------- */
.bio-list > div {
  background: #DEE7FA;
  border-radius: 15px;
  box-shadow: 0 1px 7px var(--brand-shadow);
  padding: 20px 14px;
  margin-bottom: 20px;
  flex: 1 1 270px;
  transition: box-shadow .18s, background .21s;
}
.bio-list > div:hover {
  background: #D7F9EA;
  box-shadow: 0 7px 21px rgba(24,49,83,0.14);
}

/* LEGAL CONTENT ------------------------------- */
.legal-content {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 34px 18px;
  box-shadow: 0 2px 11px #18315314;
}
.legal-content ul {
  margin-top: 12px;
  margin-bottom: 16px;
}

/* FOOTER -------------------------------------- */
footer {
  background: #183153;
  color: #F5F5F5;
  padding: 38px 0 18px 0;
  box-shadow: 0 -3px 18px var(--brand-shadow);
  width: 100%;
}
footer .container {
  flex-direction: column;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
footer nav a {
  color: #FFD6E0;
  font-weight: 500;
  font-size: 1.06rem;
}
footer nav a:hover {
  color: #FFF9C4;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 14px;
  font-size: 0.95rem;
  justify-content: center;
  align-items: center;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px 9px;
  border-radius: 7px;
  background: #1831530A;
}
@media (max-width: 600px) {
  .footer-contact {
    flex-direction: column;
    gap: 10px;
    font-size: 0.91rem;
  }
}

/* COOKIE CONSENT BANNER ------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #DEE7FA;
  color: #183153;
  box-shadow: 0 -2px 16px rgba(24,49,83,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 18px 16px 18px;
  z-index: 355;
  font-size: 1rem;
  border-top: 1px solid #A5B5D1;
  transition: transform 0.36s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .btn-cookie {
  padding: 9px 22px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  background: #FFD6E0;
  color: #183153;
  font-weight: 600;
  transition: background 0.19s, color 0.19s, transform .13s;
}
.cookie-banner .btn-cookie:hover,
.cookie-banner .btn-cookie:focus {
  background: #FFF9C4;
  color: #A62619;
  transform: scale(1.04);
}
.cookie-banner .btn-settings {
  background: transparent;
  border: 1.5px solid #A62619;
  color: #A62619;
  font-weight: 500;
  padding: 9px 18px;
  margin-left: 4px;
}
.cookie-banner .btn-settings:hover,
.cookie-banner .btn-settings:focus {
  background: #F3E4FB;
  color: #CF3B2E;
  border-color: #CF3B2E;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 12px 8px;
    gap: 13px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

/* COOKIE MODAL ------------------------------- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,49,83, 0.22);
  z-index: 410;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 6px 38px #18315324;
  max-width: 390px;
  width: 94vw;
  padding: 38px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.cookie-modal-content h3 {
  color: #A62619;
  font-size: 1.28rem;
  margin-bottom: 10px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #A62619;
}
.cookie-modal-content .cookie-cat {
  margin-bottom: 12px;
  font-size: 1.02rem;
  font-weight: 500;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 20px;
  background: #FFD6E0;
  border: none;
  border-radius: 30px;
  width: 33px;
  height: 33px;
  color: #A62619;
  font-size: 1.22rem;
  transition: background 0.14s, color 0.14s;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFF9C4;
  color: #CF3B2E;
}

/* SCROLLBAR SOFT THEME ------------------------- */
::-webkit-scrollbar {
  width: 11px;
  background: #F3E4FB;
}
::-webkit-scrollbar-thumb {
  background: #FFD6E0;
  border-radius: 7px;
  border: 2px solid #F3E4FB;
}
::-webkit-scrollbar-thumb:hover {
  background: #DEE7FA;
}

/* MICROINTERACTIONS & TRANSITIONS ------------------- */
.section, .card, .testimonial-card, .btn-primary, .btn-secondary,
.recipe-card, .tip-card, .faq-item, .blog-post, .bio-list > div,
.cookie-banner, .cookie-modal-content {
  transition-property: box-shadow, background, color, transform, opacity;
  transition-duration: 0.18s, 0.14s, 0.19s, 0.11s, 0.18s;
  transition-timing-function: cubic-bezier(0.4,0.08,0.13,1);
}

/* UTILITIES, OVERRIDES, ETC ---------------------------- */
.hide { display: none !important; }
.show { display: block !important; }

/* Accessibility FOCUS VISIBLE -------------------------- */
:focus-visible {
  outline: 2.5px solid #CF3B2E;
  outline-offset: 1.5px;
}

/* END CSS */
