/* CSS RESET & NORMALIZATION */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; scroll-behavior: smooth; }
body, button, input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #274432;
  background: #FFFFFF;
  line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; border: 0; }
ul, ol { margin-left: 1.2em; margin-bottom: 16px; }
li { margin-bottom: 8px; }
a { color: #B89B2A; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #345C43; text-decoration: underline; }

/* ROOT COLORS & FONTS (with fallbacks) */
:root {
  --color-primary: #274432;
  --color-secondary: #E7EFE3;
  --color-accent: #B89B2A;
  --color-vibrant1: #33E37B;
  --color-vibrant2: #1CCAD8;
  --color-electic-pink: #ff007c;
  --color-white: #FFFFFF;
  --color-light: #F4F8F6;
  --color-dark: #0D1F14;
  --color-shadow: rgba(52, 92, 67, 0.07);
  --font-display: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
}
.text-section {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: none;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: 32px 0 32px 0; margin-bottom: 36px; }
  .container { padding: 0 10px; }
  .text-section { text-align: left; padding: 0; }
}

/* BRANDING & HERO */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
h1 { font-size: 2.75rem; line-height: 1.1; color: var(--color-electic-pink); text-shadow: 0 6px 30px #B89B2A33; }
h2 { font-size: 2rem; color: var(--color-vibrant1); }
h3 { font-size: 1.4rem; color: var(--color-primary); }
h4 { font-size: 1.15rem; color: var(--color-vibrant2); }
.subtitle {
  font-family: var(--font-display);
  color: var(--color-vibrant2);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  font-weight: 600;
}

p, li, ul, ol {
  font-size: 1rem;
  color: var(--color-dark);
  font-family: var(--font-body);
}
strong { font-weight: 700; color: var(--color-electic-pink); }

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 32px;
  background: linear-gradient(90deg, var(--color-vibrant2) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  padding: 14px 38px;
  box-shadow: 0 4px 24px var(--color-shadow);
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.2s, transform 0.13s;
  margin-top: 12px;
  margin-bottom: 0;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--color-electic-pink) 0%, var(--color-vibrant1) 100%);
  color: var(--color-white);
  box-shadow: 0 8px 32px 0 var(--color-shadow), 0 0 4px 0 var(--color-accent);
  transform: translateY(-2px) scale(1.02);
  outline: none;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-electic-pink);
  background: var(--color-secondary);
  border: 2px solid var(--color-vibrant2);
  border-radius: 32px;
  padding: 10px 24px;
  transition: background 0.22s, border-color 0.22s;
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-vibrant2);
  color: var(--color-white);
  border-color: var(--color-electic-pink);
}
.text-link { color: var(--color-vibrant1); font-weight: 600; text-decoration: underline; transition: color 0.2s; }
.text-link:hover, .text-link:focus {
  color: var(--color-electic-pink);
}

/* HEADER LAYOUT & NAVIGATION */
header {
  width: 100%;
  position: sticky;
  z-index: 100;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 14px var(--color-shadow);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding: 0 20px;
  min-height: 74px;
}
header > a img { height: 44px; min-width: 120px; margin-right: 16px; }
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  flex: 1 1 auto;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.05rem;
  padding: 8px 14px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus { color: var(--color-electic-pink); background: var(--color-secondary); }
