/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #1D3C34;
  line-height: 1.6;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #F35959;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #E7CBA9;
  outline-offset: 2px;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* BRAND COLORS (Vibrant/Energetic Tweaks) */
:root {
  --fc-primary: #1D3C34;
  --fc-secondary: #E7CBA9;
  --fc-accent: #B6D8AF;
  --fc-electric1: #FF7A5A;
  --fc-electric2: #4A90E2;
  --fc-electric3: #FFD200;
  --fc-white: #fff;
  --fc-dark: #192724;
  --fc-link: #007FFF;
  --fc-danger: #FF2465;
  --fc-shadow: 0 4px 24px rgba(29,60,52,0.10), 0 1.5px 8px rgba(255,122,90,0.05);
  --fc-radius: 20px;
  --fc-radius-small: 12px;
  --fc-gap: 24px;
  --fc-gap-small: 16px;
}

/* GLOBAL STRUCTURE */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-transform: none;
  color: var(--fc-primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.13;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.33rem;
  font-weight: 700;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
.subheadline {
  font-size: 1.18rem;
  color: var(--fc-electric1);
  margin-bottom: 18px;
  font-weight: 500;
}

p, ul, ol, li, span, a {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--fc-dark);
}
strong { font-weight: 700; }
em { font-style: italic; }
ul, ol {
  margin-bottom: 18px;
  padding-left: 21px;
}
li {
  margin-bottom: 10px;
}

/* HEADER STYLES */
header {
  background: var(--fc-white);
  box-shadow: 0 2px 10px rgba(76, 200, 136, 0.06);
  padding: 0;
  position: relative;
  z-index: 70;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img {
  height: 44px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fc-primary);
  padding: 6px 0;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--fc-electric1);
  border-bottom: 2px solid var(--fc-electric1);
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 32px;
  background: var(--fc-electric1);
  color: var(--fc-white) !important;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: var(--fc-radius-small);
  box-shadow: 0 2px 8px 0 rgba(255, 122, 90, 0.09);
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: background 0.14s, transform 0.18s;
  cursor: pointer;
  outline: none;
  margin-left: 22px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--fc-link);
  color: var(--fc-white) !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 20px var(--fc-electric1, #FF7A5A, 0.10);
}

.mobile-menu-toggle {
  display: none;
  background: var(--fc-electric1);
  color: var(--fc-white);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 49px;
  height: 49px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 14px;
  z-index: 108;
  transition: background 0.18s, box-shadow 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--fc-electric2);
  box-shadow: 0 2px 8px #B6D8AF33;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--fc-white);
  z-index: 110;
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 0 32px 0 #1d3c3422;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: var(--fc-electric1);
  background: transparent;
  border: none;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--fc-electric2);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  padding: 13px 0 10px 0;
  color: var(--fc-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--fc-electric1);
  border-bottom: 2px solid var(--fc-electric1);
}

@media (max-width: 1120px) {
  .container { max-width: 1005px; }
}
@media (max-width: 900px) {
  header .container { max-width: 100%; }
  .main-nav a { font-size: 1rem; }
  .cta-btn { font-size: 1rem; }
}
@media (max-width: 850px) {
  .container { max-width: 94vw; }
  .main-nav { gap: 10px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle { display: flex; }
  .cta-btn {
    margin-left: 10px;
    padding: 10px 20px;
    font-size: 0.97rem;
  }
}

@media (max-width: 520px) {
  header .container {
    flex-direction: row !important;
    padding: 4px 9px;
  }
  .cta-btn { padding: 9px 13px; font-size: .93rem; }
  .logo img { height: 38px; }
}


/* HERO SECTION */
.hero {
  background: var(--fc-secondary);
  width: 100%;
  padding: 0;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px #ffd20011;
}
.hero .container,
.hero .content-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 12px 30px 12px;
  gap: 12px;
}
.hero h1 {
  color: var(--fc-primary);
  font-size: 2.4rem;
  text-shadow: 0 2px 10px #fff2e7bb;
  margin-bottom: 4px;
}
.hero .subheadline {
  color: var(--fc-electric2);
  margin-bottom: 20px;
  max-width: 650px;
}
.hero .cta-btn {
  margin-top: 10px;
  font-size: 1.08rem;
}

@media (max-width: 768px) {
  .hero .container, .hero .content-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0;
  }
  .hero h1 { font-size: 2rem; }
  .hero .subheadline { font-size: 1rem; }
}
@media (max-width: 520px) {
  .hero .content-wrapper { padding-top: 25px; }
  .hero h1 { font-size: 1.25rem; }
}


/* SECTION GENERAL STYLES */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--fc-white);
  border-radius: var(--fc-radius);
  box-shadow: 0 2px 12px rgba(180,216,175,0.09);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--fc-gap-small);
}

