/* RESET & BASE TYPOGRAPHY */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #FFFFFF;
  font-family: 'Roboto', Arial, sans-serif;
  color: #25455A;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #25455A;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #5A7E44;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
:focus {
  outline: 2px solid #88A47C;
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #25455A;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
h1 { font-size: 2rem; margin-bottom: 18px; }
h2 { font-size: 1.5rem; margin-bottom: 14px; }
h3 { font-size: 1.15rem; margin-bottom: 10px; color: #25455A; }
.subtitle {
  font-size: 1.15rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #25455A;
  opacity: 0.7;
  margin-bottom: 18px;
}

strong { font-weight: 700; color: #25455A; }

/* CONTAINER & SECTIONS */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  max-width: 600px;
}

/* FLEX SPACING PATTERNS */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; border-radius: 14px; background: #fff; box-shadow: 0 2px 9px 0 rgba(37, 69, 90, 0.07); position: relative; overflow: hidden; transition: box-shadow 0.18s; }
.card:hover { box-shadow: 0 4px 20px 0 rgba(37, 69, 90, 0.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; border-radius: 14px; background: #f8fafb; margin-bottom: 20px; box-shadow: 0 2px 9px 0 rgba(37, 69, 90, 0.04); }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* HERO SECTION */
.hero {
  background: #D6EAF1;
  padding: 64px 0 48px 0;
  border-radius: 0 0 28px 28px;
}
.hero .btn {
  margin-top: 14px;
}
/* FEATURES & CARDS */
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.recipe-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.category-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(37, 69, 90, 0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  max-width: 250px;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
}
.category-card img {
  height: 48px;
  margin-bottom: 10px;
}
.category-card:hover {
  box-shadow: 0 6px 24px 0 rgba(37, 69, 90, 0.12);
  transform: translateY(-2px) scale(1.015);
  cursor: pointer;
}
.tags-cloud {
  display: flex; flex-wrap: wrap; gap: 14px; font-size: 15px;
}
.tags-cloud span {
  background: #E0EDD9;
  color: #5A7E44;
  border-radius: 8px;
  padding: 4px 14px;
  font-weight: 500;
}

/* LISTS */
.features ul, .services ul, .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 0;
}
.features li, .services li, .about li, .core-values li, .workshop-benefits li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1rem; color: #25455A; line-height: 1.5;
}
.features li img, .services li img {
  width: 26px; height: 26px; flex-shrink: 0; margin-right: 10px;
}

/* BUTTONS */
.btn {
  border-radius: 24px;
  background-color: #25455A;
  color: #fff;
  padding: 10px 28px;
  font-size: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(37, 69, 90, 0.04);
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
}
.btn:hover, .btn:focus {
  background-color: #5A7E44;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(90, 126, 68, 0.08);
  color: #fff;
}
.btn-primary {
  background-color: #5A7E44;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #25455A;
}

/* SEARCH BAR */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 24px;
  padding: 4px 10px 4px 20px;
  box-shadow: 0 2px 8px rgba(37, 69, 90, 0.03);
  margin-top: 6px;
}
.search-bar input {
  flex: 1;
  border: none;
  background: none;
  padding: 10px 0;
  font-size: 16px;
  color: #25455A;
}
.search-bar button {
  padding: 6px 10px;
  background: #D6EAF1;
  border-radius: 50%;
  border: none;
  transition: background 0.15s;
  cursor: pointer;
}
.search-bar button:hover {
  background: #88A47C;
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(37, 69, 90, 0.03);
  position: sticky;
  top: 0;
  z-index: 1001;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
  justify-content: flex-start;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  padding: 6px 16px;
  color: #25455A;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a.nav-cta {
  background: #5A7E44;
  color: #fff;
  font-weight: 700;
  margin-left: 20px;
  transition: background 0.18s, box-shadow 0.14s;
}
.main-nav a.nav-cta:hover, .main-nav a.nav-cta:focus {
  background: #25455A;
  color: #fff;
}
.main-nav a:hover, .main-nav a:focus {
  background: #D6EAF1;
}
.main-nav img {
  height: 32px;
  margin-right: 8px;
}
/* BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: #25455A;
  color: #fff;
  font-size: 32px;
  border: none;
  border-radius: 50%;
  padding: 6px 12px;
  margin-left: auto;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 1500;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #5A7E44;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #fff;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.6,0,.4,1);
  box-shadow: 0 0 16px 0 rgba(37, 69, 90, 0.09);
  padding: 0 0 0 0;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  font-size: 2.2rem;
  color: #25455A;
  background: #F4F7F9;
  border-radius: 50%;
  padding: 6px 14px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(37, 69, 90, 0.03);
  border: none;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #5A7E44;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  color: #25455A;
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0 7px 0;
  transition: color 0.14s, background 0.14s;
  width: 100%;
  border-radius: 10px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4F7F9;
  color: #5A7E44;
}

/* SECTIONS */
.cta {
  background: #E0EDD9;
  border-radius: 22px;
  margin-bottom: 60px;
}
.cta .btn {
  margin-top: 16px;
}

.services .content-wrapper, .about .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefit-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  color: #5A7E44;
  font-weight: 600;
  margin: 14px 0;
  font-size: 15px;
}
.benefit-icons img {
  height: 28px; width: 28px; margin-right: 8px;
  vertical-align: middle;
}
.pricing-table {
  margin: 16px 0 0 0;
  border-radius: 10px;
  background: #fff;
  overflow-x: auto;
  box-shadow: 0 2px 8px rgba(37, 69, 90, 0.03);
  padding: 14px 18px;
}
.pricing-table table { border-collapse: collapse; width: 100%; min-width: 400px; }
.pricing-table th, .pricing-table td {
  padding: 10px 8px;
  text-align: left;
  border-bottom: 1px solid #E9EEF2;
  font-size: 15px;
}
.pricing-table th {
  color: #25455A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.pricing-table tr:last-child td { border-bottom: none; }

/* ABOUT US & TESTIMONIALS */
.about .meet-the-team, .about .core-values {
  margin: 24px 0 0 0;
}
.core-values ul, .meet-the-team ul { gap: 8px; }

.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 26px 20px 26px;
  flex-direction: column;
  min-width: 260px;
  max-width: 350px;
  box-shadow: 0 2px 18px 0 rgba(37, 69, 90, 0.07);
  font-size: 1.06rem;
  color: #1F3039;
}
.testimonial-card blockquote {
  color: #25455A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.6;
}
.testimonial-card .testimonial-author {
  color: #5A7E44;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 0 0;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #25455A;
  font-size: 1rem;
}
.contact-details img {
  width: 19px; height: 19px; vertical-align: middle;
}

