/* CSS RESET & 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FAF6ED;
  color: #1d2120;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 20px;
}

/**********************
   VINTAGE RETRO PALETTE & FONTS
**********************/
:root {
  --clr-primary: #23436F;
  --clr-secondary: #2B6140;
  --clr-accent: #F4D25D;
  --clr-bg-main: #FAF6ED;
  --clr-bg-offset: #EAE5DA;
  --clr-bg-card: #F6F1E7;
  --clr-retro-brick: #BB6654;
  --clr-retro-green: #7A9252;
  --clr-retro-blue: #3C5772;
  --clr-retro-orange: #FDAB50;
  --clr-retro-cream: #F9ECD7;
  --clr-text-main: #1D2120;
  --clr-text-dark: #0E1312;
  --clr-text-heading: #23436F;
  --clr-border: #CFBC8C;
  --shadow-card: 0 2px 8px rgba(87,64,47,0.06);
  --radius-outer: 20px;
  --radius-inner: 12px;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --font-vintage: 'Montserrat', 'Roboto Slab', 'Georgia', serif;
}

/**********************
     TYPOGRAPHY
**********************/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--clr-retro-brick);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
  text-shadow: 1px 1px 0 var(--clr-bg-main), 0 1px 2px rgba(60,87,114,0.06);
}
h1 {
  font-size: 2.4rem;
  line-height: 1.18;
  margin-bottom: 18px;
}
h2 {
  font-size: 2.0rem;
  color: var(--clr-retro-green);
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  color: var(--clr-retro-blue);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, blockquote {
  color: var(--clr-text-main);
  font-family: var(--font-body);
  font-size: 1.04rem;
  margin-bottom: 12px;
  line-height: 1.7;
}
blockquote {
  font-style: italic;
  background: var(--clr-bg-offset);
  padding: 10px 24px 10px 26px;
  border-left: 5px solid var(--clr-accent);
  border-radius: var(--radius-inner);
  margin-bottom: 6px;
  font-size: 1.15rem;
}
strong {
  color: var(--clr-retro-blue);
  font-weight: 700;
}
ul {
  padding-left: 24px;
  margin-bottom: 12px;
}
li {
  list-style: square inside;
  margin-bottom: 10px;
}

/*************************
   LAYOUT: FLEXBOX CONTAINERS
*************************/
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--clr-bg-card);
  border-radius: var(--radius-outer);
  box-shadow: var(--shadow-card);
  position: relative;
}
@media (max-width: 900px) {
  .section { padding: 30px 8px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--clr-bg-offset);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-inner);
  padding: 24px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.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-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFDF4;
  border-radius: 18px;
  box-shadow: 0 2px 13px rgba(87,64,47,0.08);
  border: 1.5px solid var(--clr-retro-orange);
  margin-bottom: 20px;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 25px rgba(37,67,111,0.12);
  border-color: var(--clr-retro-brick);
}
.testimonial-card blockquote {
  color: var(--clr-text-dark);
  background: none;
  border-left: 4px solid var(--clr-retro-green);
  border-radius: 0 0 0 10px;
  padding-left: 14px;
  font-size: 1.13rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: var(--clr-retro-brick);
  font-weight: 500;
  letter-spacing: 0.6px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.faq-item {
  background: var(--clr-bg-offset);
  border-radius: 15px;
  border: 1.5px dashed var(--clr-retro-cream);
  margin-bottom: 18px;
  padding: 16px 22px;
  box-shadow: 0 1.5px 8px rgba(60,87,114,0.03);
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--clr-text-main);
  background: var(--clr-bg-card);
  border-left: 5px solid var(--clr-accent);
  border-radius: var(--radius-inner);
  margin-bottom: 22px;
  padding: 16px 17px 13px 20px;
  box-shadow: var(--shadow-card);
  max-width: 520px;
}

.workshop-description {
  background: var(--clr-bg-card);
  border-radius: var(--radius-inner);
  border-left: 5px solid var(--clr-retro-blue);
  box-shadow: var(--shadow-card);
  padding: 18px 22px;
  margin-bottom: 20px;
}

/* Custom spacing patterns for all cards/sections */
section + section {
  margin-top: 40px;
}

