/*==================================================
  Lumino Stocks STYLE.CSS -- "nature_organic" THEME
  Responsive, modern, organic CSS (no grid/columns)
==================================================*/
/* === 0. RESET & BASE ========================= */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #f6f5ef;
  color: #2F2C21;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image: url('../assets/bg-texture.png'), linear-gradient(120deg, #fcfaf6 0%, #f4f4ed 100%);
  background-size: 700px auto, cover;
  background-repeat: repeat, no-repeat;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #536d36;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #343075;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
input, button, textarea, select {
  font-family: inherit;
}
*:focus {
  outline: 2px dashed #F2AE55;
  outline-offset: 2px;
}

/* === 1. TYPOGRAPHY & BRANDING =============== */
h1, h2, h3, h4, .display {
  font-family: 'Merriweather', Georgia, serif;
  color: #343075;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.15;
  margin-bottom: 20px;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 12px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #3C392A;
}
strong { font-weight: bold; color: #536d36; }
blockquote {
  font-style: italic;
  color: #495127;
  border-left: 5px solid #D4C69E;
  padding-left: 18px;
  margin: 0 0 10px 0;
}

@media (max-width: 550px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.08rem; }
}

/* === 2. CONTAINERS & LAYOUTS ================= */
.container {
  margin: 0 auto;
  padding: 0 18px;
  max-width: 980px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section { padding: 26px 5px; margin-bottom: 36px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fcfaf6;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(97, 111, 85, 0.10);
  padding: 26px 22px;
  min-width: 200px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(80,88,53,0.13);
  transform: translateY(-4px) scale(1.02);
}
.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;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
}

.section:not(:last-child) {
  border-bottom: 2px solid #e5e1d2;
}

/* === 3. BUTTONS & INTERACTIVES =============== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6em;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.14s;
}
.btn-primary {
  background: #536d36;
  color: #fff;
  box-shadow: 0 2px 14px rgba(83,109,54,0.09);
}
.btn-primary:hover, .btn-primary:focus {
  background: #343075;
  color: #fff;
  box-shadow: 0 5px 22px rgba(52,48,117,0.12);
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary {
  background: #F2AE55;
  color: #2F2C21;
  box-shadow: 0 2px 10px 0 rgba(242, 174, 85, 0.10);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #d4c69e;
  color: #343075;
  transform: scale(1.025);
}

.cta {
  background: #F7F1E6;
  border-radius: 36px;
  margin: 58px auto 0 auto;
  padding: 38px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .cta { border-radius: 20px; padding: 22px 5px; }
}

/* === 4. NAVIGATION & HEADER ================== */
header {
  background: #fffbe8;
  border-bottom: 2px solid #eceabe;
  box-shadow: 0 6px 32px rgba(97, 111, 85, 0.08);
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 99;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  max-width: 1110px;
  margin: 0 auto;
  padding: 12px 16px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #495127;
  padding: 6px 10px;
  font-size: 1rem;
  border-radius: 22px;
  font-weight: 600;
  transition: color 0.14s, background 0.13s;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #343075;
  background: #F9EAD3;
}
.main-nav .btn-primary {
  margin-left: 12px;
  box-shadow: 0 1px 10px 0 rgba(83, 109, 54, 0.07);
  font-size: 1rem;
  background: #343075;
}
.main-nav .btn-primary:hover {
  background: #536d36;
  color: #fff;
}
.main-nav img {
  height: 42px;
  width: auto;
  margin-right: 16px;
}
@media (max-width: 1024px) {
  .main-nav { gap: 12px; }
  .main-nav img { margin-right: 10px; height: 34px; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 5px;
    padding: 8px 8px;
  }
  .main-nav .btn-primary { margin-left: 0; }
}

/* === 4.1. MOBILE NAV MENU BURGER ============= */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 105;
  background: none;
  border: none;
  font-size: 2rem;
  color: #495127;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 100%;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #e5e1d2;
}
@media (max-width: 880px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(252, 250, 246, 0.97);
  z-index: 1400;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.6,.01,.32,1);
  box-shadow: 0 0 32px 0 rgba(98,109,54,0.07);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  margin: 26px 28px 0 0;
  background: none;
  border: none;
  color: #343075;
  cursor: pointer;
  z-index: 1445;
  border-radius: 100%;
  padding: 4px 10px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f2ae55;
  color: #343075;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 36px 0 0 46px;
}
.mobile-nav a {
  font-size: 1.12rem;
  color: #495127;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 5px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #f2ae55;
  color: #343075;
}
@media (max-width: 555px) {
  .mobile-nav { margin: 28px 0 0 20px; gap: 15px; }
}

