/* === 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFAF5;
  color: #222633;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border-radius: 8px;
}
input, textarea {
  border: 1px solid #E1E8EF;
  padding: 12px 16px;
  background: #fff;
  transition: border-color 0.2s;
}
input:focus, textarea:focus {
  border-color: #A1C051;
}


/* === BRAND PALETTE: Soft Pastel Aesthetic === */
:root {
  --color-primary: #222633;
  --color-secondary: #A1C051;
  --color-accent: #FAFAF5;
  --color-pink: #FFDDEE;
  --color-mint: #DBFFED;
  --color-sky: #D1E7FF;
  --color-lavender: #E8E6FD;
  --color-yellow: #FFF8E1;
  --color-border: #E1E8EF;
  --color-shadow: rgba(60, 68, 90, 0.06);
  --color-neutral: #f3f6fa;
  --color-danger: #DB6B88;
  --color-success: #8FCE92;
}


/* === TYPOGRAPHY (Soft/Dreamy) === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.15;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 500;
}

p, li, label, input, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
}

strong {
  font-weight: 500;
  color: var(--color-secondary);
}

.section h2 + p, .section h1 + p {margin-top: -6px;}


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

main {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 24px;
}

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

.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

/* CRITICAL FLEXBOX ONLY requirement met throughout */


/* === NAVBAR === */
header {
  background: var(--color-accent);
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  height: 92px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  padding: 8px 0;
  font-weight: 400;
  color: var(--color-primary);
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.2s;
  font-size: 1rem;
}
header nav a:hover, header nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}

.btn-primary {
  display: inline-block;
  padding: 13px 34px;
  background: linear-gradient(90deg, #E8E6FD 0%, #DBFFED 100%);
  color: var(--color-primary);
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  border: none;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 4px 16px var(--color-shadow);
  margin-left: 22px;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, color 0.18s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #FFDDEE 0%, #D1E7FF 100%);
  color: var(--color-secondary);
  box-shadow: 0 4px 24px rgba(161,192,81,0.12);
}

/* Mobile Nav Toggle */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 7px 16px;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
  z-index: 110;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}

/* === MOBILE MENU & OVERLAY === */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 249, 255, 0.96);
  box-shadow: 0 0 32px var(--color-shadow);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.57,.09,.54,1.18);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--color-danger);
  color: #fff;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin: 20px 24px 10px 0;
  padding: 8px 20px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(220,50,120,0.09);
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 8px;
  gap: 22px;
  padding: 0 44px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-size: 1.18rem;
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  transition: color 0.2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--color-secondary);
  background: var(--color-mint);
}

/* === HERO & SECTIONS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section {
  border-radius: 24px;
}
.section:not(:last-child) {
  box-shadow: 0 6px 32px var(--color-shadow);
  background: linear-gradient(115deg, #E8E6FD 20%, #FFF8E1 100%);
}


/* === CARDS AND FLEX CONTAINERS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: linear-gradient(115deg, #FFDDEE 30%, #D1E7FF 80%);
  border-radius: 20px;
  box-shadow: 0 2px 16px var(--color-shadow);
  padding: 30px 24px;
  min-width: 265px;
  flex: 1 1 240px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.22s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 32px rgba(161, 192, 81, 0.12);
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}

/* Content grid for reusable flex wrapper */
.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;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: linear-gradient(99deg, #DBFFED 55%, #E8E6FD 100%);
  border-radius: 18px;
  padding: 22px 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px var(--color-shadow);
}

