/* FrescDiscu Nature_Organic CSS Theme */
/* =============================================================
   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;
}
html {
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F9F6;
  color: #253331;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
}
a {
  color: #315D3A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #234063;
}
ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.1em;
}
li {
  margin-bottom: 0.6em;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: 1em;
  color: #234063;
}
input[type="search"] {
  border-radius: 32px;
  border: 1px solid #C7CFC5;
  background: #F6F6F3;
  padding: 11px 18px;
  margin-left: 10px;
  margin-top: 0.5em;
  font-size: 1em;
  outline: none;
  transition: border-color 0.2s;
}
input[type="search"]:focus {
  border-color: #82B366;
  background: #fff;
}
strong, b {
  font-weight: 600;
  color: #234063;
}
hr {
  border: none;
  height: 1px;
  background: #D9DBD4;
  margin: 24px 0;
}

/* ============================================================
   BRAND COLORS & TYPOGRAPHY
   ============================================================ */
:root {
  --color-primary: #234063;
  --color-secondary: #9CC5E6;
  --color-accent: #F2F2F2;
  --color-green: #82B366;
  --color-brown: #A68960;
  --color-earth: #EDE8E3;
  --color-dark: #253331;
  --color-bg: #F7F9F6;
  --font-display: 'Montserrat', Helvetica, Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #2A442D;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01rem;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  color: #315D3A;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: #305C3A;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #234063;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  font-size: 1.08rem;
  margin-bottom: 1em;
  color: #475D49;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 40px 75px 40px 75px/60px 35px 60px 35px;
  box-shadow: 0 4px 18px 0 rgba(146, 171, 121, 0.085);
  transition: box-shadow 0.22s;
}
.section:hover {
  box-shadow: 0 8px 24px 0 rgba(130, 179, 102, 0.13);
}

.container {
  width: 100%;
  max-width: 1210px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 28px 55px 28px 55px/36px 28px 36px 28px;
  box-shadow: 0 2px 14px 0 rgba(130, 179, 102, 0.09);
  padding: 20px 26px;
  min-width: 230px;
  flex: 1 1 250px;
  transition: box-shadow 0.21s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(49, 93, 58, 0.13);
}
.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: #F5F8F4;
  border-radius: 36px 48px 36px 55px/35px 27px 35px 27px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px 0 rgba(146, 171, 121, 0.09);
  color: #253331;
  font-size: 1.09rem;
  font-family: var(--font-body);
}
.testimonial-card strong {
  color: #234063;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F4F6F1;
  border-radius: 32px 56px 32px 48px/35px 23px 40px 25px;
  box-shadow: 0 2px 10px 0 rgba(146, 171, 121, 0.06);
  padding: 24px 22px 20px 22px;
  flex: 1 1 210px;
}

/* Feature, category and grid-like support, but flex-only for organic responsiveness */
.feature-grid, .category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.category-item {
  background: #FFF;
  border-radius: 36px 49px 36px 39px/33px 20px 30px 16px;
  box-shadow: 0 2px 14px 0 rgba(146, 171, 121, 0.09);
  padding: 20px 19px 18px 21px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}

.article-previews, .review-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.article-card, .review-card {
  background: #FFF;
  padding: 26px 22px;
  border-radius: 34px 44px 28px 36px/24px 16px 28px 18px;
  box-shadow: 0 1px 8px 0 rgba(146, 171, 121, 0.08);
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s;
}
.article-card:hover, .review-card:hover, .category-item:hover {
  box-shadow: 0 6px 22px 0 rgba(130, 179, 102, 0.13);
}

