/* =====================================================
   CSS RESET & BASE NORMALIZATION
======================================================*/
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, menu, nav, section {
  display: block;
}
footer p {
  color: white;
}
body {
  line-height: 1.5;
  background: #F4F4F9;
  color: #2E4A32;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* =====================================================
   BRAND COLOR PALETTE + CUSTOM PROPERTIES
======================================================*/
:root {
  --color-primary: #2E4A32;
  --color-secondary: #FFC857;
  --color-accent: #F4F4F9;
  --color-dark: #222B16;
  --color-error: #EB5757;
  --color-success: #37AE4A;
  --color-shadow: rgba(46, 74, 50, 0.1);

  --font-display: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-md: 0 6px 20px var(--color-shadow);
  --shadow-sm: 0 2px 8px var(--color-shadow);
  --transition: 0.26s cubic-bezier(.43,.42,0,1.01);
}

/* =====================================================
   TYPOGRAPHY (ARTISTIC and CREATIVE)
======================================================*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
}
h1 {
  font-size: 2.7rem;
  letter-spacing: -1px;
  margin-bottom: 18px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--color-dark);
  letter-spacing: 2px;
  font-family: var(--font-display);
  text-transform: uppercase;
}
.subheadline {
  font-size: 1.2rem;
  font-weight: 400;
  color: #6C894E;
  font-family: var(--font-body);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
p {
  font-size: 1.09rem;
  margin-bottom: 16px;
  color: #233716;
  font-family: var(--font-body);
}
strong, b {
  font-weight: 700;
  color: #437053;
}
ul, ol {
  padding-left: 18px;
  margin-bottom: 20px;
}
ul > li, ol > li {
  position: relative;
  font-size: 1.09rem;
  color: #375426;
  margin-bottom: 12px;
  padding-left: 28px;
  font-family: var(--font-body);
}
ul > li img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 9px;
  display: inline-block;
  filter: drop-shadow(0 1.5px 0px #ffe7bd) drop-shadow(0 2px 3px rgba(85,72,34,.14));
}
a.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  padding: 14px 34px;
  font-size: 1.18rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 18px;
  min-width: 190px;
  transition: background 0.23s, color 0.23s, box-shadow 0.23s;
  background: var(--color-secondary);
  color: var(--color-dark);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  border: none;
  outline: none;
}
a.cta.primary, .cta.primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
  border: none;
}
a.cta.primary:hover, .cta.primary:focus,
a.cta:hover, .cta:focus {
  background: #DAA943;
  color: var(--color-dark);
  box-shadow: 0 5px 25px rgba(255,200,87,0.13);
  transform: translateY(-1.5px) scale(1.024);
}

/* Artistic Section Titles: Add subtle underlines or highlight */
h2, h3 {
  position: relative;
}
h2::after, h3::after {
  content: '';
  display: block;
  width: 42px;
  height: 5px;
  border-radius: 5px;
  background: var(--color-secondary);
  margin-top: 8px;
  left: 0;
}

/* =====================================================
   LAYOUT & CONTAINERS
======================================================*/
.container {
  width: 100%;
  max-width: 1112px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  background: #FEFDF9;
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  padding: 40px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 270px;
  max-width: 100%;
  padding: 26px 18px 22px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 10px 35px #e9dbb665;
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 22px;
  transition: box-shadow var(--transition), transform var(--transition);
  min-width: 290px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 25px #ffc85744;
  transform: scale(1.022);
}
.testimonial-card p {
  color: #202A15;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
}
.testimonial-card span {
  font-family: var(--font-display);
  color: #8F933A;
  font-size: 0.98rem;
  margin-left: auto;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TABLES (workshops.html) */
table {
  width: 100%;
  margin: 20px 0 12px 0;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 1.07rem;
}
thead th {
  background: var(--color-secondary);
  color: var(--color-dark);
  font-weight: 700;
  font-family: var(--font-display);
  padding: 10px 6px;
  border-radius: 0 0 0 0;
  text-align: left;
}
tbody td {
  background: #fff;
  color: var(--color-primary);
  padding: 9px 6px;
  border-bottom: 1.5px solid #F4F4F9;
}
tbody tr:last-child td {
  border-bottom: none;
}


/* =====================================================
   NAVIGATION & HEADER
======================================================*/
header {
  width: 100%;
  padding-top: 18px;
  background: #fff8e1;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 24px -16px #ffc85777;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.18s;
  padding: 8px 13px;
  margin-bottom: 6px;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--color-secondary);
  color: var(--color-dark);
}
.main-nav a img {
  width: 38px;
  height: 38px;
  margin-right: 2px;
  filter: drop-shadow(0 2px 4px #ffe7bd);
}

/* Hide mobile nav on desktop */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}

/* =====================================================
   FOOTER
======================================================*/
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 64px 0 34px 0;
  margin-top: 62px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0px -6px 32px -12px #2b330a22;
}
footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}
footer .footer-nav a {
  color: var(--color-secondary);
  background: none;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.17s, color 0.15s;
}
footer .footer-nav a:hover {
  color: var(--color-dark);
  background: var(--color-secondary);
}
footer .footer-info {
  text-align: center;
  font-size: 0.98rem;
  color: #EAD79A;
  margin-top: 18px;
}
.footer-info img {
  vertical-align: middle;
  width: 26px; height:26px;
  margin-right: 7px;
}