/* === 5. HERO SECTIONS ======================== */
.hero {
  background: #F8F7F3;
  background-image: url('../assets/organic-shape.svg');
  background-repeat: no-repeat;
  background-position: 90% 12%;
  background-size: 320px auto;
  border-radius: 0 0 50px 50px / 0 0 36px 36px;
  margin-bottom: 54px;
  box-shadow: 0 12px 36px -16px rgba(80, 88, 53, 0.12);
  overflow-x: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  margin: 0 auto;
  padding: 40px 0 32px 0;
}
.hero h1 {
  color: #343075;
  text-shadow: 0 1px 0 #ede9d1;
  font-size: 2.3rem;
}
.hero p {
  color: #495127;
  font-size: 1.14rem;
}
.hero .btn-primary, .hero .btn-secondary {
  margin-top: 10px;
}
@media (max-width: 700px) {
  .hero {
    border-radius: 0 0 25px 25px/0 0 15px 15px;
    background-size: 140px auto;
    padding-bottom: 0;
  }
  .hero .content-wrapper {padding: 18px 0 12px 0;}
}

/* === 6. FEATURES, ARTICLES, CARDS ============ */
.features-list, .articles-preview, .articles-list, .events-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 22px 0;
}
.features-list li, .articles-preview li, .events-list li, .articles-list li {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(83,109,54,0.06);
  padding: 22px 20px 16px 22px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 20px;
  border: 1px solid #ece6cf;
  transition: box-shadow 0.18s, border 0.17s, transform 0.14s;
}
.features-list li:hover, .articles-preview li:hover, .events-list li:hover, .articles-list li:hover {
  box-shadow: 0 10px 36px -9px rgba(83,109,54,0.16);
  border: 1.5px solid #f2ae55;
  transform: translateY(-3px) scale(1.013);
}
.features-list img, .articles-preview img, .events-list img {
  height: 44px;
  width: 44px;
  margin-bottom: 7px;
}
@media (max-width: 700px) {
  .features-list, .articles-preview, .articles-list, .events-list {
    flex-direction: column;
    gap: 14px;
  }
  .features-list li, .articles-preview li, .events-list li, .articles-list li {
    min-width: 0;
    border-radius: 16px;
    padding: 14px 12px 10px 14px;
  }
}