header .btn-primary {
  margin: 0 0 0 20px;
  padding: 10px 28px;
  font-size: 1rem;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: var(--color-vibrant1);
  cursor: pointer;
  margin-left: auto;
}
@media (max-width: 1024px) {
  header nav { gap: 12px; }
}
@media (max-width: 900px) {
  header nav { display: none !important; }
  header .btn-primary { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(39, 68, 50, 0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 0 0 0;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.76,.08,.24,.99);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--color-electic-pink);
  background: none;
  border: none;
  margin: 24px 28px 10px 0;
  cursor: pointer;
  align-self: flex-end;
  z-index: 6;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 22px;
  margin: 28px 0 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 9px 0;
  transition: color 0.2s, background 0.2s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus { color: var(--color-accent); background: #FFFFFF18; }

@media (min-width: 901px) {
  .mobile-menu { display: none !important; visibility: hidden; }
  .mobile-menu-toggle { display: none !important; }
}

/* FLEXBOX: SECTION/CARDS/SPACING RULES */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: var(--color-white); box-shadow: 0 4px 24px var(--color-shadow); border-radius: 20px; padding: 28px; display: flex; flex-direction: column; transition: box-shadow 0.28s; }
.card:hover, .card:focus-within { box-shadow: 0 8px 48px var(--color-vibrant1); }
.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: var(--color-secondary);
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--color-shadow);
  margin-bottom: 24px;
  min-width: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.testimonial-card blockquote {
  color: var(--color-primary);
  font-size: 1.14rem;
  font-style: italic;
  margin-bottom: 10px;
  background: none;
}
.testimonial-meta {
  color: var(--color-electic-pink);
  font-weight: 700;
  font-style: normal;
  font-family: var(--font-body);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURES GRID */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.feature {
  flex: 1 1 245px;
  background: var(--color-secondary);
  padding: 26px 22px;
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, background 0.18s;
  min-width: 200px;
}
.feature img { height: 44px; margin-bottom: 14px; }
.feature h3 { font-size: 1.16rem; margin-bottom: 8px; color: var(--color-vibrant2); }
.feature:hover, .feature:focus-within { box-shadow: 0 8px 32px var(--color-vibrant2); background: #fff; }

/* SERVICES LIST */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.service {
  flex: 1 1 320px;
  background: var(--color-light);
  border-radius: 14px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, background 0.18s;
  min-width: 220px;
  max-width: 370px;
}
.service h3 { color: var(--color-vibrant1); }
.service-price {
  color: var(--color-electic-pink);
  background: #fff2f9;
  font-size: 1rem;
  padding: 3px 9px;
  border-radius: 60px;
  margin-left: 8px;
  font-weight: 800;
}
.service:hover, .service:focus-within { box-shadow: 0 8px 36px var(--color-vibrant1); background: #fff; }

/* PROJECTS */
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.project-item {
  flex: 1 1 360px;
  background: var(--color-secondary);
  border-radius: 15px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, background 0.18s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 510px;
}
.project-item h3 { color: var(--color-electic-pink); }
.project-item:hover, .project-item:focus-within { box-shadow: 0 7px 42px var(--color-electic-pink); background: #fff; }

/* WORKSHOPS */
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.workshop-item {
  flex: 1 1 280px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 24px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, background 0.18s, color 0.18s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
  max-width: 350px;
}
.workshop-item h3, .workshop-item span {
  color: var(--color-vibrant1);
}
.workshop-price {
  color: var(--color-electic-pink);
  background: #fff2f9;
  border-radius: 60px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-left: 7px;
  padding: 3px 10px 2px 10px;
}
.workshop-item:hover, .workshop-item:focus-within { box-shadow: 0 6px 34px var(--color-vibrant2); color: var(--color-vibrant1); background: #fff; }

/* BLOG */
.blog-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.blog-post {
  flex: 1 1 300px;
  background: var(--color-secondary);
  border-radius: 13px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 22px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.24s, background 0.16s;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 400px;
}
.blog-post h3 { color: var(--color-accent); }
.blog-post:hover, .blog-post:focus-within { box-shadow: 0 8px 24px var(--color-accent); background: #fff; }

/* ADDRESS/CONTACT */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.address-map { margin-top: 22px; }
.address-map h3 { color: var(--color-vibrant2); }

/* CTA / Newsletter */
.text-section .btn-primary {
  margin-top: 12px;
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  padding: 38px 0 26px 0;
  position: relative;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer img {
  height: 48px;
  margin-bottom: 15px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus { color: var(--color-electic-pink); }
.contact-short {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-short p { color: #fff; font-size: 1rem; display: flex; align-items: center; gap: 8px; }

/* RESPONSIVENESS */
@media (max-width: 1024px) {
  .features-grid, .services-list, .blog-preview, .workshop-list, .project-list, .content-grid {
    gap: 17px;
  }
  .features-grid, .services-list, .project-list, .workshop-list {
    justify-content: center;
  }
  .project-item, .service, .feature, .workshop-item, .blog-post {
    max-width: 100%;
    min-width: unset;
    flex: 1 1 100%;
  }
}
@media (max-width: 900px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  header { gap: 10px; min-height: 68px; }
  .container { padding: 0 4px; max-width: 100vw; }
  .content-wrapper { gap: 22px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.05rem; }
  .btn-primary, .btn-secondary { padding: 9px 18px; font-size: 1rem; }
  section { padding: 22px 0; }
  .feature, .service, .project-item, .blog-post, .workshop-item { padding: 14px 8px; }
  .testimonial-card { padding: 13px 4px; }
  footer .content-wrapper { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.card, .feature, .service, .project-item, .workshop-item, .blog-post, .testimonial-card {
  transition: box-shadow 0.27s, background 0.17s, transform 0.14s;
}
.card:active, .feature:active, .service:active, .project-item:active, .workshop-item:active, .blog-post:active, .testimonial-card:active {
  transform: scale(0.96);
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-vibrant2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 24px;
  box-shadow: 0 -2px 24px var(--color-shadow);
  z-index: 9999;
  font-size: 1rem;
  animation: slideInUp 0.5s ease;
}
@keyframes slideInUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
#cookie-banner p { flex: 1; color: #fff; margin-right: 12px; }
#cookie-banner .btn-primary, #cookie-banner .btn-secondary {
  margin: 0 0 0 10px;
  font-size: 1rem;
  min-width: 120px;
  padding: 8px 20px;
}
#cookie-banner .btn-secondary { border: 2px solid #fff; background: transparent; color: #fff; }
#cookie-banner .btn-secondary:hover, #cookie-banner .btn-secondary:focus { background: #fff; color: var(--color-vibrant2); }

@media (max-width: 700px) {
  #cookie-banner { flex-direction: column; gap: 10px; align-items: flex-start; padding: 17px 10px; font-size: 0.95rem; }
  #cookie-banner p { margin: 0 0 8px 0; }
}
/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(13,31,20,0.70);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
#cookie-modal.open { opacity: 1; pointer-events: auto; }
#cookie-modal .cookie-modal-content {
  background: #fff;
  padding: 32px 28px 22px 28px;
  border-radius: 20px;
  box-shadow: 0 6px 40px var(--color-vibrant2);
  max-width: 380px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#cookie-modal h3 {
  color: var(--color-vibrant2);
  font-size: 1.3rem;
  font-family: var(--font-display);
  margin-bottom: 8px;
}
#cookie-modal ul { list-style: none; padding: 0; margin: 0; }
#cookie-modal li { padding: 7px 0 7px 0; display: flex; align-items: center; gap: 10px; }
.cookie-category-toggle {
  appearance: none;
  width: 36px; height: 20px;
  background: var(--color-secondary);
  border-radius: 30px;
  transition: background 0.23s;
  position: relative;
  outline: none;
  cursor: pointer;
}
.cookie-category-toggle:checked {
  background: var(--color-vibrant1);
}
.cookie-category-toggle:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px #0001;
  transition: left 0.2s;
}
.cookie-category-toggle:checked:after { left: 18px; background: var(--color-electic-pink); }
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 7px;
  justify-content: flex-end;
}
#cookie-modal .btn-primary, #cookie-modal .btn-secondary { min-width: 100px; }

/* MISC */
hr { border: 0; border-top: 2px solid var(--color-secondary); margin: 32px 0; }
table { border-collapse: collapse; width: 100%; }
th, td { border: 1px solid var(--color-secondary); padding: 10px; text-align: left; }

/* SCROLLBARS (energetic accent) */
::-webkit-scrollbar { width: 8px; background: #E7EFE3; }
::-webkit-scrollbar-thumb { background: var(--color-vibrant1); border-radius: 5px; }

/* FORMS (if present in future): */
input, textarea, select {
  font-size: 1rem;
  border-radius: 8px;
  padding: 10px 12px;
  border: 2px solid var(--color-vibrant2);
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 1px 6px var(--color-shadow);
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-electic-pink);
}
::placeholder { color: #aaa; }

/* Z-INDEXS: ensure overlays above header/menu */
header { z-index: 990; }
.mobile-menu { z-index: 2000; }
#cookie-banner, #cookie-modal { z-index: 3000; }