/* =====================================================
   RESPONSIVE & FLEXBOX BREAKPOINTS (MOBILE-FIRST)
======================================================*/
@media (max-width: 1150px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    padding: 32px 9px;
  }
}
@media (max-width: 980px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.44rem; }
  .card { min-width: 210px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 20px; right: 18px;
    background: var(--color-secondary);
    color: var(--color-dark);
    font-size: 2rem;
    border-radius: var(--radius-lg);
    z-index: 201;
    width: 48px; height: 48px;
    align-items: center; justify-content: center;
    border: none;
    box-shadow: 0 2px 12px #eecc90bb;
    transition: background .14s;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    background: var(--color-dark);
    color: var(--color-secondary);
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; left: 0; bottom: 0;
    background: #fff8e1;
    box-shadow: 0 0 140px 10px #ffc85766;
    z-index: 9989;
    transform: translateX(100%);
    transition: transform 0.32s var(--transition);
    opacity: 0.99;
    padding: 0;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
  }
  .mobile-menu-close {
    align-self: flex-end;
    background: var(--color-secondary);
    color: var(--color-dark);
    font-size: 2.1rem;
    margin: 21px 18px 0 0;
    border-radius: var(--radius-lg);
    width: 48px; height: 48px;
    border: none;
    box-shadow: 0 2.5px 18px #ffeabe88;
    transition: background 0.13s;
  }
  .mobile-menu-close:focus, .mobile-menu-close:hover {
    background: var(--color-dark);
    color: var(--color-secondary);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    width: 100%;
    height: 100%;
    justify-content: center;
    font-family: var(--font-display);
  }
  .mobile-nav a {
    font-size: 1.18rem;
    background: none;
    color: var(--color-primary);
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    width: 90vw;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.18s, color 0.17s;
  }
  .mobile-nav a:focus, .mobile-nav a:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
  }
  header {
    padding-bottom: 14px;
    min-height: 68px;
    position: static;
  }
}
@media (max-width: 650px) {
  .container {
    max-width: 100vw;
    padding-left: 5px;
    padding-right: 5px;
  }
  .content-wrapper, .section {
    padding: 28px 4px;
    margin-bottom: 40px;
  }
  h1 {
    font-size: 1.38rem;
    margin-bottom: 10px;
  }
  h2 { font-size: 1.08rem; }
}
@media (max-width: 1024px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* Flex direction column for text-image-section at <768px */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* Ensuring min 20px between all cards/sections */
.card, .content-wrapper, .testimonial-card { margin-bottom: 20px; }
.section { margin-bottom: 60px; }
.card-container, .content-grid { gap: 24px; }

/* =====================================================
   COOKIE CONSENT BANNER & MODAL
======================================================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff8e1;
  color: var(--color-dark);
  box-shadow: 0 -4px 36px 0 #2e4a324d;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 22px 10vw 22px 10vw;
  justify-content: space-between;
  gap: 32px;
  font-family: var(--font-body);
  font-size: 1.04rem;
  animation: cookieBannerSlideIn 0.42s var(--transition) 1;
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  flex: 1 1 0%;
  min-width: 180px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-btn {
  padding: 9px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  border: none;
  margin: 0;
  transition: background 0.14s, color 0.13s, box-shadow .1s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.cookie-btn.accept:hover {
  background: #478255;
}
.cookie-btn.reject {
  background: #EB5757;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.cookie-btn.reject:hover {
  background: #A32E2E;
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-dark);
  border: 2px solid var(--color-primary);
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.settings:hover {
  background: #fcdfa3;
  color: var(--color-primary);
}

/* COOKIE SETTINGS MODAL POPUP */
.cookie-modal {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  min-width: 330px;
  max-width: 92vw;
  z-index: 10010;
  background: #f8f6f0;
  box-shadow: 0 9px 55px #ae8c2240;
  border-radius: var(--radius-xl);
  padding: 34px 30px 24px 30px;
  opacity: 1;
  animation: cookieModalIn 0.32s var(--transition);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translate(-50%,-50%) scale(0.83); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h3 {
  margin-bottom: 18px;
  color: var(--color-dark);
  text-align: center;
}
.cookie-prefs-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 17px;
}
.cookie-pref {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1.01rem;
  background: #fffde6;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.cookie-pref input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--color-primary);
  margin-right: 2px;
}
.cookie-pref.disabled {
  opacity: 0.55;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 8px;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
    padding: 16px 6vw;
    font-size: 0.97rem;
  }
  .cookie-modal {
    min-width: unset;
    max-width: 95vw;
    padding: 21px 10px 12px 10px;
  }
}

