/* ===================================================
   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;
}
html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F4EBD3;
  color: #255842;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #B55A16;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,1,.6,1);
}
a:hover, a.cta:hover {
  color: #255842;
}
ul, ol {
  list-style: none;
}
button, input, textarea {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}
/* ===================================================
   FONTS   
   =================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
}
h1 { font-size: 2.4rem; letter-spacing: -1px; margin-bottom: 20px; }
h2 { font-size: 1.7rem; margin-bottom: 18px; position: relative; }
h3 { font-size: 1.1rem; margin-bottom: 11px; font-weight: 700; }
h4, h5, h6 { font-size: 1rem; }
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong { font-weight: 700; }

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

/* ===================================================
   CONTAINER SYSTEM   
   =================================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.text-section {
  align-items: flex-start;
}

/* ===================================================
   HEADER/NAV STYLES   
   =================================================== */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(37,88,66,0.05);
  padding: 0;
  position: sticky;
  z-index: 30;
  top: 0;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #255842;
  padding: 7px 13px;
  border-radius: 18px;
  transition: background 0.16s, color 0.16s;
  letter-spacing: 0.01em;
  position: relative;
}
header nav a.cta {
  color: #fff;
  background: #B55A16;
  font-size: 1.06rem;
  box-shadow: 0 5px 20px rgba(181,90,22,0.11);
  border-radius: 22px;
  padding: 9px 24px;
  font-weight: 900;
  transition: background 0.18s, box-shadow 0.15s;
}
header nav a.cta:hover {
  background: #255842;
  color: #F4EBD3;
  box-shadow: 0 4px 14px 0 rgba(37,88,66,0.23);
}
header nav a:hover:not(.cta) {
  background: #255842;
  color: #fff;
}
header img {
  height: 38px;
}
.mobile-menu-toggle {
  display: none;
  background: #B55A16;
  color: #fff;
  font-size: 2rem;
  padding: 7px 13px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 13px rgba(37,88,66,0.07);
  cursor: pointer;
  z-index: 40;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #255842;
}

/* ===================================================
   MOBILE NAVIGATION OVERLAY
   =================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(37,88,66,0.33);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.67,-0.27,.48,1.36);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #B55A16;
  font-size: 2.1rem;
  padding: 18px 25px 0 18px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1002;
}
.mobile-menu-close:hover {
  color: #255842;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 0;
  margin-top: 25px;
}
.mobile-nav a {
  color: #255842;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid #F4EBD3;
  padding: 22px 34px;
  background: none;
  width: 100%;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a.cta {
  background: #B55A16;
  color: #fff;
  border-radius: 10px;
  margin: 24px 28px 0 28px;
  border: none;
  text-align: center;
}
.mobile-nav a:hover {
  background: #255842;
  color: #fff;
}

@media (max-width: 1000px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1000px) {
  /* Ensure logo and toggle align horizontally */
  header .container {
    flex-direction: row;
    gap: 14px;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .mobile-menu-close {
    font-size: 1.3rem;
    padding-right: 10px;
  }
  .mobile-nav a {
    font-size: 1rem;
    padding: 18px 16px;
  }
}
/* ===================================================
   MAIN SECTIONS & FLEXBOX LAYOUTS
   =================================================== */