/* FLEX LAYOUTS – Obligatory Patterns */
.features {
  background: #fff9f6;
  border-radius: var(--fc-radius);
}
.features .content-wrapper {
  gap: 20px;
}
.feature-grid,
ul.feature-grid, .workshop-list, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  list-style: none;
  margin: 0 0 15px 0;
  width: 100%;
}
.feature-grid > li, .workshop-list > li, .services-list > li {
  background: var(--fc-accent);
  border-radius: var(--fc-radius);
  box-shadow: 0 2px 16px #b6d8af22;
  padding: 26px 24px 20px 24px;
  flex: 1 1 250px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  transition: box-shadow 0.16s, transform 0.18s;
  position: relative;
  margin-bottom: 20px;
}
.feature-grid li img {
  width: 48px;
  margin-bottom: 4px;
}
.feature-grid h3 {
  color: var(--fc-electric1);
  font-size: 1.16rem;
}
.feature-grid li:hover, .workshop-list li:hover, .services-list li:hover {
  box-shadow: 0 8px 36px #ff7a5a22;
  transform: translateY(-6px) scale(1.04);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--fc-accent);
  border-radius: var(--fc-radius);
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--fc-shadow);
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 8px 36px #ff7a5a26;
  transform: translateY(-2px) scale(1.04);
}

.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe7;
  border-radius: var(--fc-radius-small);
  box-shadow: 0 2px 12px #ffd20022;
  margin-right: 20px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 260px;
  border: 2.5px solid var(--fc-electric3);
}
.testimonial-card p {
  color: #211a10;
  font-size: 1.12rem;
  line-height: 1.5;
}
.testimonial-card span {
  align-self: flex-end;
  font-size: 1rem;
  color: var(--fc-primary);
  font-weight: bold;
  margin-top: 6px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

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

.service-highlights ul, .workshop-benefits ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  list-style: disc;
}