/* Hero */
.hero {
  background: linear-gradient(160deg, #eaf1ea 0%, #F6FAED 100%);
  border-radius: 44px 16px 80px 44px/22px 80px 40px 80px;
  margin-bottom: 60px;
  padding: 50px 0 42px 0;
}
.hero h1 {
  margin-bottom: 16px;
  font-size: 2.35rem;
  color: #315D3A;
}
.hero p {
  font-size: 1.19rem;
  color: #356740;
  margin-bottom: 1.7em;
}

/* CTAs + Newsletter */
.cta, .newsletter-cta, .pricing-cta {
  background: #E9F3EC;
  border-radius: 55px 34px 70px 22px/25px 70px 45px 65px;
  padding: 40px 20px;
  margin-bottom: 60px;
}
.cta-button {
  display: inline-block;
  background: #82B366;
  color: #FFF;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 32px 44px 20px 52px/25px 39px 28px 34px;
  padding: 13px 34px;
  cursor: pointer;
  box-shadow: 0 3px 16px 0 rgba(154, 194, 121, 0.14);
  transition: background 0.22s, box-shadow 0.23s, color 0.18s;
}
.cta-button:hover, .cta-button:focus {
  background: #315D3A;
  color: #E3F6D1;
  box-shadow: 0 9px 28px 0 rgba(49, 93, 58,.18);
}

/* ========================
   NAVIGATION & HEADER
   ======================== */
header {
  background: #F7F9F6;
  border-bottom: 1px solid #C7CFC5;
  padding: 0 0 0 0;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 0;
}
.logo-link img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.03rem;
  color: #2A442D;
  transition: color 0.2s, border-bottom 0.2s;
  padding: 7px 0;
  border: none;
}
.main-nav a:hover, .main-nav a:focus {
  color: #82B366;
  border-bottom: 2px solid #82B366;
}
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  background: transparent;
  border: none;
  color: #315D3A;
  cursor: pointer;
  margin-left: 15px;
  outline: none;
  transition: background 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #D7ECD7;
  border-radius: 42px;
}

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

/* Hide nav on mobile */
@media (max-width: 1023px) {
  .main-nav { display: none !important; }
}

/* =============================
   MOBILE MENU
   ============================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1000;
  background: rgba(47,67,44, 0.95);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.39s cubic-bezier(.62,.13,.21,.95);
  pointer-events: none;
}
body.mobile-menu-open .mobile-menu {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 20px 24px 16px 0;
  font-size: 2.1rem;
  color: #EDE8E3;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1020;
  align-self: flex-end;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #3B5D41;
  border-radius: 42px;
}
.mobile-nav {
  flex: 1 1 auto;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 21px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: #EDE8E3;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(237,232,227,0.08);
  width: 92vw;
  text-align: center;
  border-radius: 32px;
  transition: background 0.20s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #82B366;
  color: #fff;
}

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

/* =============================
   FORMS, FILTERS
   ============================= */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.filters span {
  font-weight: 600;
  color: #315D3A;
  margin-right: 8px;
}
.filters a {
  color: #234063;
  background: #E9F3EC;
  border-radius: 18px 22px 14px 21px/12px 13px 14px 19px;
  padding: 7px 16px;
  font-weight: 500;
  font-size: 1em;
  transition: background 0.20s, color 0.18s;
}
.filters a:hover, .filters a:focus {
  background: #82B366;
  color: #fff;
}


/* =============================
   FOOTER
   ============================= */