/**********************
        HEADER
**********************/
header {
  background: var(--clr-retro-orange);
  box-shadow: 0 1.5px 10px rgba(36,50,72,0.08);
  border-bottom: 4px solid var(--clr-accent);
}
header .container {
  padding: 0 16px;
  min-height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  display: flex;
  align-items: center;
  margin-right: 18px;
}
.brand-logo img {
  height: 48px;
  width: auto;
  filter: contrast(1.02) saturate(1);
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-vintage);
  font-size: 1rem;
}
nav.main-nav a {
  color: var(--clr-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 4px 11px;
  border-radius: 10px;
  transition: background 0.2s, color 0.20s;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: var(--clr-accent);
  color: var(--clr-retro-brick);
}
.cta-button {
  font-family: var(--font-vintage);
  background-color: var(--clr-retro-brick);
  color: #fff6d8;
  border: none;
  border-radius: 32px;
  font-size: 1.08rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  padding: 12px 30px;
  margin-left: 25px;
  box-shadow: 0 1px 6px rgba(34,67,111,0.07);
  cursor: pointer;
  transition: background 0.23s, box-shadow 0.22s, color 0.21s;
  outline: none;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--clr-retro-orange);
  color: var(--clr-retro-blue);
  box-shadow: 0 2px 16px rgba(36,67,111,0.08);
}
.cta-button-sm {
  display: inline-block;
  font-family: var(--font-vintage);
  background: var(--clr-retro-green);
  color: #fff;
  border: none;
  border-radius: 26px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 22px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cta-button-sm:hover,
.cta-button-sm:focus {
  background: var(--clr-retro-orange);
  color: var(--clr-retro-blue);
}

/**********************
   MOBILE MENU
**********************/
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--clr-retro-brick);
  margin-left: 22px;
  cursor: pointer;
  display: none;
  z-index: 1002;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover {
  color: var(--clr-retro-green);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 320px;
  max-width: 95vw;
  background: var(--clr-bg-card);
  box-shadow: 3px 0 24px 0 rgba(34,67,111,0.16);
  transform: translateX(-105%);
  transition: transform 0.38s cubic-bezier(.62,.13,.13,1.07);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 30px 20px 10px 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--clr-retro-brick);
  align-self: flex-end;
  margin-bottom: 18px;
  cursor: pointer;
  z-index: 1019;
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: var(--font-vintage);
  color: var(--clr-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 9px 8px 8px 4px;
  font-size: 1.08rem;
  border-radius: 8px;
  transition: background 0.23s, color 0.19s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--clr-retro-orange);
  color: var(--clr-retro-brick);
}
/* overlay for mobile menu */
.mobile-menu-backdrop {
  display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,67,111,0.24);
  z-index: 1000;
  transition: opacity 0.3s;
}
.mobile-menu.open + .mobile-menu-backdrop {
  display: block;
  opacity: 1;
}
/*************************
      RESPONSIVE HEADER
*************************/
@media (max-width: 1024px) {
  nav.main-nav { gap: 13px; font-size: 0.99rem; }
  .cta-button { margin-left: 10px; padding: 10px 18px; font-size: 1rem; }
}
@media (max-width: 900px) {
  .brand-logo img { height: 38px; }
}
@media (max-width: 768px) {
  header .container {
    justify-content: flex-start;
    min-height: 55px;
    padding: 0 7px;
  }
  nav.main-nav {
    display: none;
  }
  .cta-button { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}
/*************************
        MAIN
*************************/
main {
  background: var(--clr-bg-main);
  min-height: 70vh;
  padding-top: 1px;
}
@media (max-width: 600px) {
  main { padding-bottom: 18px; }
}
/*************************
     COURSE CARDS/PRICES
*************************/
.course-price, .consultation-price {
  font-family: var(--font-vintage);
  color: var(--clr-retro-brick);
  background: var(--clr-accent);
  padding: 4px 13px;
  border-radius: 10px;
  font-size: 1.10rem;
  font-weight: 700;
  margin-right: 15px;
  letter-spacing: 0.03em;
  display: inline-block;
  margin-bottom: 7px;
  box-shadow: 0 1.5px 6px rgba(244,210,93,0.08);
}
/*************************
        FOOTER
*************************/
footer {
  background: var(--clr-retro-blue);
  color: #faf9f5;
  border-top: 5px solid var(--clr-accent);
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 0;
}
footer .container {
  padding: 0 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 0 25px 0;
}
.footer-brand-info {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand-info img {
  width: 58px; height: auto; margin-bottom: 6px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 140px;
}
.footer-links a {
  color: #fff6d8;
  font-family: var(--font-vintage);
  padding: 3px 7px;
  border-radius: 8px;
  transition: background 0.13s, color 0.15s;
  font-weight: 600;
  font-size: 1.01rem;
}
.footer-links a:hover {
  background: var(--clr-retro-orange);
  color: var(--clr-retro-blue);
}
.footer-contact {
  font-size: 0.97rem;
  color: #f5f5e0;
  max-width: 240px;
  line-height: 1.72;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  margin-top: 13px;
}
.footer-social img {
  width: 26px; height: 26px;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.06));
  opacity: 0.90;
  transition: opacity 0.16s, filter 0.15s;
  background: #fff8e6;
  border-radius: 8px;
  padding: 2px;
}
.footer-social img:hover {
  opacity: 1;
  filter: brightness(1.05) drop-shadow(0 2px 8px rgba(244,210,93,0.08));
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-brand-info,
  .footer-contact,
  .footer-links,
  .footer-social {
    max-width: 100%;
  }
}

