/* 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-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;
}
body {
  line-height: 1.5;
  background: #FFF;
  color: #3B4252;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}
a {
  color: #7AC246;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #3B4252;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
  color: #3B4252;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #3B4252;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #3B4252;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #3B4252;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #3B4252;
}
p, .body-text {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
  background: #F8E9C1;
  border-left: 5px solid #7AC246;
  border-radius: 10px;
  margin: 0 0 10px 0;
  padding: 18px 20px 16px 20px;
  position: relative;
}

/* BUTTONS CTAs */
.cta-primary {
  display: inline-block;
  background: #7AC246;
  color: #3B4252;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 28px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 10px rgba(122, 194, 70, 0.08);
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: #619734;
  color: #fff;
  box-shadow: 0 4px 18px rgba(122, 194, 70, 0.20);
  outline: none;
}

/* NAVIGATION */
header {
  background: #FFF;
  box-shadow: 0 2px 24px rgba(59,66,82,0.08);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  position: relative;
  z-index: 20;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #3B4252;
  padding: 8px 10px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F8E9C1;
  color: #7AC246;
}
.nav-bar a img {
  height: 44px;
  width: auto;
  border-radius: 0;
}
.mobile-menu-toggle {
  display: none;
  background: #F8E9C1;
  color: #3B4252;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.7rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(59,66,82,0.10);
  margin-left: auto;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #7AC246;
  color: #fff;
}
@media (max-width: 1020px) {
  .main-nav {
    gap: 14px;
  }
  .nav-bar {
    gap: 0;
  }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: rgba(59,66,82,0.96);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFF;
  font-size: 2.2rem;
  margin: 22px 22px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F8E9C1;
  color: #7AC246;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 44px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  transition: background 0.2s, color 0.2s;
  width: 85%;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F8E9C1;
  color: #3B4252;
}