footer {
  background: #EFF5F0;
  border-top: 1px solid #C7CFC5;
  padding: 45px 0 0 0;
  margin-top: 80px;
}
footer .container {
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.contact-info {
  min-width: 260px;
}
.contact-info h3 {
  margin-bottom: 13px;
  color: #305C3A;
  font-size: 1.23rem;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  color: #315D3A;
  font-size: 1.08rem;
}
.contact-info a {
  color: #234063;
  margin-left: 4px;
  font-weight: 500;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #2A442D;
  font-size: 1.06rem;
  position: relative;
  transition: color 0.16s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #82B366;
}

/* ============================================================
   COOKIES CONSENT BANNER + MODAL
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: #FAFAF6;
  box-shadow: 0 -2px 24px 0 rgba(154, 194, 121, 0.19);
  border-radius: 44px 44px 0 0/32px 32px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 34px 19px 28px;
  gap: 16px;
  font-size: 1.08rem;
  color: #234063;
  font-family: var(--font-body);
  transition: transform 0.4s cubic-bezier(.72,.13,.31,1.05);
  transform: translateY(110%);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.cookie-btn {
  background: #315D3A;
  color: #fff;
  border: none;
  border-radius: 26px 38px 27px 29px/15px 21px 13px 18px;
  padding: 8px 23px;
  font-size: 1.07rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
  margin: 0;
  cursor: pointer;
  transition: background 0.21s, color 0.16s;
}
.cookie-btn.accept {
  background: #82B366;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #315D3A;
}
.cookie-btn.reject {
  background: #C8D7C2;
  color: #234063;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #315D3A;
  color: #fff;
}
.cookie-btn.settings {
  background: #EFF5F0;
  color: #234063;
  border: 1px solid #82B366;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #d8ead0;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  z-index: 100900;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 64, 99, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  padding: 34px 26px;
  border-radius: 36px 54px 28px 36px/24px 28px 36px 18px;
  max-width: 388px;
  width: 92vw;
  box-shadow: 0 4px 32px 0 rgba(49, 93, 58, 0.12);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: cookie-modal-in 0.55s cubic-bezier(.62,.13,.21,.95) both;
}
@keyframes cookie-modal-in {
  from { transform: scale(0.9) translateY(45px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #234063;
  cursor: pointer;
  padding: 6px;
  border-radius: 18px;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #EFF5F0;
}
.cookie-modal-title {
  font-size: 1.24rem;
  font-family: var(--font-display);
  color: #234063;
  font-weight: 700;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 7px;
  border-bottom: 1px solid #eef2e4;
  font-size: 1.01rem;
}
.cookie-category label {
  font-weight: 600;
  color: #234063;
}
.cookie-category .cookie-toggle {
  appearance: none;
  width: 34px;
  height: 20px;
  background: #E1EDE3;
  border-radius: 20px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-category .cookie-toggle:checked {
  background: #82B366;
}
.cookie-category .cookie-toggle:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.2s;
}
.cookie-category .cookie-toggle:checked:before {
  left: 16px;
}
.cookie-category.essential .cookie-toggle {
  background: #C8D7C2;
  pointer-events: none;
}

.cookie-modal-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

/* ==========================
   RESPONSIVE DESIGN
   ========================== */
@media (max-width: 1023px) {
  .footer .content-wrapper {
    flex-direction: column;
    gap: 28px;
  }
  .main-nav { display: none; }
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2rem;
  }
  .cta, .newsletter-cta, .pricing-cta {
    padding: 28px 8px;
  }
  .section {
    padding: 28px 8px;
  }
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .section, .cta, .newsletter-cta, .pricing-cta {
    padding: 28px 4vw;
    margin-bottom: 42px;
  }
  .hero {
    padding: 34px 0 27px 0;
    margin-bottom: 40px;
  }
  .card-container, .feature-grid, .category-grid, .content-grid, .article-previews, .review-previews {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .feature-item, .card, .category-item {
    width: 100%;
    min-width: 0;
  }
  .content-wrapper {
    gap: 14px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.12rem;
  }
  .hero h1 {
    font-size: 1.3rem !important;
  }
}

/* =====================================
   MICRO-ANIMATIONS, MICRO-INTERACTIONS
   ===================================== */
.cta-button, .cookie-btn {
  transition: background 0.22s, box-shadow 0.2s, color 0.17s;
}
input[type="search"] {
  transition: border-color 0.18s, background 0.18s;
}
.card, .article-card, .review-card, .feature-item, .category-item, .testimonial-card {
  transition: box-shadow 0.19s;
}

/* Subtle shadow on hover for interactive cards */
.card:hover, .article-card:hover, .review-card:hover, .feature-item:hover, .category-item:hover {
  box-shadow: 0 12px 40px 0 rgba(130, 179, 102, 0.16);
}

/* ===========================
   OTHER UTILITIES
   =========================== */
::-webkit-scrollbar {
  width: 9px;
  background: #F7F9F6;
}
::-webkit-scrollbar-thumb {
  background: #C8D7C2;
  border-radius: 8px;
}

/* Ensure spacing and prevent accidental overlap */
.section, .card, .feature-item, .category-item, .article-card, .review-card, .testimonial-card {
  margin-bottom: 20px;
}

/* Style for legal and info pages */
.legal {
  background: #FFFFFF;
  border-radius: 34px 70px 34px 70px/28px 45px 28px 45px;
  box-shadow: 0 2px 10px rgba(146, 171, 121, 0.06);
  padding: 32px 20px;
  margin-bottom: 60px;
}
.legal h1 {
  font-size: 2.1rem;
  color: #305C3A;
  margin-bottom: 12px;
}
.legal h2 {
  font-size: 1.26rem;
  margin-top: 21px;
  margin-bottom: 9px;
  color: #234063;
}
.legal p, .legal li, .legal ol {
  color: #3d4f40;
  font-size: 1.07rem;
}
.legal ol {
  margin-left: 24px;
  margin-bottom: 25px;
}

/* ===================================
   CUSTOM ORGANIC SHAPES - DECORATIVE
   (Apply via pseudo elements when needed)
   =================================== */

/* If desired for hero etc. Add background blobs using ::before/::after (use only for decoration) */

/* ============================
   END OF FRESCDISCU THEME CSS
   ============================ */
