/* ===== 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, main, 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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F9F6F2;
  color: #2B2D42;
  font-family: 'Roboto', Arial, sans-serif;
  scroll-behavior: smooth;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: 1.5;
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
}

/* ===== BRAND VARIABLES & UTILS ===== */
:root {
  --primary: #B12A34;
  --primary-dark: #981e27;
  --secondary: #2B2D42;
  --accent: #F9F6F2;
  --yellow: #FFD600;
  --blue: #49B5F6;
  --green: #7AD798;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --radius: 22px;
  --shadow-card: 0 4px 18px rgba(177, 42, 52, 0.14);
  --shadow-fun: 0 0 0 6px #ffd60044;
  --transition: 0.21s cubic-bezier(.86,-0.53,.22,1.7);
}

/* ===== BODY TYPOGRAPHY & PLAYFUL FONTS ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary);
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 16px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #2B2D42;
}
h4, h5 {
  font-size: 1.07rem;
}
p,
li,
span,
input,
button {
  font-family: var(--font-body);
}
p, li, .price {
  font-size: 1rem;
  margin-bottom: 12px;
}
.body-accent {
  color: var(--primary);
  font-weight: bold;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===== HEADER & MAIN NAVIGATION ===== */
header {
  background: var(--accent);
  box-shadow: 0 2px 12px #0001;
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 84px;
}
header nav {
  display: flex;
  gap: 20px;
  font-family: var(--font-display);
}
header nav a {
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 14px;
  font-size: 1.05rem;
  color: var(--secondary);
  position: relative;
  transition: background var(--transition), color var(--transition);
}
header nav a:hover,
header nav a:focus {
  background: var(--primary);
  color: #fff;
}
header a img {
  max-height: 46px;
}

.cta-btn {
  font-family: var(--font-display);
  background: var(--primary);
  color: #fff;
  border-radius: 40px;
  padding: 12px 32px;
  font-size: 1.12rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 22px rgba(177,42,52,0.13);
  border: 2px solid transparent;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-left: 16px;
  position: relative;
  overflow: hidden;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--yellow);
  color: var(--primary);
  transform: scale(1.06) rotate(-1deg);
  box-shadow: var(--shadow-fun);
  border: 2px solid var(--primary);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 4px 16px;
  margin-left: 16px;
  border: none;
  z-index: 103;
  transition: background var(--transition);
}
.mobile-menu-toggle:active {
  background: var(--primary-dark);
}
.mobile-menu {
  /* Initially hidden */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--accent);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.86,-0.53,.22,1.7);
  box-shadow: 2px 0 12px #0002;
  padding: 0 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: var(--yellow);
  color: var(--primary);
  align-self: flex-end;
  border-radius: 12px;
  border: none;
  margin-top: 24px;
  margin-bottom: 32px;
  padding: 4px 18px;
  transition: background var(--transition);
}
.mobile-menu-close:active {
  background: #fff1a6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.25rem;
  width: 90vw;
  margin-bottom: 30px;
}
.mobile-nav a {
  padding: 12px 0;
  color: var(--secondary);
  border-bottom: 2px dashed var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--primary);
  background: #fff3f5;
  border-radius: 12px;
}
@media (max-width: 1100px) {
  header .container {
    gap: 18px;
    min-height: 75px;
  }
  header nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  header .container nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===== HERO & SECTION STYLES ===== */
section {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
@media (max-width: 700px) {
  section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===== FEATURE GRID, CARDS, FLEX CONTAINERS ===== */
.features-grid,
.service-list,
.workshop-list,
.course-grid,
.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.features-grid > div,
.service-list > div,
.workshop-list > div,
.course-grid > div {
  background: #fff7f6;
  border-radius: var(--radius);
  box-shadow: 0 3px 12px #fca1b71a;
  padding: 26px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.features-grid > div:hover,
.service-list > div:hover,
.workshop-list > div:hover,
.course-grid > div:hover {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 34px #ffc20044;
  z-index: 2;
}
.features-grid img,
.features-grid svg {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  filter: drop-shadow(0px 2px 0px #FFD600aa);
}
.price {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--primary);
  font-weight: 700;
  background: #fff1a6;
  padding: 3px 14px;
  border-radius: 13px;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .features-grid,
  .service-list,
  .workshop-list,
  .course-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff7fa;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  min-width: 230px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 12px 32px #ffd60036;
  transform: scale(1.05) rotate(1.5deg);
  z-index: 2;
}
.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;
    gap: 18px;
    align-items: flex-start;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 22px 20px;
  margin-bottom: 20px;
  background: #fffde7;
  border-radius: var(--radius);
  box-shadow: 0 2px 18px #ffcc0044;
  max-width: 440px;
  margin-right: 24px;
  border-left: 6px solid var(--primary);
  position: relative;
  z-index: 1;
  font-size: 1.07rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card p {
  color: var(--secondary);
  font-size: 1.09rem;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 0.99rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 4px;
}
.testimonial-card:hover {
  background: #fff6cb;
  transform: scale(1.04) rotate(-1.5deg);
  box-shadow: 0 8px 34px #ffeb3b22;
}
@media (max-width: 900px) {
  .testimonial-card {
    margin-right: 0;
    max-width: 100%;
  }
}

/* ===== FAQ ACCORDION ===== */
.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
}
.faq-accordion > div {
  flex: 1 1 292px;
  min-width: 220px;
  background: #f5eeff;
  border-radius: 18px;
  box-shadow: 0 2px 14px #ccb8fb1e;
  padding: 20px 18px;
  margin-bottom: 16px;
}
.faq-accordion h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 9px;
  font-family: var(--font-display);
}
.faq-accordion p {
  color: var(--secondary);
  font-size: 0.98rem;
}
@media (max-width: 768px) {
  .faq-accordion {
    flex-direction: column;
    gap: 14px;
  }
}

/* ===== FORM, INPUTS & BUTTONS ===== */
form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 12px;
}
input[type="email"] {
  border: 2px solid var(--primary);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 1rem;
  background: #fff8fb;
  transition: border var(--transition), box-shadow var(--transition);
  width: 220px;
}
input[type="email"]:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px #ffe54460;
}
button[type="submit"],
form button, input[type="submit"] {
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 10px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  transition: background var(--transition), transform var(--transition);
  border: none;
  box-shadow: 0 3px 16px rgba(177,42,52,0.14);
}
button[type="submit"]:hover,
form button:hover,
button[type="submit"]:focus,
form button:focus {
  background: var(--yellow);
  color: var(--primary);
  transform: scale(1.07);
}