/* MAIN LAYOUT SECTIONS  */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.accent-bg {
  background: #F8E9C1;
  border-radius: 34px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(59,66,82,0.09);
  padding: 26px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 26px rgba(59,66,82,0.16);
  transform: translateY(-3px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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: 12px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(59,66,82,0.07);
  padding: 24px 22px;
  margin-bottom: 20px;
  max-width: 670px;
  min-width: 0;
  transition: box-shadow 0.22s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(122,194,70,0.12);
  transform: scale(1.015);
}
.author-info {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #7AC246;
  font-weight: 600;
  margin-bottom: 4px;
}

/* FEATURE, SERVICE, PROJECT GRIDs */
.features-section .feature-grid,
.features-grid, .benefits-grid, .service-list, .workshop-overview, .project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-item, .benefit-item, .service-item, .workshop-item, .project-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 1.5px 12px rgba(59,66,82,0.07);
  padding: 22px 18px 18px 18px;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 340px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.feature-item img, .benefit-item img, .service-item img, .workshop-item img, .project-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature-item:hover, .benefit-item:hover,
.service-item:hover, .workshop-item:hover, .project-item:hover {
  box-shadow: 0 8px 32px rgba(122,194,70,0.10);
  transform: translateY(-2px) scale(1.02);
}
.price-tag {
  background: #F8E9C1;
  color: #7AC246;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 600;
  padding: 4px 14px;
  margin-bottom: 8px;
  display: inline-block;
}

/***** Responsive Flexbox Utilities *****/
@media (min-width: 769px) {
  .feature-grid, .service-list, .workshop-overview, .project-list, .features-grid, .benefits-grid {
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .content-grid, .features-section .feature-grid, .feature-grid,
  .benefits-grid, .service-list, .workshop-overview, .project-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 98vw;
    padding: 18px 8px;
  }
  .nav-bar, .footer-nav, .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .main-nav {
    gap: 4px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/****** HERO SECTIONS ***/
.hero-section, .services-hero, .workshops-hero, .projects-hero, .thank-you, .about-philosophy, .contact-hero {
  background: #F8E9C1;
  border-radius: 34px;
  margin-top: 30px;
  text-align: left;
}
.hero-section .content-wrapper,
.services-hero .content-wrapper,
.projects-hero .content-wrapper,
.thank-you .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero-section h1, .services-hero h1, .workshops-hero h1, .projects-hero h1, .thank-you h1, .about-philosophy h1 {
  color: #3B4252;
  font-size: 2.2rem;
}

/***** SPECIAL BLOCKS & UTILITIES *****/
.footer-logo img {
  width: 48px;
  height: auto;
  border-radius: 0;
}
.footer-nav {
  display: flex;
  gap: 12px;
  margin: 18px 0 10px 0;
  flex-wrap: wrap;
  font-size: 1.05rem;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
  color: #3B4252;
  align-items: center;
  margin-bottom: 14px;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 22px;
}
.footer-copy {
  font-size: 0.97rem;
  color: #888;
  margin: 14px 0 3px 0;
}
footer {
  margin-top: 40px;
  background: #F8E9C1;
  border-radius: 34px 34px 0 0;
  padding-top: 32px;
  padding-bottom: 24px;
  box-shadow: 0 -3px 18px rgba(59,66,82,0.06);
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 20000;
  background: #F8E9C1;
  color: #3B4252;
  display: flex;
  align-items: center;
  padding: 22px 20px;
  box-shadow: 0 -2px 18px rgba(59,66,82,0.13);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  gap: 22px;
  justify-content: center;
  animation: fadeInUp 0.6s ease;
}
.cookie-banner p {
  margin: 0 12px 0 0;
  font-size: 1rem;
}
.cookie-btn-row {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  background: #7AC246;
  color: #3B4252;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 8px rgba(122,194,70,0.11);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #619734;
  color: #FFF;
}
.cookie-banner .cookie-settings-btn {
  background: #FFF;
  border: 2px solid #7AC246;
  color: #7AC246;
  font-weight: 500;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #f3f6ef;
  color: #619734;
}

/***** COOKIE MODAL *****/
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 30000;
  background: rgba(59,66,82,0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.36s ease-in;
}
.cookie-modal-content {
  background: #FFF;
  color: #3B4252;
  border-radius: 22px;
  padding: 44px 32px 30px 32px;
  max-width: 370px;
  width: 90vw;
  box-shadow: 0 10px 44px rgba(59,66,82,0.19);
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  animation: fadeInUp 0.52s cubic-bezier(.68,-0.55,.27,1.55);
}
.cookie-modal-content h3 {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
}
.cookie-modal-content ul {
  margin-left: 0;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.cookie-toggle {
  width: 40px;
  height: 24px;
  position: relative;
  background: #F8E9C1;
  border-radius: 12px;
  border: 2px solid #7AC246;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #7AC246;
  border-radius: 50%;
  transition: transform 0.25s;
}
.cookie-toggle input:checked + .cookie-toggle::after {
  transform: translateX(16px);
  background: #3B4252;
}
.cookie-modal-content .close-cookie-modal {
  position: absolute;
  top: 12px; right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #3B4252;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-modal-content .close-cookie-modal:hover,
.cookie-modal-content .close-cookie-modal:focus {
  background: #F8E9C1;
}
.cookie-modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal-footer button {
  background: #7AC246;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 16px;
  padding: 8px 18px;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.19s;
  box-shadow: 0 2px 14px rgba(122,194,70,0.07);
}
.cookie-modal-footer button:last-child {
  background: #FFF;
  color: #7AC246;
  border: 2px solid #7AC246;
  font-weight: 600;
}
.cookie-modal-footer button:hover, .cookie-modal-footer button:focus {
  background: #619734;
  color: #FFF;
}
.cookie-modal-footer button:last-child:hover, .cookie-modal-footer button:last-child:focus {
  background: #f7faee;
  color: #619734;
}

@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(48px); } to { opacity:1; transform: translateY(0); }
}

/***** GENERAL SPACING & FLEX RULES *****/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** MEDIA QUERIES RESPONSIVE *****/
@media (max-width: 650px) {
  .hero-section, .services-hero, .workshops-hero, .projects-hero, .thank-you, .about-philosophy, .contact-hero {
    margin-top: 16px;
    padding: 14px 3vw;
    border-radius: 20px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.19rem; }
  .footer-logo img { width:38px; }
  .footer-nav,
  .footer-contact,
  .card-container,
  .features-section .feature-grid,
  .features-grid,
  .service-list, .workshop-overview, .project-list,
  .benefits-grid {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .feature-item, .service-item, .workshop-item, .project-item, .benefit-item {
    max-width: 100%;
  }
  .cta-primary { font-size: 1rem; padding: 12px 16px; }
  .cookie-modal-content { padding: 22px 6vw 16px 6vw; }
}

/* --- Special Styling for Forms, Thank-you, Etc. --- */
label, input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
input, textarea, select {
  border: 1.5px solid #F8E9C1;
  border-radius: 16px;
  padding: 10px 16px;
  margin-bottom: 8px;
  transition: border 0.2s, box-shadow 0.2s;
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  border-color: #7AC246;
  box-shadow: 0 2px 10px rgba(122,194,70,0.13);
  outline: none;
}

/***** OVERLAY & MODAL SHADOWS *****/
.overlay, .modal {
  background: rgba(59,66,82,0.48);
}

/***** Z-INDEX MANAGEMENT *****/
header { z-index: 30; }
.mobile-menu { z-index: 9999; }
.cookie-banner { z-index: 20000; }
.cookie-modal { z-index: 30000; }

/***** MISC. UI POLISH *****/
::-webkit-input-placeholder{ color: #AAA;}
::-moz-placeholder{ color: #AAA; }
:-ms-input-placeholder{ color: #AAA; }
::placeholder{ color: #AAA; }
table { border-collapse: collapse; width: 100%; }
th, td { padding: 10px 14px; border-bottom: 1px solid #F8E9C1;}
code, pre { background: #F8E9C1; border-radius: 6px; padding: 2px 6px; }
hr { border: none; border-top: 2px solid #F8E9C1; margin: 30px 0; }

/* --- Accent color links in footer --- */
.footer-nav a { color: #3B4252; font-weight: 500; }
.footer-nav a:hover { color:#7AC246; text-decoration: underline; background: #F8E9C1; }

/* --- No overlapping, breathing room ensured by large padding/margin/gaps --- */

/* -----------------------------------------------------
   Noto: For actual Montserrat/Roboto fonts, host locally or via Google Fonts
   @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Roboto:wght@400;500;700&display=swap');
----------------------------------------------------- */