.map {
  margin-top: 16px;
  padding: 12px 14px;
  background: #F6F8F6;
  border-radius: 12px;
  color: #55707A;
  font-size: 0.96rem;
  font-style: italic;
}

/* FOOTER */
footer {
  background: #F8FAFB;
  border-top: 1px solid #E8EEF2;
  margin-top: 40px;
  font-size: 0.98rem;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 24px 0 16px 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #25455A;
  opacity: 0.6;
  transition: opacity 0.15s, color 0.15s;
}
.footer-nav a:hover {
  opacity: 1;
  color: #5A7E44;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #25455A;
  font-size: 0.96rem;
}
.footer-contact img { width: 17px; height: 17px; margin-right: 7px; vertical-align: middle; }
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}
.footer-logo img { height: 34px; }
.footer-logo p { color: #88A47C; font-size: 0.96rem; }

/* LEGAL PAGES */
.legal .content-wrapper, .thankyou .content-wrapper {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(37, 69, 90, 0.04);
  padding: 36px 32px;
  margin: 0 auto;
}
.legal ul, .thankyou ul { margin: 18px 0 16px 0; gap: 9px; }
.legal ul li { position: relative; padding-left: 22px; font-size: 1rem; color: #25455A; }
.legal ul li:before {
  content: '\2022';
  position: absolute;
  left: 0; top: 0;
  color: #5A7E44;
  font-size: 1.4em;
  line-height: 1.1;
}
.legal a { color: #5A7E44; text-decoration: underline; }

/* THANK YOU SECTION */
.thankyou {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E0EDD9;
  border-radius: 18px;
  margin-bottom: 50px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1.5px solid #E6EBEC;
  box-shadow: 0 -2px 20px 0 rgba(37, 69, 90, 0.07);
  padding: 22px 16px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: slideUp 0.33s ease;
}
@keyframes slideUp {
  from {transform: translateY(70px); opacity: 0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-banner p {
  color: #25455A;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 10px;
}
.cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner .btn, .cookie-banner .cookie-settings-btn {
  font-size: 15px;
  padding: 8px 18px;
  min-width: 110px;
}
.cookie-banner .btn-reject {
  background: #E2E6E6;
  color: #25455A;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus{
  background: #D6EAF1;
  color: #5A7E44;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  border: 1.5px solid #25455A;
  color: #25455A;
  border-radius: 18px;
  transition: background 0.12s, color 0.12s;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #D6EAF1;
  color: #25455A;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  z-index: 6000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(37, 69, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(37, 69, 90, 0.14);
  max-width: 96vw;
  width: 380px;
  padding: 30px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: fadeInUp 0.22s cubic-bezier(.6,0,.5,1);
}
@keyframes fadeInUp {
  from {transform: translateY(34px); opacity: 0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-modal .modal-title {
  font-size: 1.19rem;
  color: #25455A;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
  font-weight: 700;
}
.cookie-modal .modal-desc {
  font-size: 0.99rem;
  color: #43575E;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  background: #F8FAFB;
  border-radius: 9px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #25455A;
  flex: 1;
}
.cookie-modal .cookie-category input[type=checkbox] {
  width: 20px; height:20px;
  accent-color: #5A7E44;
}
.cookie-modal .cookie-category input[disabled] {
  accent-color: #ccc;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.cookie-modal .btn {
  min-width: 100px;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  color: #25455A;
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.55rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 2px 8px;
  transition: background 0.13s;
}
.cookie-modal .modal-close:hover {
  background: #E2E6E6;
}

/* MULTI REGION GRID (World Cuisines) - flex only! */
.multi-region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 8px;
}
.multi-region-grid > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 11px 0 rgba(37, 69, 90, 0.05);
  padding: 18px 18px 14px 18px;
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 300px;
  margin-bottom: 20px;
}

/* Workshop Benefits */
.workshop-benefits {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
  }
  .content-wrapper, footer .content-wrapper {
    gap: 18px;
    flex-direction: column;
  }
  .multi-region-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 11px;
  }
  .category-card {
    min-width: 140px;
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .section, section { padding: 30px 0; margin-bottom: 40px; }
  .hero { padding: 36px 0 30px 0; }
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: flex; }
  .content-wrapper,
  .services .content-wrapper, .about .content-wrapper, .features .content-wrapper {
    flex-direction: column;
    gap: 17px;
  }
  .text-image-section,
  .content-grid,
  .card-container,
  .recipe-categories,
  .testimonials .content-wrapper,
  .multi-region-grid,
  .card-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .testimonial-card, .category-card, .multi-region-grid > div { max-width: 100%; min-width: unset; }
  .footer-logo { align-items: flex-start; }
  .cookie-modal .cookie-modal-content { width: 98vw; max-width: 99vw; }
}
@media (max-width: 500px) {
  .header, .footer, .container {
    padding: 0 7px !important;
  }
  .hero, .section, section { padding: 20px 0; }
  .footer-logo img { height: 28px; }
  .content-wrapper .text-section, .content-wrapper { padding: 0 !important; }
}

/* Animation for input focus in forms (if forms are present in future) */
input:focus, textarea:focus {
  border-color: #5A7E44;
  box-shadow: 0 0 0 2px #E0EDD9;
}

/* Smooth transitions for micro-interactions */
body, .btn, .category-card, .search-bar, .card, .testimonial-card, .footer-nav a, .main-nav a, .mobile-menu, .mobile-menu-toggle,
.mobile-menu-close,.mobile-nav a, .cookie-banner, .cookie-modal {
  transition: background 0.16s, box-shadow 0.14s, color 0.16s, opacity 0.18s, transform 0.17s;
}

/* Hide cookie modal by default */
.cookie-modal { display: flex; }
/* Utility classes */
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.text-center { text-align: center; }

/* Fix for possible overflow */
body { overflow-x: hidden; }

/* No OVERLAP safety for .card, .testimonial-card, etc. */
.card, .testimonial-card, .category-card, .multi-region-grid > div {
  margin-bottom: 20px;
}

/* Natural Material/Minimal Aesthetic accent */
.card, .category-card, .testimonial-card, .multi-region-grid > div, .pricing-table table, .legal .content-wrapper {
  border: 1px solid #E5EAEA;
  background: #fff;
}

/* Subtle shadow for modern Scandinavian look */
.card, .category-card, .testimonial-card, .multi-region-grid > div, .pricing-table, .legal .content-wrapper {
  box-shadow: 0 2px 9px 0 rgba(37, 69, 90, 0.08);
}

/* Subtle hover effect for all interactive elements */
.card:hover, .category-card:hover, .multi-region-grid > div:hover {
  box-shadow: 0 8px 30px 0 rgba(90, 126, 68, 0.09);
}

/* Ensure proper z-index stacking for overlays */
.mobile-menu,
.cookie-modal,
.cookie-banner {
  z-index: 4000;
}