/* =====================================================
   ARTISTIC / DECORATIVE ELEMENTS & UTILITY CLASSES
======================================================*/
/* Extra embellishments for "creative_artistic" style */
.section, .content-wrapper {
  position: relative;
  overflow: hidden;
}
.section::before {
  content: '';
  position: absolute;
  left: -80px; top: -34px;
  width: 180px; height: 120px;
  background: var(--color-secondary);
  opacity: 0.11;
  border-radius: 48% 60% 37% 63% / 43% 36% 64% 57%;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-14deg);
  filter: blur(6px);
}
.section:nth-child(2n)::after, .content-wrapper::after {
  content: '';
  position: absolute;
  right: -90px; bottom: -34px;
  width: 144px; height: 95px;
  background: var(--color-primary);
  opacity: 0.07;
  border-radius: 57% 38% 22% 78% / 62% 61% 39% 38%;
  pointer-events: none;
  z-index: 0;
  filter: blur(7.5px);
}
h1, h2, h3 {
  text-shadow: 1px 3px 0 #fffbe9, 0 2px 2px #ffd58833;
}
.cta:active {
  background: #c39a40 !important;
  color: #fffbe3 !important;
}

/* Unique bullet style for ul */
ul > li::before {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  margin-right: 10px;
  border-radius: 3px;
  background: var(--color-secondary);
  box-shadow: 2px 2px 0 #ffd17e;
  vertical-align: middle;
}
ul > li img {
  margin-right: 7px;
}

/* Minor Shimmer to Buttons on Hover */
.cta.primary:hover::after {
  content: '';
  position: absolute;
  left: 6px; right: 6px; top: 0;
  height: 9px;
  border-radius: 0 0 27px 27px;
  background: linear-gradient(102deg,#fff9 40%,#fefefc05 100%);
  opacity: 0.3;
  pointer-events:none;
  z-index: 3;
  animation: shimmerBtn 1.22s linear 1;
}
@keyframes shimmerBtn {
  0%  { opacity: 0.07; left: 20px; }
  38% { opacity: .14; left: 1px; }
  59% { opacity: .18; left: 9px; }
  100%{ opacity: 0.07; left: 6px; }
}

/* Decorative underline with zigzag effect for section titles (creative flair) */
h2::after, h3::after {
  background: repeating-linear-gradient(90deg, var(--color-secondary), var(--color-secondary) 7px, transparent 7px, transparent 14px);
  height: 5px;
  border-radius: 7px;
}

/* Unique tags for blog */
ul li {
  line-height: 1.5;
}

/* ================================
    ADDITIONAL MICRO-INTERACTIONS
================================ */
.card, .testimonial-card, a.cta, .cookie-btn, .card-container > .card {
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
}
a.cta:active, .cta.primary:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* ================================
    ACCESSIBILITY & CONTRAST
================================ */
.testimonial-card {
  background: #fff;
  color: #29361c;
}
.testimonial-card p, .testimonial-card span {
  color: #202a15!important;
}

/* ================================
    MISC
================================ */
::-webkit-scrollbar {
  width: 11px;
  background: #F4F4F9;
}
::-webkit-scrollbar-thumb {
  background: #ffe29b;
  border-radius: 5px;
}

/* ================================
    PRINT
================================ */
@media print {
  header, footer, .main-nav, .mobile-menu, .cookie-banner {
    display: none !important;
  }
  body {
    background: #fff;
    color: #2E4A32;
  }
}
