/* === 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, 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background: #F9F6F0;
  color: #234B38;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #234B38;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E2C68D;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}

/* === Brand Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  background: #F9F6F0;
  color: #234B38;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #234B38;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: .2px;
}

h1 {
  font-size: 2.7rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
}

p, ul li, ol li {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #234B38;
  line-height: 1.7;
}

strong, b {
  font-weight: 600;
  color: #234B38;
}

/* === Utilities === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.text-section {
  max-width: 660px;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(35, 75, 56, 0.08), 0 0.5px 2px rgba(226, 198, 141, 0.18);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px 2px rgba(35, 75, 56, 0.16),0 1px 4px rgba(226,198,141, 0.13);
  transform: translateY(-4px) scale(1.017);
}

.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: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px 1px rgba(35, 75, 56, 0.1);
  margin-top: 28px;
  margin-bottom: 20px;
  min-width: 220px;
  flex-direction: column;
}
.testimonial-card p {
  color: #234B38;
  margin-bottom: 6px;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: #234B38;
  font-weight: 700;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === Main Layout Flex === */
header, footer {
  width: 100%;
  background: #234B38;
  color: #fff;
}
header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 18px 0;
  position: relative;
  z-index: 19;
}
.logo {
  margin-left: 20px;
}
.logo img {
  max-height: 46px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-left: 34px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  background: none;
  padding: 8px 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .1px;
  border-bottom: 3px solid transparent;
  transition: color .18s, border-color .18s;
  border-radius: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #E2C68D;
  border-bottom: 3px solid #E2C68D;
}

.cta-primary {
  margin-left: auto;
  background: #E2C68D;
  color: #234B38;
  border: none;
  border-radius: 26px;
  padding: 10px 34px;
  font-size: 1.10rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 3px 14px 1px rgba(35, 75, 56, 0.09);
  cursor: pointer;
  transition: background 0.18s, color .18s, transform .14s, box-shadow .2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .1px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #234B38;
  color: #E2C68D;
  transform: scale(1.04);
  box-shadow: 0 8px 30px 2px rgba(35, 75, 56, 0.18);
}

/* === MOBILE BURGER MENU === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #E2C68D;
  cursor: pointer;
  margin-right: 16px;
  margin-left: 18px;
  z-index: 31;
  border-radius: 6px;
  transition: background 0.13s;
  padding: 4px 8px;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #E2C68D;
  color: #234B38;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 38;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(35, 75, 56, 0.96);
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.49,.53,.45,.93);
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.29s cubic-bezier(.41,.55,.44,.93);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #E2C68D;
  font-size: 2.1rem;
  cursor: pointer;
  align-self: flex-end;
  margin: 22px 26px 0 0;
  transition: color 0.1s, background 0.1s;
  border-radius: 6px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E2C68D;
  color: #234B38;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  margin-top: 24px;
  gap: 8px;
  padding: 0 44px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: .1px;
  margin-bottom: 10px;
  padding: 10px 0 12px 0;
  border-radius: 4px;
  width: 100%;
  transition: color 0.13s, background 0.11s;
  background: none;
  display: flex;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E2C68D;
  color: #234B38;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 14px;
    margin-left: 10px;
  }
  .cta-primary {padding: 10px 20px}
  header {gap: 10px;}
  .logo {margin-left: 10px;}
}
@media (max-width: 900px) {
  .main-nav a, .cta-primary {font-size: 1rem;}
  h1 {font-size: 2rem;}
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 14px 0;
  }
  .main-nav {
    display: none !important;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .logo {
    margin-left: 10px;
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 6px;
  }
}

/* === HERO SECTION === */
.hero {
  padding: 60px 0 44px 0;
  background: #E2C68D;
  background-image: url('../assets/artistic-bg.svg'), linear-gradient(0deg, #E2C68D 0%, #F9F6F0 100%);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 36px 36px;
  min-height: 276px;
  box-shadow: 0 8px 24px 2px rgba(226,198,141,0.18);
  display: flex;
  align-items: center;
}
.hero .container {
  align-items: flex-start;
}
.hero h1 {
  color: #234B38;
  font-size: 2.5rem;
  text-shadow:0 2px 10px rgba(234,192,76,0.08);
}
.hero h2 {
  color: #4A773A;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.hero p {
  font-size: 1.08rem;
  margin-bottom: 20px;
  color: #234B38;
}
.hero .cta-primary {
  margin-left: 0;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 160px; padding: 34px 0; border-radius: 0 0 18px 18px;
  }
  .hero h1 {font-size: 1.44rem;}
  .hero h2 {font-size: 1.07rem;}
}

/* === FEATURE GRID & THEME WORLDS === */
.feature-grid, .theme-worlds {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div, .theme-worlds > div {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 11px 1px rgba(35,75,56,.1);
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  min-width: 220px;
  position: relative;
  transition: box-shadow .19s, transform .19s;
}
.feature-grid > div:hover, .theme-worlds > div:hover {
  box-shadow: 0 10px 32px 1px rgba(35,75,56,0.12);
  transform: translateY(-3px) scale(1.012);
}
.feature-grid img, .theme-worlds img {
  width: 54px;
  height: 54px;
  margin-bottom: 9px;
}
.feature-grid h3, .theme-worlds h3 {
  color: #234B38;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .feature-grid, .theme-worlds {
    gap: 16px;
  }
}
@media (max-width: 650px) {
  .feature-grid, .theme-worlds {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid > div, .theme-worlds > div {
    min-width: 0;
    width: 100%;
  }
}

/* === FAQ SECTION === */
.faq {
  background: #fffde9;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 10px 1px rgba(226,198,141,0.09);
}

/* === Buttons, Links === */
button, .cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  outline: none;
}
button:focus, .cta-primary:focus {
  outline: 3px solid #234B38;
  outline-offset: 3px;
}

