/* === 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,
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F8F8F8;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #2A9D8F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E9C46A;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #264653;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.18;
}
h3 {
  font-size: 1.325rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, li, dd, dt {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 12px;
  color: #264653;
}
p:last-child, li:last-child { margin-bottom: 0; }
strong {
  font-weight: 800;
  color: #2A9D8F;
}
ul, ol {
  padding-left: 28px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}
dt, dd {
  margin-bottom: 6px;
}
blockquote {
  border-left: 4px solid #E9C46A;
  background: #FAF7E9;
  color: #264653;
  font-style: italic;
  margin: 24px 0;
  padding: 16px 32px;
  font-size: 1.04rem;
}

/* === LAYOUT GLOBAL === */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(38,70,83,0.08);
  position: relative;
}

/* === HEADER & NAV === */
header {
  background: #264653;
  padding: 0 20px;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(38,70,83,0.09);
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  position: relative;
  padding: 5px 10px;
  border-radius: 10px;
  transition: background 0.22s, color 0.22s;
}
header nav a:hover,
header nav a:focus {
  color: #264653;
  background: #E9C46A;
}
header nav img {
  max-height: 42px;
  margin-right: 16px;
}
.cta-primary {
  background: #2A9D8F;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.17rem;
  letter-spacing: 0.03em;
  padding: 12px 32px;
  border: none;
  border-radius: 16px;
  margin-left: auto;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 0 1px 8px 0 rgba(42,157,143,0.15);
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: #E9C46A;
  color: #264653;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px 0 rgba(233,196,106,0.16);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: #2A9D8F;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: 14px;
  padding: 6px 20px 10px 20px;
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 300;
  cursor: pointer;
  box-shadow: 0 4px 16px 0 rgba(42,157,143,0.18);
  transition: background 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #E9C46A;
  color: #264653;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 38px 0 rgba(38,70,83,0.21);
  z-index: 1000;
  transform: translateX(-105%);
  transition: transform 0.36s cubic-bezier(.7,.4,.32,1);
  padding: 24px 32px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #2A9D8F;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  padding: 5px 24px 5px 10px;
  border-radius: 14px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E9C46A;
  color: #264653;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  margin-top: 8px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: #264653;
  padding: 10px 0;
  width: 100%;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2A9D8F;
  color: #fff;
}

@media (max-width: 1100px) {
  .container { max-width: 960px; }
}
@media (max-width: 900px) {
  .container { max-width: 760px; }
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.13rem; }
  .section { padding: 16px 3px; }
  .container { padding: 0 1vw; }
}

/* === FLEX LAYOUTS & SPACING CLASSES === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(38,70,83,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 7px 24px 0 rgba(42,157,143,0.09);
  transform: translateY(-4px) 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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #2A9D8F;
  box-shadow: 0 2px 10px 0 rgba(42,157,143,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
  min-width: 280px;
  max-width: 370px;
  flex: 1 1 0;
  margin-bottom: 20px;
  transition: border 0.17s, box-shadow 0.16s;
}
.testimonial-card:hover {
  border-color: #E9C46A;
  box-shadow: 0 7px 24px 0 rgba(38,70,83,0.13);
}
.testimonial-card p {
  color: #222;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-card strong {
  color: #2A9D8F;
  font-size: 1rem;
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.star-rating {
  color: #E9C46A;
  font-size: 1.45rem;
  margin-top: -12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #FAF7E9;
  border-radius: 15px;
  box-shadow: 0 1px 7px 0 rgba(38,70,83,0.06);
  padding: 24px 22px 18px 22px;
  margin-bottom: 20px;
  text-align: center;
  transition: box-shadow 0.18s, background 0.17s;
}
.feature-grid > div:hover {
  background: #E9C46A11;
  box-shadow: 0 4px 16px 0 rgba(233,196,106,.13);
}
.feature-grid img {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
}
.feature-item {  /* For extensibility / additional lists */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.usp-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
}
.usp-list li {
  background: #2A9D8F;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  padding: 10px 22px;
  border-radius: 15px;
  margin-bottom: 0;
  display: inline-block;
}