/**********************
   COOKIE BANNER & MODAL
**********************/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--clr-retro-blue);
  color: #fff9e0;
  font-family: var(--font-body);
  border-top: 4px solid var(--clr-accent);
  z-index: 1050;
  padding: 16px 12px 16px 18px;
  box-shadow: 0 -2px 24px rgba(34,67,111,0.11);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 13px;
  animation: bannerFadeIn 0.36s;
}
@keyframes bannerFadeIn { from { opacity: 0; transform: translateY(40px);} to { opacity:1; transform: none; } }
.cookie-banner-content {
  font-size: 1.01rem;
}
.cookie-banner-actions {
  margin-top: 2px;
  display: flex;
  gap: 14px;
}
.cookie-banner .cookie-btn {
  font-family: var(--font-vintage);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 28px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1rem;
  background: var(--clr-retro-orange);
  color: var(--clr-retro-blue);
  margin-right: 0;
  transition: background 0.19s, color 0.15s, box-shadow 0.12s;
  box-shadow: 0 1px 7px rgba(244,210,93,0.11);
}
.cookie-banner .cookie-btn:nth-child(2) {
  background: var(--clr-retro-green);
  color: #fff9ed;
}
.cookie-banner .cookie-btn:nth-child(3) {
  background: var(--clr-retro-blue);
  color: var(--clr-accent);
  border: 1px solid var(--clr-accent);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: var(--clr-retro-brick);
  color: #fff9e4;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  background: rgba(34,67,111,0.34);
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1061;
}
.cookie-modal {
  background: var(--clr-bg-card);
  border-radius: 25px;
  max-width: 400px;
  width: 94vw;
  padding: 32px 20px 28px 20px;
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -55%) scale(0.98);
  box-shadow: 0 12px 38px rgba(34,67,111,0.19);
  z-index: 1070;
  display: flex; flex-direction: column; gap: 15px;
  animation: cookieModalComeIn 0.35s cubic-bezier(.29,.79,.45,1.2);
}
@keyframes cookieModalComeIn { from { opacity: 0; transform: translate(-50%, -65%) scale(0.92);} to {opacity: 1; transform: translate(-50%, -55%) scale(0.98);} }
.cookie-modal h3 {
  font-family: var(--font-vintage);
  color: var(--clr-primary);
  margin-bottom: 8px;
  font-size: 1.19rem;
}
.cookie-modal .cookie-option {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 9px;
  font-size: 1.05rem;
  font-family: var(--font-body);
}
.cookie-modal .cookie-switch {
  position: relative;
  display: flex;
  width: 38px;
  height: 22px;
  background: #dfd7bd;
  border-radius: 16px;
  cursor: pointer;
  align-items: center;
  transition: background 0.18s;
}
.cookie-modal .cookie-switch input[type='checkbox'] {
  display: none;
}
.cookie-modal .cookie-switch .slider {
  position: absolute; left: 3.5px; top: 3px;
  width: 15.5px; height: 15.5px;
  background: var(--clr-retro-orange);
  border-radius: 50%;
  transition: left 0.22s, background 0.19s;
  box-shadow: 0 0.5px 6px rgba(244,210,93,0.18);
}
.cookie-modal .cookie-switch input:checked + .slider {
  left: 19px;
  background: var(--clr-retro-green);
}
.cookie-modal .cookie-option.essential label {
  opacity: 0.7;
}
.cookie-modal-actions {
  display: flex; gap: 13px;
  margin-top: 8px;
}
.cookie-modal-actions .cookie-btn {
  min-width: 90px;
}

/**********************
   GENERAL INTERACTIONS
**********************/
button, .cta-button, .cta-button-sm, .cookie-btn {
  transition: background 0.16s, color 0.14s, box-shadow 0.15s, border-color 0.14s;
}