/* === TESTIMONIAL STYLES === */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  background: linear-gradient(90deg, #D1E7FF 0%, #FFDDEE 100%);
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px var(--color-shadow);
}
.testimonial-card p {
  color: #222633;
  font-size: 1.13rem;
  font-style: italic;
  text-align: center;
}
.testimonial-card span {
  display: block;
  margin-top: -6px;
  font-size: 1rem;
  font-family: 'Oswald', sans-serif;
  color: var(--color-secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: right;
}


/* === FOOTER === */
footer {
  background: linear-gradient(90deg, #DBFFED 0%, #E8E6FD 100%);
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  margin-top: 35px;
  box-shadow: 0 0 48px var(--color-shadow) inset;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 35px 20px 24px 20px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: var(--color-primary);
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.15s;
}
footer nav a:hover {
  color: var(--color-secondary);
}
.footer-contact {
  color: var(--color-primary);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: auto;
}
footer img {
  height: 38px;
  margin-bottom: 12px;
}


/* === FORMS & BUTTONS === */
form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}
form label {
  font-weight: 400;
  font-size: 1rem;
  margin-right: 8px;
}
form input[type="email"],
form input[type="text"] {
  border: 1.2px solid var(--color-border);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
  min-width: 220px;
}
form input[type="email"]::placeholder {
  color: #B0BCD6;
}
form button[type="submit"],
.section ul li button {
  padding: 13px 30px;
  background: linear-gradient(90deg, #A1C051 0%, #E8E6FD 100%);
  color: var(--color-primary);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 99px;
  box-shadow: 0 2px 10px var(--color-shadow);
  cursor: pointer;
  transition: background 0.2s, color 0.18s, box-shadow 0.2s;
}
form button[type="submit"]:hover, form button[type="submit"]:focus,
.section ul li button:hover, .section ul li button:focus {
  background: linear-gradient(80deg, #222633 0%, #A1C051 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(161, 192, 81, 0.17);
}

input[type="search"] {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 1rem;
  width: 100%;
  margin-top: 11px;
  box-shadow: 0 2px 8px var(--color-shadow);
}
input[type="search"]:focus {
  border-color: var(--color-secondary);
}


/* === LISTS, ULs === */
.section ul,
.content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 0;
}
.section ul li,
.content-wrapper ul li {
  padding-left: 0;
  font-size: 1.06rem;
  background: linear-gradient(90deg, #FAFAF5 75%, #DBFFED 100%);
  border-radius: 12px;
  padding: 13px 20px;
  margin-bottom: 2px;
  box-shadow: 0 1px 6px var(--color-shadow);
  color: #222633;
}
.section ul li:last-child {
  margin-bottom: 0;
}

/* === Pill/Tag Styles for price, etc. === */
.section ul li span {
  display: inline-block;
  margin-left: 14px;
  background: var(--color-yellow);
  color: var(--color-secondary);
  border-radius: 16px;
  padding: 3px 13px;
  font-size: 0.98rem;
  font-weight: 500;
}

/* === FEATURED HIGHLIGHT/KEY NUMBERS === */
.key-numbers, .key-highlights, .chef-highlights, .learning-outcomes, .session-info, .support-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  background: linear-gradient(90deg, #DBFFED 60%, #FFDDEE 100%);
  border-radius: 18px;
  padding: 24px 30px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px var(--color-shadow);
  color: #222633;
}
.key-numbers p, .key-highlights p, .chef-highlights p, .learning-outcomes p, .session-info p, .support-info p {
  font-size: 1.15rem;
}
.key-numbers strong {
  font-size: 2rem;
  color: var(--color-secondary);
}

.faq-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #FFF8E1;
  border-radius: 14px;
  padding: 17px 20px;
  margin-top: 10px;
  box-shadow: 0 1px 5px var(--color-shadow);
}
.faq-section h3 {
  font-size: 1.12rem;
  color: var(--color-secondary);
}

/* === CONTACT PAGE STYLES === */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #E8E6FD;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 1px 8px var(--color-shadow);
}
.google-map {
  margin-top: 14px;
  background: #FFF8E1;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 1rem;
  box-shadow: 0 1px 7px var(--color-shadow);
}
.social-links {
  margin-top: 16px;
  background: #FAFAF5;
  border-radius: 12px;
  padding: 14px 20px 10px 20px;
  box-shadow: 0 1px 8px var(--color-shadow);
  display: flex;
  flex-direction: column;
}
.social-links ul {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 7px;
}
.social-links li {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  gap: 6px;
}
.social-links img {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #D1E7FF;
  padding: 3px;
}

/* === THANK YOU PAGE === */
.section .btn-primary {
  margin: 18px 0 0 0;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  z-index: 90000;
  background: linear-gradient(90deg, #FFF8E1 0%, #E8E6FD 100%);
  box-shadow: 0 0 24px var(--color-shadow);
  padding: 20px 20px 16px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  justify-content: center;
  transition: transform 0.4s, opacity 0.4s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #222633;
  font-size: 1rem;
  line-height: 1.45;
  margin-right: 8px;
  max-width: 520px;
}
.cookie-btn-group { 
  display: flex; flex-direction: row; gap: 14px; align-items: center;
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  padding: 9px 20px;
  font-size: 1rem;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 1px 6px var(--color-shadow);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: var(--color-mint);
  color: var(--color-primary);
  border: 1px solid var(--color-secondary);
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: var(--color-yellow);
  color: var(--color-secondary);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34, 38, 51, 0.13);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: linear-gradient(115deg, #DBFFED 30%, #FFDDEE 100%);
  border-radius: 18px;
  padding: 34px 36px 19px 36px;
  max-width: 96vw;
  width: 430px;
  box-shadow: 0 8px 32px var(--color-shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.28rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal-category label {
  font-size: 1.07rem;
}
.cookie-modal-toggle {
  width: 40px;
  height: 22px;
  background: var(--color-secondary);
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  margin-left: 15px;
  display: flex; align-items: center;
  transition: background 0.14s;
}
.cookie-modal-toggle[data-state="off"] {background: #E8E6FD;}
.cookie-modal-toggle input {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}
.cookie-modal-toggle span {
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: left 0.18s;
}
.cookie-modal-toggle[data-state="on"] span {
  left: 19px;
}
.cookie-modal-footer {
  margin-top: 13px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal-content .close-cookie-modal {
  background: var(--color-danger);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  border-radius: 50%;
  padding: 6px 14px;
  position: absolute;
  right: 18px;
  top: 16px;
  cursor: pointer;
}
.cookie-modal-content .close-cookie-modal:hover {background: var(--color-secondary);}

/* === ANIMATIONS & MICROINTERACTIONS === */
.card, .testimonial-card, .feature-item, .faq-section, .key-numbers, .key-highlights, .chef-highlights {
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:active, .testimonial-card:active {
  transform: scale(0.97);
}
input[type="email"], input[type="search"], form button {
  transition: box-shadow 0.2s, border 0.2s;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
  header .container {
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-contact {margin-left: 0;}
}
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.1rem; }
  header .container { height: 69px; }
  header nav {
    display: none;
  }
  .btn-primary { margin-left: 0; }
  .mobile-menu-toggle {
    display: block;
    margin-left: 0;
  }
  .section, section {
    padding: 26px 5vw;
    margin-bottom: 36px;
  }
  .content-wrapper, .text-section {
    gap: 14px;
    padding: 0;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 24px;
  }
  .feature-item {
    padding: 16px 12px;
    gap: 10px;
  }
  .testimonial-card {
    padding: 14px 8vw;
  }
  .key-numbers,
  .key-highlights,
  .chef-highlights,
  .learning-outcomes,
  .session-info,
  .support-info {
    flex-direction: column;
    padding: 16px 12px;
    gap: 10px;
  }
  .footer-contact, footer nav {
    font-size: 0.93rem;
  }
  /* text-image-section flex column */
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  form {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .social-links ul { flex-direction: column; gap: 7px; }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px 7vw 16px 7vw;
    font-size: 0.98rem;
  }
  .cookie-banner p {max-width: unset;}
  .cookie-modal-content {padding: 16px 8vw 13px 8vw;}
}

@media (max-width: 480px) {
  h1 { font-size: 1.18rem; }
  h2 { font-size: 1rem; }
  p, ul li, .testimonial-card p { font-size: 0.95rem; }
  .btn-primary,
  form button[type="submit"],
  .section ul li button { padding: 11px 18px; font-size: 0.96rem; }
  .testimonial-card { padding: 12px 4vw; font-size: 0.93rem; }
  .card { padding: 21px 7vw; min-width: 0; }
  .feature-item { padding: 8px 4vw; }
  .cookie-modal-content {padding: 10px 2vw 4px 2vw; width: 99vw;}
}

/* === END OF CSS === */
