/* RESET & BASE ------------------------------ */
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;
}
article,aside,details,figcaption,figure, 
footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #181f2a;
  color: #F9F6F0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* CUSTOM PROPERTIES ------------------------ */
:root {
  --primary: #2D4A6F;
  --secondary: #F6B63A;
  --accent: #F9F6F0;
  --neon: #5bdcff;
  --primary-dark: #1a2332;
  --shadow: 0 2px 24px 0 rgba(18,45,89,0.11);
  --radius: 20px;
  --radius-sm: 12px;
  --trans: 0.22s cubic-bezier(.77,.07,.55,.93);
}

/* TYPOGRAPHY ------------------------------ */
h1,h2,h3,h4 {
  font-family: 'Quicksand', 'Montserrat', Arial, sans-serif;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: .01em;
}
h1 {
  font-size: 2.25rem;
  font-weight: 700;
  text-shadow: 0 4px 24px rgba(90,200,255,.14);
  line-height: 1.15;
}
h2 {
  font-size: 1.6rem;
  font-weight: 600;
}
h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 12px;
}
h4 { font-size: 1rem; font-weight: 500; margin-bottom: 8px; }
p,li,blockquote,cite {
  font-size: 1rem;
  line-height: 1.7;
  color: #e5eaf7;
}
strong { color: var(--secondary); font-weight: 600; }
blockquote {
  border-left: 3px solid var(--neon);
  margin: 0 0 12px 0;
  padding: 6px 12px;
  background: rgba(28,61,91,0.20);
  font-style: italic;
  color: #C6F5FF;
}
cite {
  display: block;
  color: #222;
  background: #fff;
  font-size: .98em;
  padding: 6px 20px 6px 14px;
  border-radius: var(--radius-sm);
  margin-top: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
}
ul,ol { padding-left: 22px; margin-bottom: 20px; }
ul li, ol li { margin-bottom: 7px; }
a {
  color: var(--neon);
  transition: color .18s;
  text-decoration: none;
}
a:hover, a:focus {
  color: var(--secondary);
  text-decoration: underline;
}

/* LAYOUT & SPACING ------------------------ */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 19px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius);
}
.section:nth-child(odd) {
  background: linear-gradient(89deg, rgba(33,56,85,0.95) 75%, rgba(92,201,255,.055) 100%);
}
.section:nth-child(even) {
  background: linear-gradient(89deg, rgba(33,56,85,0.78) 62%, rgba(246,182,58,0.13) 100%);
}

.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card {
  background: linear-gradient(98deg, #253c59 80%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  color: #fff;
  transition: box-shadow .2s, transform .2s;
  border: 1px solid rgba(90,200,255,0.04);
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 40px 0 #5bdcff33,0 1px 6px #5bdcff11;
  transform: translateY(-5px) scale(1.01);
}

.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;
  background: #fff;
  color: #181f2a;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px #1c3d5b15;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--secondary);
  transition: box-shadow .17s;
}
.testimonial-card:hover {
  box-shadow:0 8px 36px #F6B63A30,0 1.5px 8px #1c3d5b15;
}
/* Ensure dark text on light backgrounds for testimonials */
.testimonial-card p, .testimonial-card blockquote {
  color: #223452;
  font-weight: 500;
}
.testimonial-card cite {
  background: #F6B63A;
  color: #222;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: rgba(33,64,111,0.25);
  border: 1.5px solid rgba(90,200,255,0.13);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  margin-bottom: 20px;
}

/* HERO & CTA BUTTONS ---------------------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(92deg, var(--secondary) 60%, #FFD580 100%);
  color: #2D4A6F;
  font-family: 'Quicksand', 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 13px 36px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 2px 16px #FFD25C50;
  margin-top: 10px;
  cursor: pointer;
  transition: background .19s,var(--trans),box-shadow .22s;
  text-shadow: 0 1px 8px #fff2;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(92deg, #f2c345 60%, var(--neon) 100%);
  color: #181f2a;
  box-shadow: 0 4px 50px #5bdcff75;
  outline: none;
}

/* NAVIGATION ------------------------------ */
header {
  width: 100%;
  background: #212e44cc;
  position: sticky;
  top: 0;
  z-index: 25;
  box-shadow: 0 2px 12px #1c304b22;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 18px 0 12px 0;
}
header nav a {
  color: #F9F6F0;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.02rem;
  letter-spacing: .3px;
  margin-right: 6px;
  margin-bottom: 0;
  font-weight: 600;
  position: relative;
  transition: color .18s;
}
header nav a:hover, header nav a:focus {
  color: var(--secondary);
}
header nav img {
  max-height: 46px;
  width: auto;
  margin-right: 14px;
}
header .mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--neon);
  background: none;
  border: none;
  margin-left: auto;
  cursor: pointer;
  z-index: 53;
}