.category-filters {
  display: flex;
  gap: 16px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.category-filters a {
  background: #f2ae55;
  color: #2f2c21;
  border-radius: 18px;
  padding: 4px 18px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.12s, color 0.15s;
}
.category-filters a:hover, .category-filters a:focus {
  background: #343075;
  color: #fff;
}
.pagination {
  display: flex;
  gap: 12px;
  margin: 28px 0 0 0;
}
.pagination a {
  background: #fff;
  color: #536d36;
  border-radius: 6px;
  padding: 6px 14px;
  font-weight: 600;
  border: 1.3px solid #e5e1d2;
  transition: background 0.15s, color 0.14s;
}
.pagination a:hover, .pagination a:focus {
  background: #f2ae55;
  color: #343075;
}

/* === 7. TESTIMONIALS ========================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 6px solid #D1E9C6;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 11px 0 rgba(97, 111, 85, 0.10);
  transition: box-shadow 0.16s, border-color 0.12s;
}
.testimonial-card:hover {
  border-left: 6px solid #f2ae55;
  box-shadow: 0 4px 22px 0 rgba(83,109,54,0.14);
}
.testimonial-card blockquote,
.testimonial-card p {
  margin: 0;
  color: #26270E !important;
}
.testimonial-card strong {
  color: #343075;
  font-weight: 700;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
  }
}

/* === 8. MISC: TEAM, FAQ, FEATURE-ITEMS ======= */
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}
.team-section > div {
  background: #F8F7F3;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(97, 111, 85, 0.09);
  padding: 20px 18px;
  flex: 1 1 220px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 700px) {
  .team-section { flex-direction: column; gap: 16px; }
  .team-section > div { padding: 14px 9px; }
}
.faq {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
.faq > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 9px 0 rgba(83,109,54,0.06);
  padding: 15px 14px 12px 16px;
  flex: 1 0 220px;
  min-width: 180px;
  margin-bottom: 0;
  border-left: 4px solid #D8E6BC;
}
@media (max-width: 700px) {
  .faq { flex-direction: column; gap: 11px; }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-card {
  background: #F8F7F3;
  border-radius: 14px;
  box-shadow: 0 2.5px 13px 0 rgba(83,109,54,0.07);
  padding: 24px 19px 18px 19px;
  margin-bottom: 20px;
  min-width: 200px;
  border: 1.1px solid #ece6cf;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow 0.13s, border 0.13s, transform .12s;
}
.service-card:hover {
  box-shadow: 0 8px 30px 0 rgba(52,48,117,0.10);
  border: 1.2px solid #f2ae55;
  transform: translateY(-2.5px) scale(1.015);
}

/* === 9. FOOTER & CONTACT ===================== */
footer {
  background: #363F2A;
  color: #f8f7f3;
  padding: 36px 0 0 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 28px 28px 0 0/14px 14px 0 0;
  box-shadow: 0 -6px 20px rgba(44,53,32,0.11);
}
.footer-nav {
  display: flex;
  gap: 22px;
  margin-bottom: 17px;
}
.footer-nav a {
  color: #F2AE55;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.15s, text-decoration 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 0 24px 0;
}
.footer-contact img {
  height: 46px;
  margin-bottom: 5px;
}
.footer-contact p {
  color: #e9e6d8;
  margin-bottom: 0 !important;
  font-size: 0.95rem;
  text-align: center;
}
@media (max-width: 600px) {
  .footer-nav { gap: 13px; flex-direction: column; align-items: center; }
  footer { padding: 22px 0 0 0; border-radius: 16px 16px 0 0/8px 8px 0 0; }
}

/* === 10. COOKIE BANNER & MODAL =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #ebe5d1;
  color: #495127;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
  padding: 20px 24px 16px 24px;
  box-shadow: 0 -6px 24px rgba(83,109,54,0.12);
  z-index: 2000;
  font-size: 1rem;
  transition: transform 0.28s cubic-bezier(.6,.01,.32,1);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner__text { max-width: 450px; }
.cookie-banner__actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  border: none;
  border-radius: 6em;
  padding: 8px 27px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.99rem;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
}
.cookie-banner__btn--accept {
  background: #536d36;
  color: #fff;
}
.cookie-banner__btn--accept:hover {
  background: #343075;
  color: #fff;
}
.cookie-banner__btn--reject {
  background: #f2ae55;
  color: #2f2c21;
}
.cookie-banner__btn--reject:hover {
  background: #343075;
  color: #fff;
}
.cookie-banner__btn--settings {
  background: #fff;
  color: #495127;
  border: 1.2px solid #d4c69e;
}
.cookie-banner__btn--settings:hover {
  background: #d4c69e;
  color: #343075;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    padding: 13px 7px 10px 7px;
    font-size: 0.98rem;
  }
  .cookie-banner__actions { gap: 9px; }
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(51, 57, 22, 0.17);
  z-index: 2400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__dialog {
  background: #f7f5e8;
  color: #26270E;
  border-radius: 20px;
  padding: 34px 32px 30px 32px;
  min-width: 295px;
  max-width: 95vw;
  box-shadow: 0 10px 38px rgba(52, 48, 117,0.09);
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 13px; right: 12px;
  font-size: 1.85rem;
  color: #343075;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 100%;
  transition: background 0.16s;
  padding: 2px 10px;
}
.cookie-modal__close:hover {
  background: #f2ae55;
}
.cookie-modal__title {
  font-size: 1.15rem;
  color: #343075;
  font-family: 'Merriweather', serif;
  margin-bottom: 4px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-modal__toggle {
  accent-color: #536d36;
  width: 22px; height: 22px;
}
.cookie-modal__save-btn {
  background: #536d36;
  color: #fff;
  border: none;
  border-radius: 4em;
  padding: 10px 32px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 6px;
  cursor: pointer;
  box-shadow: 0 2px 11px 0 rgba(83,109,54,0.10);
}
.cookie-modal__save-btn:hover {background: #343075;}
@media (max-width:530px) {
  .cookie-modal__dialog {padding: 14px 8px 17px 8px; min-width: 0;}
  .cookie-modal__title {font-size: 1.02rem;}
}

/* === 11. GENERAL RESPONSIVENESS ============== */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 990px) {
  .cta, .section { padding-left: 6vw; padding-right: 6vw; }
}
@media (max-width: 720px) {
  .section, .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

/* === 12. MICRO-INTERACTIONS ================ */
.btn-primary, .btn-secondary, .card, .service-card, .testimonial-card, .category-filters a, .pagination a {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s, border 0.16s;
}

/* === 13. UTILITIES ========================== */
.hide { display: none !important; }
.text-center { text-align: center !important; }
.m0 { margin: 0 !important; }
.p0 { padding: 0 !important; }

/* === Decals for nature/organic theme ======== */
.section, .card, .cta, .service-card, .testimonial-card {
  background-image: url('../assets/bg-organic-light.svg');
  background-repeat: no-repeat;
  background-position: 90% 94%;
  background-size: 170px 92px;
}
@media (max-width: 600px) {
  .section, .card, .cta, .service-card, .testimonial-card {
    background-position: 98% 98%;
    background-size: 62px 38px;
  }
}

/* === END === */