main {
  padding-bottom: 60px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.feature-grid, .features-list, .service-cards, .course-schedule, .recipe-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li,
.features-list li,
.service-cards li,
.course-schedule li,
.recipe-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(37,88,66,0.10), 0 1.5px 4px rgba(181,90,22,0.06);
  padding: 28px 26px 28px 26px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.feature-grid li img,
.features-list li img {
  width: 35px;
  height: 35px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #F4EBD3;
  padding: 7px;
}
.feature-grid li strong, .features-list li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #255842;
}
.feature-grid li span, .features-list li span, .service-cards li p {
  color: #444;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}

.service-cards li strong {
  color: #B55A16;
  margin-top: 7px;
  font-size: 1.04rem;
}
.course-schedule li {
  background: #F4EBD3;
  border: 1.8px solid #B55A16;
  border-radius: 18px;
  color: #255842;
  box-shadow: 0 2px 8px rgba(181,90,22,0.07);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.recipe-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}
.recipe-card {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 310px;
  background: #fff;
  border-radius: 22px;
  padding: 26px 22px 17px 22px;
  box-shadow: 0 4px 16px rgba(37,88,66,0.09);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.recipe-card:hover {
  box-shadow: 0 8px 24px rgba(181,90,22,0.17);
  border: 2px solid #B55A16;
  transform: translateY(-5px) scale(1.02) rotate(-1deg);
  z-index: 1;
}
.recipe-card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B55A16;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
}
.recipe-card p {
  font-size: 1rem;
  color: #255842;
}
.recipe-card a {
  margin-top: 10px;
  color: #fff;
  background: #B55A16;
  border-radius: 15px;
  padding: 7px 20px;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  box-shadow: 0 2px 7px rgba(181,90,22,0.08);
  transition: background .18s, color .11s;
}
.recipe-card a:hover {
  background: #255842;
  color: #F4EBD3;
}

/* FLEX UTILITY CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(37,88,66,0.09);
}
.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: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 11px rgba(37,88,66,0.13), 0 0.5px 3px rgba(181,90,22,0.09);
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  font-size: 1.05rem;
  border-left: 6px solid #B55A16;
}
.testimonial-card p {
  color: #1a1a1a;
  margin: 0;
  font-weight: 600;
}
.testimonial-card span {
  color: #B55A16;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 950px) {
  .feature-grid, .features-list, .service-cards, .course-schedule, .recipe-list {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .container {
    padding: 0 10px;
  }
  section {
    margin-bottom: 38px;
    padding: 28px 9px 24px 9px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1rem; }
  .feature-grid li, .service-cards li, .recipe-card {
    padding: 14px 8px;
    border-radius: 14px;
  }
  .testimonial-card {
    padding: 16px 9px;
    border-radius: 12px;
  }
  .card {
    padding: 10px 8px;
  }
}
/* ===================================================
   ARTISTIC/CREATIVE DESIGN ELEMENTS
   =================================================== */
section {
  position: relative;
}
section::after {
  content: '';
  position: absolute;
  z-index: 0;
  right: 14vw;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-radius: 40% 80% 70% 60% / 60% 40% 80% 40%;
  background: #FFE5BE;
  opacity: 0.25;
  pointer-events: none;
  display: block;
  filter: blur(7px);
}
section:nth-child(even)::after {
  left: 18vw;
  right: auto;
  width: 36px;
  height: 36px;
  background: #B55A16;
  opacity: 0.15;
  filter: blur(9px);
}

@media (max-width: 768px) {
  section::after {
    display: none;
  }
}

/* ===================================================
   BUTTONS, CTA & INTERACTIVES
   =================================================== */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  background: #B55A16;
  color: #fff !important;
  border-radius: 22px;
  padding: 13px 37px;
  font-size: 1.1rem;
  margin-top: 7px;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 22px rgba(181,90,22,0.12);
  text-shadow: 0 1px 2px rgba(37,88,66,0.13);
  transition: background 0.22s, transform 0.12s, box-shadow 0.21s;
  border: none;
  cursor: pointer;
}
.cta:focus, .cta:hover {
  background: #255842;
  color: #F4EBD3 !important;
  transform: translateY(-2px) scale(1.025) rotate(-1deg);
  box-shadow: 0 5px 18px 0 rgba(37,88,66,.09);
}
button, .cta {
  transition: background 0.16s, box-shadow 0.13s, color 0.13s;
}

/* ===================================================
   FOOTER  
   =================================================== */