/* -- Mobile Menu (burger) ----------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,34,50, 0.97);
  transform: translateX(100vw);
  transition: transform .38s cubic-bezier(.9,.2,.18,1);
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  position: absolute;
  top: 26px; right: 34px;
  z-index: 80;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 100px;
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #243554;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin: 84px 0 0 32px;
  width: 88vw;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  padding: 13px 0 13px 8px;
  border-radius: 10px;
  width: 100%;
  display: flex;
  transition: background .16s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #13263d;
  color: var(--secondary);
}

@media (max-width: 1030px) {
  .container { max-width: 97vw; padding: 0 10px; }
}
@media (max-width: 900px) {
  header nav a { font-size: 1rem; }
}
@media (max-width: 830px) {
  header nav { gap: 8px; }
  .container { padding: 0 6px; }
}
@media (max-width: 768px) {
  .content-grid, .card-container { flex-direction: column; gap: 20px; }
  .text-image-section { flex-direction: column !important; align-items: flex-start !important; }
  .feature-item { padding: 20px 10px; }
}
@media (max-width: 868px) {
  header nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
}

/* COOKIE CONSENT BANNER ------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #223452cc;
  color: #fff;
  z-index: 1002;
  padding: 32px 12px 23px 12px;
  box-shadow: 0 -5px 48px #08101f89;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 38px;
  justify-content: center;
  transition: transform .33s;
  font-size: 1rem;
}
.cookie-banner.hidden {
  transform: translateY(160px);
  pointer-events: none;
}
.cookie-banner p { margin-bottom: 0; }
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  background: var(--secondary);
  color: #2D4A6F;
  font-weight: 600;
  box-shadow: 0 1px 8px #F6B63A30;
  margin-right: 0;
  transition: background .15s, color .14s, box-shadow .2s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--neon);
  color: #044a71;
  box-shadow: 0 7px 32px #5bdcff40;
}
.cookie-banner .cookie-btn-settings {
  background: none;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  font-weight: 600;
  margin-left: 10px;
  transition: background .14s, color .15s;
}
.cookie-banner .cookie-btn-settings:hover, .cookie-banner .cookie-btn-settings:focus {
  background: #ffeba0;
  color: #2D4A6F;
  border-color: var(--neon);
}

/* COOKIE SETTINGS MODAL ------------------- */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; bottom:0; right:0;
  background: rgba(22,36,60,0.92);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .34s;
}
.cookie-modal-overlay.closed {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #f0f6fb;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 8px 64px #222c3b32;
  padding: 34px 28px 28px 32px;
  min-width: 350px;
  min-height: 50px;
  max-width: 95vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  color: #2D4A6F;
  font-family: 'Quicksand',Arial,sans-serif;
  font-size: 1.18rem;
}
.cookie-modal .cookie-categories {
  margin: 21px 0 7px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category-label {
  font-weight: 500;
  min-width: 130px;
}
.cookie-category-switch {
  width: 35px;
  height: 19px;
  border-radius: 30px;
  background: #c3d5df;
  position: relative;
  transition: background .18s;
  margin-right: 7px;
  display:flex;
  align-items:center;
  cursor: pointer;
}
.cookie-category-checkbox:checked + .cookie-category-switch {
  background: #5bdcff;
}
.cookie-category-switch:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 100%;
  transition: left .2s;
}
.cookie-category-checkbox:checked + .cookie-category-switch:before {
  left: 17px;
}
.cookie-category-checkbox[disabled] + .cookie-category-switch {
  background: #FFD580;
  opacity: 0.47;
  cursor: default;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 19px;
  font-size: 1.3em;
  border: none;
  background: none;
  color: #223452;
  cursor: pointer;
}
.cookie-modal .modal-btn-save, .cookie-modal .modal-btn-cancel {
  padding: 8px 26px;
  border-radius: 100px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--secondary);
  color: #223452;
  transition: background .15s;
}
.cookie-modal .modal-btn-cancel {
  background: #e0eaf6;
  color: #2D4A6F;
  border: 1px solid #2D4A6F44;
}
.cookie-modal .modal-btn-save:hover,
.cookie-modal .modal-btn-save:focus {
  background: #5bdcff;
  color: #044a71;
}