/* === Cards, List Styles === */
ul, ol {
  margin-bottom: 10px;
  margin-left: 0;
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 1.2em;
  background: url('../assets/list-artistic.svg') 0 0.65em no-repeat;
  background-size: .85em .85em;
}

/* === Footer === */
footer {
  padding: 44px 0 28px 0;
  background: #234B38;
  color: #fff;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -4px 29px 0px rgba(35,75,56,0.13);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.footer-nav a {
  color: #E2C68D;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: underline;
  transition: color 0.13s;
  background: none;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: none;
}
.footer-info {
  color: #fff;
  font-size: 0.98rem;
  margin-top: 8px;
  line-height: 1.7;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 650px) {
  .footer-nav {gap: 12px;}
  footer {padding: 28px 0 16px;}
}

/* === Artistic Visual Elements === */
.section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 19px 1px rgba(234,192,76,0.11);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* === Cookie Consent Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: #E2C68D;
  color: #234B38;
  box-shadow: 0 -3px 18px 2px rgba(35,75,56,0.09);
  z-index: 75;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 10px 18px 10px;
  gap: 14px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: cookieTopIn .6s cubic-bezier(.49, .61, .23, 1);
}
@keyframes cookieTopIn {
  0% {transform: translateY(100%);} 90% {opacity: 1;} 100% {transform: translateY(0);}
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  padding: 8px 20px;
  border-radius: 18px;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #234B38;
  background: #fff;
  box-shadow: 0 2px 7px 0px rgba(35,75,56,0.07);
  transition: background 0.14s, color 0.14s, box-shadow .16s;
}
.cookie-banner button.accept {
  background: #234B38;
  color: #fff;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #4A773A;
  color: #E2C68D;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #E2C68D;
  color: #234B38;
  box-shadow: 0 6px 16px 0px rgba(226,198,141,0.13);
}
.cookie-banner button.reject {
  background: #fff;
  color: #234B38;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #E2C68D;
  color: #234B38;
  border: 1.5px solid #234B38;
}

/* === Cookie Modal Popup === */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(35,75,56,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-bg 0.29s;
}
@keyframes fade-in-bg {
  from {opacity: 0;} to {opacity:1;}
}
.cookie-modal .modal-content {
  background: #fff;
  color: #234B38;
  padding: 32px 24px;
  border-radius: 14px;
  max-width: 380px;
  width: 96vw;
  box-shadow: 0 8px 32px 2px rgba(226,198,141,0.14);
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: modalIn 0.36s cubic-bezier(.5,.64,.4,1);
}
@keyframes modalIn {
  0% {transform: scale(0.85); opacity: 0.44;}
  100% {transform: scale(1); opacity: 1;}
}
.cookie-modal h3 {
  font-size: 1.23rem;
  margin-bottom: 7px;
  font-family: 'Playfair Display', serif;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1.03rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-toggle {
  accent-color: #E2C68D;
  width: 20px; height: 20px;
  cursor: pointer;
}
.cookie-modal .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .essential {
  font-weight: 600;
  opacity: 0.75;
}

/* === Responsive Content Alignment === */
@media (max-width: 900px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.33rem;}
  .section {padding: 30px 8px;}
}
@media (max-width: 768px) {
  .container {padding: 0 6px;}
  .content-wrapper, .text-section {gap: 16px;}
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .card-container, .content-grid {
    gap: 12px;
  }
  .feature-grid, .theme-worlds {gap: 12px;}
  h1, h2, h3, h4 {margin-bottom: 10px;}
}
@media (max-width: 540px) {
  .section {padding: 18px 1px;}
  .testimonial-card {padding: 13px;}
}

/* === Microinteractions / Artistic Details === */
.card:after, .feature-grid > div:after, .theme-worlds > div:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  right: 14px; bottom: 10px;
  width: 20px; height: 20px;
  border-radius: 40%;
  background: rgba(226,198,141,0.26);
  filter: blur(2px);
  pointer-events: none;
  opacity: .77;
}
.card:hover:after, .feature-grid > div:hover:after, .theme-worlds > div:hover:after {
  width: 24px; height: 24px;
  opacity: 1;
  background: rgba(234,192,76,0.25);
}

/* Artistic font highlight */
h2 span, h3 span {
  font-family: 'Playfair Display', serif;
  color: #E2C68D;
}

/* === FORM CONTROL STYLES (if needed later) === */
input, textarea, select {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 10px;
  border: 1px solid #E2C68D;
  padding: 8px 10px;
  width: 100%;
  background: #fffdfa;
  color: #234B38;
  margin-bottom: 14px;
  font-size: 1rem;
  transition: border-color 0.13s;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #234B38;
  border-color: #234B38;
}

/* === Accessibility & Focus === */
:focus {
  outline: 2px solid #E2C68D;
  outline-offset: 2px;
}

/* === Scrollbar Artistic Style === */
::-webkit-scrollbar {width: 11px; background: #fff;}
::-webkit-scrollbar-thumb {background: #E2C68D; border-radius: 10px;}

/* === Artistic Elements: Extra Doodles (optional, can be added via inline SVG bg or decoration) === */
/* Example: Place small hand-drawn dots next to h2 (if desired) */
h2:before {
  content: "";
  display: inline-block;
  width: 18px; height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  background: url('../assets/h2-deco.svg') no-repeat center center/contain;
}


/* ========= END OF STYLES ========= */