/*************************
      RESPONSIVE DESIGN
*************************/
@media (max-width: 950px) {
  .container { max-width: 98vw; }
  .content-wrapper, .footer .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 33px;
    padding: 21px 5px 23px 5px;
    border-radius: 16px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.33rem; }
  h3 { font-size: 1.1rem; }
  p, li, blockquote, .course-price, .consultation-price { font-size: 0.97rem; }
  .content-wrapper {
    gap: 16px;
    padding: 0 !important;
  }
  .testimonial-card {
    padding: 13px;
    margin-bottom: 16px;
  }
  .card {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .container { padding: 0 3.5vw; }
  footer .container { padding: 0 4vw; }
  .cookie-modal { padding: 22px 7px 18px 7px; }
}

/*************************
        RETRO ELEMENTS
*************************/
.section {
  border: 2.5px dashed var(--clr-retro-orange);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 19px, var(--clr-bg-main) 22px);
}
.card {
  background: var(--clr-retro-cream);
  border: 1.8px solid var(--clr-retro-blue);
  border-radius: var(--radius-inner);
  box-shadow: 0 2px 9px rgba(181,101,89,0.09);
  position: relative;
}
.card::before {
  content: "";
  display: block;
  position: absolute;
  left: 16px; top: 13px;
  width: 40px; height: 4px;
  background: var(--clr-accent);
  border-radius: 4px;
  opacity: 0.27;
  z-index: 0;
}

/**** Decorative Retro Dots for Section Titles ****/
h2 {
  position: relative;
  padding-left: 33px;
}
h2::before {
  content: "";
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--clr-retro-orange);
  position: absolute;
  left: 0; top: 3px;
  box-shadow: 8px 2px 0 var(--clr-retro-brick), 15px 6px 0 var(--clr-retro-green);
  z-index: 1;
}

/***********
  FORMS (contact)
***********/
input, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 9px 13px;
  border: 2px solid var(--clr-retro-blue);
  border-radius: 6px;
  margin-bottom: 16px;
  background: #fff;
  color: var(--clr-text-main);
  transition: border-color 0.17s;
}
input:focus, textarea:focus {
  border-color: var(--clr-retro-orange);
  outline: none;
}
label {
  font-family: var(--font-vintage);
  color: var(--clr-retro-blue);
  font-size: 1rem;
  margin-bottom: 5px;
  display: block;
}

/********************************
    LIST SPACING, GENERAL GAP
********************************/
ul, ol {
  margin-bottom: 24px;
}
ul li, ol li {
  margin-bottom: 8px;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}

/********************************
    MICRO-INTERACTIONS
********************************/
.card, .testimonial-card, .feature-item, .faq-item, .team-member {
  transition: box-shadow 0.2s, border 0.17s;
}
.card:hover, .feature-item:hover, .faq-item:hover, .team-member:hover {
  box-shadow: 0 6px 19px rgba(44,67,111,0.12);
  border-color: var(--clr-retro-orange);
}

/********************************
    CLEAR VISUAL HIERARCHY
********************************/
.section h2 {
  margin-bottom: 0.6em;
}
.section p {
  margin-bottom: 0.7em;
}

/********************************
    NO OVERLAPPING ENFORCED
********************************/
.card-container > *,
.content-grid > *,
.section > *,
.content-wrapper > *,
.testimonial-card:not(:last-child), .card:not(:last-child),
.feature-item:not(:last-child), .faq-item:not(:last-child) {
  margin-bottom: 20px;
}
/***** Prevent overlapping for last children *****/
.card-container > *:last-child, .content-grid > *:last-child, .section > *:last-child, .content-wrapper > *:last-child {
  margin-bottom: 0;
}

/********************************
      ACCORDION FAQ (if JS)
********************************/
.faq-item h3 {
  cursor: pointer;
  color: var(--clr-retro-green);
  font-size: 1.1rem;
  margin-bottom: 7px;
  transition: color 0.17s;
}
.faq-item h3:hover { color: var(--clr-retro-orange); }

/********************************
    RETRO CHECKBOX STYLING
********************************/
input[type='checkbox'] {
  accent-color: var(--clr-retro-orange);
}

/********************************
    THANK-YOU PAGE
********************************/
.thankyou-icon {
  font-size: 2.3rem;
  color: var(--clr-retro-brick);
  margin-bottom: 17px;
}
/*******************************
    PRINT STYLES
*******************************/
@media print {
  *, *:before, *:after {
    color: #000 !important;
    background: #fff !important;
    box-shadow: none !important;
  }
  nav, .mobile-menu, .cookie-banner, .cookie-modal, .footer-social {
    display: none !important;
  }
}