.service-cards, .recipe-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.service-cards > div, .recipe-highlights > div {
  min-width: 220px;
  flex: 1 1 220px;
  background: #879398;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(38,70,83,0.09);
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  transition: background 0.16s, box-shadow 0.16s, color 0.14s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-cards > div strong, .recipe-highlights > div span {
  color: #E9C46A;
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.09rem;
}
.service-cards > div:hover, .recipe-highlights > div:hover {
  background: #2A9D8F;
  color: #fff;
  box-shadow: 0 8px 36px 0 rgba(42,157,143,0.15);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.infobox {
  background: #2A9D8F11;
  border-left: 5px solid #2A9D8F;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 14px;
}
.faq {
  background: #F8F8F8;
  border-left: 5px solid #E9C46A;
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 8px;
}
.faq h3 { margin-bottom: 10px; }
.faq dt {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2A9D8F;
}
.faq dd {
  margin-bottom: 10px;
}

.pricing-table {
  overflow-x: auto;
}
.pricing-table table {
  border-collapse: collapse;
  min-width: 390px;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(38,70,83,0.05);
  border-radius: 15px;
  margin-bottom: 10px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 15px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.pricing-table th {
  background: #2A9D8F;
  color: #fff;
  font-weight: 800;
}
.pricing-table tr:nth-child(even) td {
  background: #FAF7E9;
}
.pricing-table td {
  color: #264653;
}

.workshop-dates {
  color: #264653;
  font-weight: 700;
  font-family: 'Open Sans', Arial, sans-serif;
  margin: 8px 0 12px 0;
}

.brand-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 0.97rem;
  color: #222;
  margin-top: 18px;
  margin-bottom: 12px;
}
.brand-footer img {
  height: 36px;
  margin-bottom: 7px;
}

footer {
  background: #fff;
  padding: 20px 0 10px 0;
  margin-top: 30px;
  border-top: 2px solid #2A9D8F22;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
footer nav a {
  color: #2A9D8F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 4px 14px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  background: #E9C46A;
  color: #264653;
}

@media (max-width: 900px) {
  .testimonial-cards, .feature-grid, .service-cards, .recipe-highlights {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .testimonial-card, .feature-grid > div, .service-cards > div, .recipe-highlights > div {
    max-width: 98vw;
    min-width: 0;
    padding: 18px 10px;
  }
}

/* ===== BUTTONS & FORMS ===== */
button,
input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  background: #2A9D8F;
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 1px 6px 0 rgba(42,157,143,0.10);
}
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #E9C46A;
  color: #264653;
  box-shadow: 0 6px 28px 0 rgba(233,196,106,0.11);
}

input, textarea, select {
  font-size: 1rem;
  padding: 10px 13px;
  border: 2px solid #2A9D8F22;
  border-radius: 10px;
  outline: none;
  margin-bottom: 16px;
  width: 100%;
  background: #fff;
  transition: border 0.18s;
  font-family: 'Open Sans', Arial, sans-serif;
}
input:focus, textarea:focus, select:focus {
  border-color: #2A9D8F;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: #264653;
  color: #fff;
  padding: 23px 16px 16px 16px;
  z-index: 2600;
  box-shadow: 0 -2px 16px 0 rgba(38,70,83,0.15);
  gap: 16px;
  animation: cookie-banner-in 0.77s cubic-bezier(.7,.6,.39,1);
}
@keyframes cookie-banner-in {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 7px;
}
.cookie-btn {
  background: #2A9D8F;
  color: #fff;
  border-radius: 10px;
  border: none;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.cookie-accept {
  background: #2A9D8F;
}
.cookie-btn.cookie-accept:hover,
.cookie-btn.cookie-accept:focus {
  background: #E9C46A;
  color: #264653;
}
.cookie-btn.cookie-reject {
  background: #E76F51;
  color: #fff;
}
.cookie-btn.cookie-reject:hover,
.cookie-btn.cookie-reject:focus {
  background: #fff;
  color: #E76F51;
}
.cookie-btn.cookie-settings {
  background: #E9C46A;
  color: #264653;
}
.cookie-btn.cookie-settings:hover,
.cookie-btn.cookie-settings:focus {
  background: #2A9D8F;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(38,70,83,0.47);
  z-index: 2700;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 40px 0 rgba(38,70,83,0.23);
  padding: 34px 24px 22px 24px;
  max-width: 440px;
  width: 95vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-in 0.45s cubic-bezier(.7,.6,.39,1);
}
@keyframes cookie-modal-in {
  from { transform: scale(0.85); opacity:0; }
  to   { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  color: #264653;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #2A9D8F;
  font-size: 1rem;
}
.cookie-switch {
  appearance: none;
  width: 47px;
  height: 25px;
  background: #2A9D8F33;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.15s;
}
.cookie-switch:checked {
  background: #2A9D8F;
}
.cookie-switch::before {
  content: '';
  display: block;
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 1px 8px rgba(38,70,83,0.10);
  transition: left 0.2s, background 0.15s;
}
.cookie-switch:checked::before {
  left: 24px;
  background: #2A9D8F;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 11px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #2A9D8F;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #E76F51;
}
.cookie-category .essential-label {
  font-style: italic;
  color: #888;
}

/* Hide body scroll when cookie modal is open */
body.cookie-modal-open {
  overflow: hidden;
}

/* === MISC === */
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* Emphasize important messages */
.text-section a.cta-primary {
  align-self: flex-start;
  margin-top: 12px;
  margin-bottom: 3px;
}

/* === RESPONSIVE FLEX/LAYOUT CORRECTIONS === */
@media (max-width: 1100px) {
  .feature-grid > div, .service-cards > div, .recipe-highlights > div,
  .testimonial-card {
    min-width: 180px;
  }
}
@media (max-width: 700px) {
  .feature-grid, .service-cards, .recipe-highlights, .testimonial-cards {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .feature-grid > div, .service-cards > div, .recipe-highlights > div,
  .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 15px 8px;
  }
}

/* ===== PRINT STYLES (optional for modern appearance) ===== */
@media print {
  header, .mobile-menu, .mobile-menu-toggle,
  .cookie-consent-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }
}