/* FOOTER ---------------------------------- */
footer {
  background: #25314a;
  padding: 32px 15px;
  margin-top: 45px;
  color: var(--accent);
  border-top: 6px solid var(--secondary);
  position: relative;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
footer nav a {
  color: var(--accent);
  font-family: 'Quicksand', Arial, sans-serif;
  padding-right: 10px;
  font-size: .98rem;
  opacity: 0.94;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
}
footer .text-section {
  font-size: .98rem;
  margin-bottom: 18px;
  color: #fff;
}
footer .social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
footer .social-links a img {
  width: 25px; height: 25px;
}
footer .copyright {
  font-size: .93em;
  color: #F9F6F0cc;
  margin-top: 12px;
}

/* SUPPORTIVE COMPONENTS ------------------- */
.text-section {
  margin-bottom: 20px;
}
.partner-logos {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 20px;
}
.partner-logos img {
  width: 65px; height: 65px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e5eaf7;
  box-shadow: 0 2px 14px #213a5720;
}
.faq-links {
  margin: 18px 0 0 0;
}
.faq-links a {
  color: var(--neon);
  font-weight: 500;
  margin-right: 8px;
  text-decoration: underline dotted;
}

/* LISTS & UL/OL VARIANTS ------------------ */
.service-list, .course-list, .recipe-highlights, .cuisine-list, .workshop-list, .benefits-list ul, .success-stories ul {
  list-style: none;
  padding-left: 0;
  margin: 12px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-list li, .course-list li, .recipe-highlights li, .cuisine-list li, .workshop-list li, .benefits-list ul li, .success-stories ul li {
  background: rgba(90,200,255,0.035);
  border-left: 4px solid var(--secondary);
  padding: 18px 18px 16px 17px;
  border-radius: 13px;
  font-size: 1rem;
  color: #eaf6ff;
}
.cuisine-list li img {
  width: 36px;
  height: 36px;
  margin-right: 9px;
  vertical-align:middle;
  display:inline-block;
}
.cuisine-list li strong {
  font-family: 'Quicksand',Arial,sans-serif;
  color: var(--neon);
}
.tips-grid {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-left: 6px;
  margin-top: 18px;
}
.tips-grid h3 { color: var(--secondary); margin-bottom: 5px;}

/* CONTENT UTILITY GRIDS ------------------- */
.feature-grid, .usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid > div, .usp-grid > div {
  background: rgba(33,56,111,0.20);
  border: 1.5px solid #2d4a6f55;
  border-radius: 17px;
  padding: 24px 18px;
  flex: 1 1 210px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow .18s, border .2s;
}
.feature-grid > div:hover, .usp-grid > div:hover {
  border-color: var(--neon);
  box-shadow: 0 3px 26px #5bdcff28;
}
.feature-grid img, .usp-grid img {
  width: 38px; height: 38px;
  margin-bottom: 5px;
}

.core-values {
  margin: 38px 0 0 0;
}
.core-values ul {
  list-style: disc inside;
  color: #F6B63A;
  font-size: 1.1em;
  gap: 11px;
}

.partner-logos {
  gap: 23px;
}
.event-details {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-top: 22px;
}
.success-stories h3 {
  color: var(--secondary);
  margin-bottom: 5px;
}
.benefits-list ul, .success-stories ul {
  padding-left: 0;
  gap: 7px;
}

.map-embed {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 11px;
}
.map-embed img {
  width: 56px; height: 56px;
}
.map-embed .small {
  font-size: .98em;
  color: #f6b63a;
  margin-top: 2px;
}

/* RESPONSIVE BREAKPOINTS ------------------ */
@media (max-width: 1100px) {
  .feature-grid, .usp-grid { flex-direction: column; gap: 19px; }
  .feature-grid > div, .usp-grid > div { min-width: 0; width: 100%; }
}
@media (max-width: 640px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.13rem; }
  .section { padding: 22px 6px; margin-bottom: 38px; }
  .container { padding: 0 3px; }
  .cta-button { font-size: 0.98rem; padding: 9px 22px; }
  .testimonial-card { flex-direction: column; gap: 6px; padding: 14px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 22px 8px 17px 10px; font-size: .98rem; }
  .partner-logos img { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
  .cookie-modal { padding: 20px 5px 17px 9px; min-width: unset; }
  .mobile-menu-close { right: 16px; }
  .mobile-nav { margin-left: 7px; }
  .feature-grid > div, .usp-grid > div { padding: 15px 3px; }
  .service-list li, .course-list li, .recipe-highlights li, .cuisine-list li, .workshop-list li, .benefits-list ul li, .success-stories ul li {
    padding-left: 8px; padding-right: 7px;
  }
}

/* ANIMATIONS FOR MICRO-INTERACTIONS ------- */
.cta-button, .feature-grid > div, .usp-grid > div, .card, .testimonial-card {
  transition: box-shadow .22s, transform .2s, border .18s, background .22s;
}
.cta-button:active {
  transform: scale(0.96);
}

/* ACCESSIBILITY --------------------------- */
:focus, button:focus, a:focus {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

/* PRINT HELPER ---------------------------- */
@media print {
  * { background: #fff !important; color: #000 !important; }
}
