/* ==========================================================================
   Domari Nature Trails – Monochrome Sophisticated CSS (All Pages)
   ========================================================================== */
/* --- RESET, NORMALIZE & UNIVERSAL BOX-SIZING --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html, body {
  width: 100%;
  height: 100%;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #18191a;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
  padding-left: 0.5em;
}
li {
  margin-bottom: 0.75em;
}
a {
  text-decoration: none;
  color: #18191a;
  transition: color 0.18s cubic-bezier(.35, .75, .65, 1.15);
}
a:hover, a:focus {
  color: #222;
  outline: none;
}
button, .cta-primary {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.2s cubic-bezier(.4,.95,.56,1.2);
}
button:focus-visible, a:focus-visible {
  outline: 2px solid #151515;
  outline-offset: 1px;
}

/* ==========================================================================
   BRAND FONTS & TYPOGRAPHY HIERARCHY
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Roboto:wght@400;700&display=swap');
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Krona One', Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #151515;
  margin-bottom: 0.7em;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 0.025em;
}
h2 {
  font-size: 2rem;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
h3 {
  font-size: 1.3rem;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
strong {
  color: #18191a;
  font-weight: 700;
}
p {
  font-size: 1.125rem;
  color: #272727;
  margin-bottom: 18px;
  max-width: 65ch;
}
.section ul, .section ol, .text-section ul, .text-section ol {
  margin-left: 1.75em;
  margin-bottom: 12px;
}
.section ul li, .section ol li, .text-section ul li, .text-section ol li {
  font-size: 1rem;
  color: #232323;
  margin-bottom: 0.5em;
}

/* ==========================================================================
   COLOR PALETTE: Sophisticated Monochrome + Brand Accents
   ========================================================================== */
:root {
  --color-black: #151515;
  --color-dark: #232323;
  --color-gray-900: #333;
  --color-gray-700: #555;
  --color-gray-400: #aaa;
  --color-gray-200: #e9e9ec;
  --color-gray-100: #f6f6f7;
  --color-white: #fff;
  --brand-primary: #30523B;
  --brand-accent: #F5F3ED;
  --brand-secondary: #B5C18A;
  --box-shadow: 0 2px 16px rgba(30,30,36,0.08), 0 1.5px 9px rgba(20,20,20,0.10);
  --radius: 16px;
}

/* ==========================================================================
   LAYOUT CONTAINERS & FLEXBOX BLANKET RULES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
  background: var(--color-gray-100);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.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: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(60,60,60,0.09);
  margin-bottom: 20px;
  border-left: 4px solid var(--brand-primary);
  flex-direction: column;
  align-items: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==========================================================================
   HEADER, NAVIGATION, BURGER MENU
   ========================================================================== */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 2.5px 16px rgba(25, 25, 30, 0.09);
  position: relative;
  z-index: 101;
}
header nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px 20px;
  gap: 32px;
}
header nav > a img {
  height: 38px;
  width: auto;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  list-style: none;
}
header nav ul li a {
  font-family: 'Krona One', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 7px 10px;
  border-radius: 7px;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  background: transparent;
  transition: background 0.18s, color 0.18s;
}
header nav ul li a:hover, header nav ul li a.active {
  background: var(--color-gray-200);
  color: var(--brand-primary);
}
.cta-primary {
  display: inline-block;
  padding: 11px 30px;
  border-radius: 32px;
  background: var(--color-black);
  color: var(--color-white) !important;
  font-family: 'Krona One', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  box-shadow: 0 0.5px 5px rgba(20,20,22,0.07);
  margin-left: 24px;
  font-weight: 400;
  transition: background 0.19s, box-shadow 0.18s, color 0.18s;
  border: 2px solid var(--color-black);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-white);
  color: var(--color-black) !important;
  border-color: var(--brand-primary);
}