@media (max-width: 1024px) {
  .feature-grid > li, .workshop-list > li, .services-list > li, .testimonial-card {
    min-width: 220px;
    flex: 1 1 170px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .workshop-list, .services-list, .testimonial-slider {
    gap: 12px;
  }
  .feature-grid li, .workshop-list li, .services-list li, .testimonial-card {
    min-width: 140px;
    padding: 15px 9px 13px 9px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .workshop-list, .services-list, .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }
  .about .content-wrapper, .contact .content-wrapper, .services .content-wrapper {
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* ABOUT, CONTACT, SERVICES, WORKSHOPS */
.about, .contact, .services {
  background: #f7fff7;
}
.about h2, .contact h2, .services h2 {
  color: var(--fc-electric2);
}
.about ul, .services ul, .workshop-list ul {
  list-style: disc inside;
  font-size: 1rem;
  margin-left: 0;
  padding-left: 0;
}
.about ul > li,
.services ul > li,
.workshop-list ul > li {
  padding-left: 6px;
  margin-bottom: 8px;
}
.contact-info, .contact-details {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-info ul, .contact-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info li, .contact-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--fc-primary);
  font-weight: 500;
}
.contact-info img, .contact-details img { width: 22px; margin-right: 8px; }

@media (max-width: 800px) {
  .contact-info, .contact-details { flex-direction: column; gap: 14px; }
}

/* CTA SECTION */
.cta {
  background: linear-gradient(90deg, #FFD200 18%, #B6D8AF 83%);
  border-radius: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 18px #ffd20026;
}
.cta .content-wrapper { align-items: center; gap: 4px; }
.cta-btn {
  margin: 0;
}

/* FOOTER */
footer {
  background: var(--fc-primary);
  color: var(--fc-white);
  padding: 36px 0 18px 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  margin-top: 30px;
  position: relative;
  box-shadow: 0 -4px 18px #1D3C3450;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin: 8px 0;
}
.footer-nav a {
  color: var(--fc-secondary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--fc-electric3);
}
footer p {
  color: var(--fc-white);
  font-size: 1rem;
  margin-top: 10px;
  opacity: .92;
}
footer img {
  height: 46px;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  footer .container, .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}

/* TEXT-SECTIONS & CONTENT */
.text-section {
  margin-bottom: 25px;
  font-size: 1.08rem;
  background: #f3f8ee;
  padding: 20px 16px;
  border-radius: var(--fc-radius-small);
  box-shadow: 0 2px 12px #4A90E222;
}
.text-section h3 { color: var(--fc-electric2); margin-top: 18px; font-size: 1.14rem; }

/* BUTTONS */
button, .cta-btn, input[type="submit"] {
  border: none;
  border-radius: var(--fc-radius-small);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, transform 0.13s;
}
button:focus, .cta-btn:focus { outline: 2px solid #FFD200; }

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #fffbe8;
  color: var(--fc-dark);
  border-top: 3.5px solid var(--fc-electric1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  box-shadow: 0 -8px 38px #FFD20037;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  gap: 24px;
  animation: banner-appear 0.8s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes banner-appear {
  from { transform: translateY(50px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
}
.cookie-banner button {
  min-width: 94px;
  padding: 8px 16px;
  font-size: 0.98rem;
  border-radius: 10px;
  background: var(--fc-electric1);
  color: #fff;
  font-weight: 700;
  border: none;
  transition: background 0.18s, box-shadow 0.12s;
  box-shadow: 0 1px 6px #1d3c340a;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--fc-electric2);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: var(--fc-electric3);
  color: #3a3a13;
  border: 1.5px solid var(--fc-accent);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--fc-accent);
  color: #192724;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 10001;
  background: #222b2d88;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fffde9;
  border-radius: 22px;
  max-width: 428px;
  min-width: 270px;
  padding: 36px 28px 26px 28px;
  box-shadow: 0 10px 44px #B6D8AF44;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-appear 0.44s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes modal-appear {
  from { transform: scale(0.88) translateY(32px); opacity:0;}
  to { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal-content h2 {
  font-size: 1.33rem;
  color: var(--fc-electric1);
  padding-bottom: 0;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--fc-electric1);
  font-size: 1.54rem;
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--fc-electric2);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--fc-primary);
  font-weight: 700;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--fc-electric1);
  width: 19px;
  height: 19px;
}
.cookie-category.essential label {
  color: #888a4e;
  font-style: italic;
}
.cookie-actions-modal {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-actions-modal button {
  min-width: 86px;
  padding: 7px 14px;
  border-radius: 10px;
  border: none;
  font-size: 0.98rem;
  background: var(--fc-electric1);
  color: #fff;
  font-weight: 700;
}
.cookie-actions-modal .cookie-settings {
  background: var(--fc-electric3);
  color: #1D3C34;
  border: 1.5px solid var(--fc-accent);
}

@media (max-width: 600px) {
  .cookie-modal-content { max-width: 96vw; padding: 25px 8px 18px 8px; }
  .cookie-banner { flex-direction: column; gap: 13px; align-items: flex-start; }
}

/* MICRO-INTERACTIONS */
.card, .feature-grid > li, .workshop-list > li, .services-list > li, .testimonial-card, .cta-btn, .main-nav a, .mobile-nav a, .footer-nav a {
  transition: box-shadow 0.18s, transform 0.14s, color 0.16s, background 0.18s;
}
.card:hover, .feature-grid > li:hover, .workshop-list > li:hover, .services-list > li:hover {
  box-shadow: 0 10px 34px #4A90E222, 0 1.5px 8px rgba(255,122,90,0.05);
  transform: translateY(-4px) scale(1.025);
}

/* SCROLLBAR (VIBRANT) */
::-webkit-scrollbar {
  width: 10px;
  background: var(--fc-accent);
}
::-webkit-scrollbar-thumb {
  background: var(--fc-electric1);
  border-radius: 5px;
}

/* RESPONSIVE FONT SIZES */
@media (max-width: 600px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.18rem; }
  .subheadline { font-size: 1rem; }
}

/* OVERRIDES – Ensuring NO Grid! */
[class*='grid'], [class*='col'] {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
}

/* Ensure Proper Spacing Between Content Cards/Sections */
section + section, .section + .section {
  margin-top: 24px;
}
.card + .card, .testimonial-card + .testimonial-card, .feature-grid > li + li, .workshop-list > li + li {
  margin-top: 20px;
}

/* Prevent Overlap, Ensure z-index spacing for overlays */
.mobile-menu, .cookie-modal, .cookie-banner { z-index: 9000; }

/* VIBRANT/Energetic EXTRAS (Electric strokes & highlights) */
.hero h1, h1, h2, h3 {
  position: relative;
}
.hero h1:after, h1:after, h2:after {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  border-radius: 3px;
  margin-top: 9px;
  background: linear-gradient(90deg, var(--fc-electric1) 45%, var(--fc-electric2) 60%, var(--fc-electric3) 100%);
  opacity: .48;
}

/* Hide ::after on very small screens */
@media (max-width: 600px) {
  .hero h1:after, h1:after, h2:after { width: 36px; height: 3px; }
}

.card, .feature-grid > li, .testimonials {
  border-radius: var(--fc-radius-small);
}

/* Miscellaneous */
::-moz-selection { background: #ff7a5a22; }
::selection { background: #ff7a5a22; }

/* END STYLE */