/* ===== FOOTER ===== */
footer {
  background: var(--secondary);
  color: var(--accent);
  padding: 40px 0 18px 0;
  margin-top: 36px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.footer-columns nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-columns nav a {
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.99rem;
  opacity: 0.83;
  transition: opacity 0.18s, color 0.17s;
}
.footer-columns nav a:hover {
  opacity: 1;
  color: var(--yellow);
}
.footer-columns img {
  max-width: 54px;
  margin-bottom: 16px;
}
.contact-info {
  font-size: 0.97rem;
  opacity: 0.9;
}
.footer-bottom {
  border-top: 1.5px solid #fff2;
  padding-top: 15px;
  font-size: 0.93rem;
  text-align: center;
  color: #fff9;
}
@media (max-width: 900px) {
  .footer-columns {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
}

/* ===== PLAYFUL MICRO ANIMATIONS & HOVER EFFECTS ===== */
a:not(.cta-btn):not(.mobile-menu-close):hover {
  color: var(--primary);
  text-decoration: underline wavy var(--yellow);
  text-decoration-thickness: 2px;
  background: #fffbe7;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

section, .card, .testimonial-card, .faq-accordion > div, .features-grid > div, .service-list > div {
  animation: sectionIn 0.46s cubic-bezier(.86,-0.53,.22,1.7);
}
@keyframes sectionIn {
  from { opacity: 0; transform: translateY(60px) scale(0.97); } 
  to   { opacity: 1; transform: none; }
}

input, button, .cta-btn {
  transition: box-shadow var(--transition), background var(--transition), color var(--transition), border var(--transition), transform var(--transition);
}

/* ===== COOKIE CONSENT BANNER & MODAL ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fffbe7;
  color: var(--secondary);
  border-top: 3px solid var(--yellow);
  box-shadow: 0 -3px 22px #ffc20044;
  z-index: 999;
  padding: 22px 18px 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.28s, transform 0.33s cubic-bezier(.86,-0.53,.22,1.7);
  font-size: 1.02rem;
}
.cookie-banner.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.cookie-banner p {
  flex: 1 1 210px;
  margin-bottom: 0;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-btn,
.cookie-settings-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 22px;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  border: none;
  margin-right: 3px;
  box-shadow: 0 2px 14px #b12a3420;
}
.cookie-btn:hover,
.cookie-btn:focus,
.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  background: var(--yellow);
  color: var(--primary);
}
.cookie-btn.reject {
  background: #eee;
  color: var(--primary);
  border: 1.5px dashed var(--primary);
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #ffe287;
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1100;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #2B2D4277;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.25s;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px #0002;
  padding: 34px 26px;
  min-width: 320px;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalPop 0.19s cubic-bezier(.86,-0.53,.22,1.7);
}
@keyframes modalPop {
  from { transform: scale(0.88) translateY(48px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.34rem;
  margin-bottom: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.42rem;
  color: var(--primary);
  background: #fff1a6;
  border-radius: 8px;
  padding: 2px 10px;
  border: none;
  font-family: var(--font-display);
  transition: background var(--transition);
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #ffe35e;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.06rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-category input[type="checkbox"] {
  width: 24px; height: 24px;
  accent-color: var(--primary);
  border-radius: 6px;
  margin-right: 8px;
}
.cookie-category label {
  font-family: var(--font-body);
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #ddd;
}
.cookie-category.essential input[type="checkbox"]:disabled {
  background: #ddd;
}
@media (max-width: 700px) {
  .cookie-modal {
    min-width: unset;
    padding: 19px 8px 32px 8px;
  }
}

/* ===== RESPONSIVE LAYOUT ===== */
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.26rem;
  }
  .features-grid > div,
  .service-list > div,
  .workshop-list > div,
  .course-grid > div {
    min-width: 145px;
    padding: 15px 7px;
  }
  .card {
    padding: 12px 7px;
    min-width: 140px;
  }
  .content-wrapper {
    gap: 8px;
  }
  .footer-columns {
    gap: 14px;
  }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
  background: #FFD60014;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

/* ===== END ===== */