footer {
  width: 100%;
  background: #255842;
  color: #fff;
  padding: 0;
  margin-top: 80px;
  box-shadow: 0 -2px 18px rgba(37,88,66,0.05);
  position: relative;
  z-index: 10;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 16px 24px 16px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img {
  height: 32px;
  margin-bottom: 0;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  padding: 6px 10px;
  border-radius: 13px;
  font-weight: 600;
  transition: background 0.15s, color 0.1s;
}
footer nav a:hover {
  background: #B55A16;
  color: #fffac4;
}
footer .cta {
  background: #fff;
  color: #B55A16 !important;
  padding: 9px 24px;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(37,88,66,0.13);
  margin-top: 9px;
}
footer .cta:hover {
  background: #B55A16;
  color: #fff !important;
}
footer p {
  color: #F4EBD3;
  font-size: 0.97rem;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  footer img {
    margin-bottom: 10px;
  }
}

/* ===================================================
   COOKIE CONSENT BANNER & MODAL
   =================================================== */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  color: #255842;
  box-shadow: 0 -3px 14px rgba(37,88,66,0.17);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 7vw 18px 4vw;
  font-size: 1rem;
  z-index: 1101;
  animation: cookieFadeIn 0.7s;
}
#cookie-banner.hide {
  display: none !important;
}
#cookie-banner p {
  flex: 1 1 60%;
  margin: 0;
  font-size: 1rem;
}
#cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cookie-btn, .cookie-settings-btn {
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  border-radius: 15px;
  border: none;
  margin-right: 0;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: #255842;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #B55A16;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  border: 1.5px solid #B55A16;
  color: #B55A16;
}
.cookie-btn.reject:hover {
  background: #F4EBD3;
}
.cookie-settings-btn {
  background: #B55A16;
  color: #fff;
  border: none;
}
.cookie-settings-btn:hover {
  background: #255842;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cookie Modal Settings */
#cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: rgba(37, 88, 66, 0.31);
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.31s;
}
#cookie-modal.open {
  display: flex;
}
#cookie-modal .modal-content {
  background: #fff;
  color: #255842;
  padding: 40px 30px 23px 30px;
  border-radius: 22px;
  box-shadow: 0 9px 38px 0 rgba(181,90,22,0.17);
  min-width: 310px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
#cookie-modal h3 {
  font-size: 1.15rem;
  margin-bottom: 7px;
}
#cookie-modal label {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
#cookie-modal .cookie-category {
  margin-bottom: 11px;
  padding-bottom: 6px;
  border-bottom: 1px solid #F4EBD3;
}
#cookie-modal .modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
#cookie-modal .close-cookie-modal {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: #B55A16;
  cursor: pointer;
}
#cookie-modal .close-cookie-modal:hover {
  color: #255842;
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: scale(.95); }
  to { opacity: 1; transform: scale(1); }
}
@media (max-width: 650px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 6vw;
    gap: 8px;
    font-size: 0.98rem;
  }
  #cookie-modal .modal-content {
    padding: 18px 8px 14px 8px;
    min-width: 0;
    width: 95vw;
  }
}
/* ===================================================
   UTILITY & ANIMATION CLASSES
   =================================================== */
.artistic-shadow {
  box-shadow: 0 1.5px 11px rgba(181,90,22,0.10), 0 0.4px 2px rgba(37,88,66,0.10);
}
.rounded {
  border-radius: 15px;
}
.bg-accent {
  background: #B55A16;
  color: #fff;
}
.bg-primary {
  background: #255842;
  color: #fff;
}
.bg-secondary {
  background: #F4EBD3;
  color: #255842;
}
.accent-text {
  color: #B55A16 !important;
}
.primary-text {
  color: #255842 !important;
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Artistic fonts on titles */
.h1-artistic, h1, .artistic-title, h2, .artistic-heading {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Artistic underline for h2 */
h2::after {
  content: '';
  display: block;
  width: 38px;
  height: 5px;
  background: #B55A16;
  border-radius: 14px;
  margin-top: 6px;
  margin-bottom: 8px;
  opacity: 0.12;
}
/* Hide underline for h2 if .no-underline on section */
.no-underline h2::after {
  display: none;
}

/* Micro-interactions: cards wiggle on touch/hover */
.card, .recipe-card, .testimonial-card, .service-cards li {
  transition: box-shadow 0.13s, transform 0.13s;
}
.card:hover, .recipe-card:hover, .testimonial-card:hover, .service-cards li:hover {
  box-shadow: 0 6px 28px rgba(37,88,66,0.19);
  transform: scale(1.015) rotate(-1.3deg);
}

/* Show outlines on focus for accessibility */
a:focus, button:focus, .cta:focus {
  outline: 2px solid #B55A16;
  outline-offset: 2px;
}

/* General White Space Correction */
.section, section, .content-wrapper, .feature-grid, .features-list, .service-cards, .course-schedule, .recipe-list {
  margin-bottom: 20px;
}
/* Prevent accidental overlaps: always space > 20px between elements */
.card-container > *,
.content-grid > *,
.recipe-list > *,
.service-cards > * {
  margin-bottom: 20px;
}

/* END OF CSS */
