/* ========================
   CSS RESET & BASIC 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;
}
html {
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background-color: #F9F6F2;
  color: #295149;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  margin: 0 0 1.5em 0;
  padding: 0;
}
a {
  color: #295149;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #FFB845;
  outline: none;
}
button, .btn {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* =========================
   BRAND FONTS & TYPOGRAPHY
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #295149;
  margin-bottom: 0.7em;
  line-height: 1.2;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.2rem;
}
@media (min-width: 600px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}
p, li {
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #295149;
  margin-bottom: 0.8em;
}
.subheadline {
  font-size: 1.15rem;
  color: #48867b;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.9;
  margin-bottom: 1.5em;
}
strong {
  font-weight: 700;
  color: #295149;
}

/* ===============================
   COLOR PALETTE (Pastel style)
   =============================== */
:root {
  --primary: #295149;
  --primary-light: #4e8c7a;
  --secondary: #E8E4DB;
  --accent: #FFB845;
  --accent-light: #ffe9bf;
  --bg: #F9F6F2;
  --bg-card: #FBFAF7;
  --border: #e5ddd5;
  --shadow: 0 4px 16px 0 rgba(233, 205, 150, 0.13), 0 1.5px 8px 0 rgba(68,105,99,0.06);
}

/* =================================
   LAYOUT & CONTAINERS (FLEXBOX ONLY)
   ================================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* Spacing & Section Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--bg-card);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.19s;
  min-width: 250px;
  flex: 1 1 250px;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 24px 0 rgba(233, 205, 150, 0.18), 0 4px 16px 0 rgba(68,105,99,0.10);
  transform: translateY(-3px) scale(1.015);
}
.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;
  background: #fffbe7;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 700px;
  border: 1px solid var(--border);
  font-size: 1.08rem;
}
.testimonial-card p {
  flex: 1 1 auto;
  margin-bottom: 0;
  color: #2a2a2a;
}
.testimonial-card div {
  color: #265d54;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.75;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
ul li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Hero Section */
.hero {
  background: linear-gradient(120deg, #e8f6f3 12%, #ffe9bf 100%);
  padding: 56px 0 64px 0;
  margin-bottom: 44px;
  text-align: center;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 10px 24px 0 rgba(255,184,69,0.11);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.85em;
}
.hero .btn {
  margin-top: 22px;
}

@media (min-width: 600px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

/* CTA section (reused for contact/gallery/guides) */
.cta, .cta-service, .cta-workshop, .cta-gallery, .cta-guides {
  background: linear-gradient(95deg, #e7f0fd 5%, #fbf8ed 95%);
  border-radius: 26px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.cta .btn, .cta-service .btn, .cta-workshop .btn, .cta-gallery .btn, .cta-guides .btn {
  margin-top: 20px;
}

/* ===========================
   NAVIGATION & HEADER/BAR
   =========================== */
header {
  background-color: #F9F6F2;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1002;
  box-shadow: 0 2px 14px 0 rgba(230, 203, 173, 0.06);
  min-height: 68px;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}
header img {
  height: 38px;
}
.main-nav {
  display: none;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 6px 12px;
  border-radius: 13px;
  font-size: 1.08rem;
  color: #295149;
  transition: color 0.19s, background-color 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  background-color: var(--accent-light);
  color: #017d77;
}
header .btn-primary {
  margin-left: 18px;
}
@media (min-width: 880px) {
  .main-nav {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Hamburger Nav */
.mobile-menu-toggle {
  font-size: 2.2rem;
  background: var(--accent);
  color: #295149;
  border-radius: 12px;
  border: none;
  padding: 6px 16px;
  margin-left: 12px;
  transition: background 0.17s, color 0.18s;
  display: inline-block;
  z-index: 1004;
  box-shadow: 0 1.5px 8px 0 rgba(233, 205, 150, 0.13);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ffe9bf;
  color: #017d77;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(232, 228, 219, 0.97);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.5,2,.28,1.01);
  overflow-y: auto;
  box-shadow: -10px 0 25px 0 rgba(112,100,89,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #295149;
  align-self: flex-end;
  margin: 16px 20px 0 0;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.17s, color 0.18s;
  z-index: 1006;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffe9bf;
  color: #017d77;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 18px;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #295149;
  padding: 9px 0;
  border-radius: 11px;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #ffe9bf;
  color: #017d77;
}

@media (min-width: 880px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==================
   BUTTONS
   ================== */
.btn, button, input[type="submit"] {
  display: inline-block;
  border-radius: 20px;
  padding: 12px 26px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 rgba(68,105,99,0.08);
  margin: 6px 0;
  transition: background 0.2s, color 0.18s, box-shadow 0.18s, transform 0.1s;
  line-height: 1;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-primary:focus, .btn-primary:hover {
  background: #ffe9bf;
  color: #017d77;
  box-shadow: 0 5px 24px 0 #ffe9bf77;
  transform: translateY(-2px) scale(1.036);
}
.btn-secondary {
  background: var(--primary);
  color: #fff;
}
.btn-secondary:focus, .btn-secondary:hover {
  background: #367973;
  color: #ffe9bf;
}


/* =========================
   SECTION/STYLING TEMPLATES
   ========================= */
.features, .values, .service-benefits {
  background: linear-gradient(90deg, #f8ffe7 0%, #eaf7f7 100%);
  border-radius: 26px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.services, .services-overview {
  background: linear-gradient(66deg, #fefbe0 2%, #f7ecea 96%);
  border-radius: 26px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}

.guides, .about, .workshops, .project-gallery, .contact, .faq, .privacy-policy, .gdpr, .cookies-policy, .terms-of-use, .thank-you, .team {
  background: #f8f6ef;
  border-radius: 18px;
  box-shadow: 0 3px 17px 0 rgba(193,186,154,0.06);
  margin-bottom: 60px;
  padding: 35px 16px 35px 16px;
}


/* ==========================
   FOOTER
   ========================== */
footer {
  background: #e9e5dd;
  border-radius: 16px 16px 0 0;
  padding: 24px 0 16px 0;
  margin-top: 48px;
  width: 100%;
  box-shadow: 0px -1px 18px 0 rgba(235,205,159,0.11);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #295149;
  font-size: 1rem;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:focus, .footer-nav a:hover {
  background: #ffe9bf;
  color: #017d77;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-size: 1.02rem;
  color: #295149;
}
.footer-contact img {
  width: 20px;
  margin-right: 8px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.footer-brand img {
  height: 32px;
}
.footer-brand span {
  font-size: 1rem;
  color: #4b7a6a;
  opacity: 0.7;
}


/* ===========================
   UTILITY & RESPONSIVE CONTROLS
   ============================ */
.text-section {
  margin-bottom: 16px;
}

/* Utility Flexbox Helpers */
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-20 {
  gap: 20px;
}

/* =====================
   RESPONSIVE QUERIES
   ===================== */
@media (max-width: 1024px) {
  .container {
    max-width: 900px;
    padding: 0 12px;
  }
}
@media (max-width: 800px) {
  .container {
    max-width: 97vw;
    padding: 0 8px;
  }
  .hero {
    padding: 36px 0 46px 0;
  }
  .main-nav {
    gap: 19px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, footer .container {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    padding: 24px 7px;
    margin-bottom: 36px;
  }
  .hero {
    padding: 24px 0 32px 0;
  }
  .cta, .cta-service, .cta-workshop, .cta-gallery, .cta-guides {
    padding: 22px 10px 28px 10px;
    margin-bottom: 36px;
  }
  .features, .values, .service-benefits, .services, .services-overview {
    padding: 18px 7px;
    margin-bottom: 36px;
  }
  .team ul, .services-overview ul, .workshops ul, .faq ul, .guides ul {
    gap: 8px !important;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 13px 11px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .hero h1 {
    font-size: 1.38rem;
  }
  .hero {
    border-radius: 0 0 18px 18px;
    padding: 14px 0 16px 0;
  }
  .footer-nav, .footer-contact, .footer-brand {
    font-size: 0.96rem;
  }
  .btn, button, input[type="submit"] {
    font-size: 1rem;
    padding: 10px 18px;
  }
}

/* ===================
   ICONS & IMAGES
   =================== */
ul li img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #f8f6ed;
  box-shadow: 0 1px 4px 0 rgba(46, 81, 73, 0.05);
  margin-right: 7px;
}

/* =================
   MICROINTERACTIONS
   ================= */
.btn, button, input[type="submit"] {
  will-change: transform, background;
}
.card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 24px 0 #ffe9bf64, 0 4px 12px rgba(68,105,99,0.12);
  transform: translateY(-3px) scale(1.012);
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: #fbfaef;
  color: #295149;
  box-shadow: 0 -2px 18px 0 rgba(230, 203, 173, 0.09);
  padding: 16px 16px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: transform 0.4s cubic-bezier(.46,-0.01,.46,1.09);
  border-radius: 13px 13px 0 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .btn {
  padding: 10px 19px;
  font-size: 0.97rem;
}
.cookie-banner .btn-accept {
  background: var(--accent);
  color: #295149;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #ffe9bf;
  color: #017d77;
}
.cookie-banner .btn-reject {
  background: #eee;
  color: #888;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #ffb84555;
  color: #295149;
}
.cookie-banner .btn-settings {
  background: none;
  color: #295149;
  border: 1px solid #dfd6bc;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #FFE9BF;
  color: #017d77;
}

/* Cookie Modal Styles */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(41, 81, 73, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2002;
  transition: background 0.18s;
  pointer-events: none;
  opacity: 0;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fcfaf4;
  border-radius: 16px;
  box-shadow: 0 7px 21px 0 #ffe9bfdd;
  max-width: 362px;
  width: 94vw;
  padding: 27px 19px 19px 19px;
  z-index: 2003;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.14rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: #f9f5ed;
  border-radius: 9px;
  padding: 11px 10px;
  border: 1px solid #f1eadc;
  margin-bottom: 9px;
}
.cookie-category label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #295149;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal .btn {
  margin-top: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #275149cc;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #ffe9bf77;
}

/* =====================
   SPECIAL/UTILITY
   ===================== */
::-webkit-scrollbar {
  width: 8px;
  background: #eee;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #ecc;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffe9bf;
}

/* Hide scroll on banner if needed for mobile */
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 11px 16px 11px;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }
}

/* =====================
   MISC ELEM STYLES
   ===================== */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #e3dac5;
  padding: 10px 14px;
  outline: none;
  background: #fcfaf2;
  color: #295149;
  transition: border 0.17s;
}
input:focus, select:focus, textarea:focus {
  border: 1.5px solid #295149;
}

/* ===============
   Print-Friendly
   =============== */
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
  }
}

/* END OF style.css */