/* ==========================================================================
   BURGER BUTTON / MOBILE NAVIGATION
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 14px;
  font-size: 2rem;
  line-height: 1;
  background: transparent;
  border: none;
  color: var(--color-black);
  z-index: 110;
  padding: 8px 14px 8px 8px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-gray-200);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22, 22, 24, 0.92);
  backdrop-filter: blur(4px);
  z-index: 500;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(.5,1.6,.32,1), opacity 0.18s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  display: block;
  position: absolute;
  top: 17px;
  right: 22px;
  font-size: 2em;
  background: transparent;
  border: none;
  color: #fff;
  padding: 6px 14px 6px 6px;
  z-index: 900;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-black);
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  margin-top: 80px;
  gap: 20px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Krona One', Arial, Helvetica, sans-serif;
  font-size: 1.40rem;
  color: #fff;
  padding: 11px 0;
  border-radius: 3px;
  min-width: 60vw;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-secondary);
  background: rgba(255,255,255,0.08);
}

/* Show/hide menu and toggle depending on screen size */
@media (max-width: 1024px) {
  header nav ul, header nav .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==========================================================================
   MAIN SECTIONS
   ========================================================================== */
main {
  background: var(--color-white);
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
section .container {
  width: 100%;
}
.section {
  background: var(--color-gray-100);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(40, 40, 40, 0.07);
}

/* ==========================================================================
   SPECIAL CONTENT SECTIONS (TEXT + IMAGE, CONTENT GRIDS, FEATURES)
   ========================================================================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-member {
  background: var(--color-gray-100);
  border-radius: 12px;
  padding: 20px 18px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(50,50,50,0.06);
}

/* ==========================================================================
   TESTIMONIALS / REVIEWS
   ========================================================================== */
.testimonial-card {
  background: #fff;
  color: #151515;
  border-left: 4px solid var(--brand-primary);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(64,64,64,.08);
  padding: 22px 22px 18px 20px;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 200px;
  max-width: 540px;
  transition: box-shadow 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(51,67,67,0.11), 0 1.5px 9px rgba(20,20,20,0.12);
}
.testimonial-card p {
  margin-bottom: 5px;
  font-size: 1.13rem;
  color: #232323;
  font-style: italic;
}
.testimonial-card span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  font-size: 1rem;
  align-self: flex-end;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  width: 100%;
  background: var(--color-black);
  color: #e4e4e9;
  margin-top: 60px;
  padding: 44px 0 24px 0;
  font-size: 1rem;
  box-shadow: 0 -2px 16px rgba(20,20,21,0.10);
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 42px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer img {
  height: 46px;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: #e4e4e9;
  font-size: 1rem;
  padding: 2px 0;
  transition: color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-secondary);
}
.footer-contact {
  color: #dadada;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-contact a {
  color: #e9e9ec;
  text-decoration: underline;
}
.footer-contact p{
  color: white;
}
.footer-contact a:hover {
  color: var(--brand-secondary);
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 6px;
}
.social-media a img {
  width: 29px;
  height: 29px;
  padding: 3px;
  background: #191919;
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  transition: background 0.18s;
}
.social-media a:hover img {
  background: var(--brand-primary);
}

/* ==========================================================================
   BUTTONS, CARDS, SHADOWS
   ========================================================================== */
button, .cta-primary {
  transition: background 0.21s, color 0.17s, box-shadow 0.15s, transform 0.13s;
  will-change: background, color, box-shadow, transform;
}
button:active, .cta-primary:active {
  transform: scale(0.98);
  box-shadow: 0 1px 7px rgba(30,30,32,0.06);
}
.card {
  border-radius: var(--radius);
  background: #fbfbfb;
  box-shadow: var(--box-shadow);
  padding: 30px 20px 24px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
}
.card:hover {
  box-shadow: 0 5px 24px rgba(33,33,35,0.13);
}

/* ==========================================================================
   LIST FEATURES & ICONS
   ========================================================================== */
li img {
  display: inline-flex;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  margin-bottom: -6px;
}
ul span {
  color: var(--brand-primary);
  font-weight: 500;
  margin-left: 12px;
}

/* ==========================================================================
   FORM ELEMENTS (if present)
   ========================================================================== */
input, textarea, select {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border-radius: 7px;
  border: 1.5px solid var(--color-gray-200);
  background: #fff;
  color: var(--color-dark);
  padding: 10px 13px;
  margin-bottom: 16px;
  width: 100%;
  transition: border-color 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-primary);
}

/* ==========================================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: var(--color-black);
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  box-shadow: 0 -1.5px 8px rgba(44,44,53,0.15);
  gap: 26px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  animation: cookieslidein 0.78s cubic-bezier(.65,2.2,.23,1) 0.2s both;
}
@keyframes cookieslidein {
  from {transform: translateY(90px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner-text {
  font-size: 1.10rem;
  color: #fff;
  max-width: 480px;
  line-height: 1.42;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-btn {
  padding: 9px 24px;
  border-radius: 22px;
  font-family: 'Krona One', Arial, Helvetica, sans-serif;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 400;
  border: 2px solid var(--color-white);
}
.cookie-btn.accept {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.cookie-btn.reject {
  background: var(--color-black);
  color: var(--color-white);
  border: 2px solid var(--color-gray-900);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-gray-900);
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 2px solid #aaa;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

/* ========= COOKIE MODAL ========= */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1300;
  background: rgba(20,20,20,0.76);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-dialog {
  background: #fff;
  color: #18191a;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(20,20,30,0.18);
  max-width: 400px;
  padding: 38px 32px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: cookiescalein 0.17s cubic-bezier(.15,1.8,.65,1.05);
}
@keyframes cookiescalein {
  from {transform: scale(0.9); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.cookie-modal h3 {
  font-size: 1.32rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
  font-family: 'Krona One', Arial;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-primary);
  width: 19px;
  height: 19px;
}
.cookie-category label {
  color: #232323;
  font-size: 1.07rem;
}
.cookie-category.essential label {
  font-weight: 700;
  color: #18191a;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 9px;
  justify-content: flex-end;
  margin-top: 12px;
}

/* ==========================================================================
   RESPONSIVE STYLES – MOBILE FIRST, FLUID FLEX LAYOUTS
   ========================================================================== */
@media (max-width: 900px) {
  .content-wrapper {
    gap: 18px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  section, .section {
    padding: 25px 0 30px 0;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 90vw;
    padding: 18px 10px 16px 12px;
  }
  h1 {
    font-size: 2.0rem;
  }
  h2 {
    font-size: 1.34rem;
  }
  .team-member {
    padding: 14px 8px;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 0px;
    padding-right: 0px;
  }
  h1 {
    font-size: 1.62rem;
  }
}

/* ==========================================================================
   MISCELLANEOUS ACCESSIBILITY
   ========================================================================== */
::selection {
  background: var(--brand-secondary);
  color: var(--color-black);
}
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/*
  ===============
  END OF CSS FILE
*/
