/* CSS RESET & BASE STYLES */
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,
main,
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 {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F9F9F9;
  color: #26322a;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.25em;
}
strong, b {
  font-weight: 600;
}
a {
  color: #45A29E;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #356e6a;
  text-decoration: underline;
}

/* BRAND TYPOGRAPHY & HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2C3E50;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.1rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.21rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, ul, ol {
  font-size: 1rem;
  color: #26322a;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.3rem;
  }
}

/* NATURAL & ORGANIC STYLE: earth tones, greens, textures */
:root {
  --color-primary: #2C3E50;
  --color-secondary: #45A29E;
  --color-accent: #F9F9F9;
  --color-earth: #BC9B6A;
  --color-leaf: #6BA368;
  --color-sand: #EFE4CF;
  --color-moss: #d0e4de;
  --color-shadow: rgba(44,62,80,0.10);
  --border-radius-card: 18px;
  --border-radius-btn: 25px;
  --shadow-card: 0 4px 24px var(--color-shadow);
  --shadow-btn: 0 2px 8px rgba(108, 130, 98, 0.07);
}

/* CONTAINER & LAYOUTS (Flexbox Only) */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
}
/* For sections with background, use sand color for organic flair */
section.hero {
  background: linear-gradient(120deg, #EFE4CF 60%, #F9F9F9 100%);
  min-height: 290px;
  margin-bottom: 60px;
  border-bottom-left-radius: 64px 54px;
  border-bottom-right-radius: 64px 54px;
  background-size: cover;
}
.section {  /* For extra padding sections */
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
}

/* FLEXBOX SPACING & CARD STYLES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-sand);
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  flex: 1 1 280px;
  min-width: 240px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 30px rgba(108, 130, 98, 0.13);
  transform: translateY(-5px) scale(1.01);
}
.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) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 18px;
  margin-bottom: 16px;
}
.feature {
  background: var(--color-moss);
  border-radius: 27px 12px 28px 19px / 26px 28px 19px 27px;
  box-shadow: var(--shadow-card);
  padding: 24px 22px;
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature:hover {
  background: #e5f4ed;
  transform: translateY(-4px) scale(1.03);
}

/* OTHER FLEX LAYOUTS USED BY HTML */
.inspiration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.inspiration-item {
  background: var(--color-sand);
  border-radius: 24px 18px 32px 16px/18px 24px 14px 32px;
  box-shadow: var(--shadow-card);
  padding: 22px 18px;
  flex: 1 1 200px;
  min-width: 180px;
  transition: box-shadow 0.19s, transform 0.18s;
}
.inspiration-item:hover {
  box-shadow: 0 7px 28px rgba(140, 170, 120, 0.13);
  transform: translateY(-3px) scale(1.01);
}
.place-description-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.place-desc {
  background: var(--color-moss);
  border-radius: 26px 24px 17px 24px/18px 22px 20px 26px;
  box-shadow: var(--shadow-card);
  padding: 18px 20px 22px 20px;
  flex: 1 1 170px;
  min-width: 150px;
  transition: box-shadow 0.19s;
}
.place-desc:hover {
  background: #dbe5cf;
}
.top-places-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.top-places-list > li {
  margin-bottom: 6px;
}
.text-section {
  margin-bottom: 32px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  padding-right: 28px;
  background: #fff;
  border-radius: 28px 15px 15px 28px / 22px 30px 28px 22px;
  box-shadow: 0 6px 22px rgba(140, 170, 120, 0.13);
  margin-bottom: 20px;
  flex: 1 1 320px;
  min-width: 240px;
  transition: box-shadow 0.17s, transform 0.15s;
  z-index: 1;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(77, 110, 98, 0.14);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-content p {
  color: #253122;
  font-size: 1.01rem;
  margin-bottom: 10px;
}
.testimonial-name {
  font-size: 0.91rem;
  color: #52733b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  letter-spacing: 0.01em;
}
@media (max-width: 850px) {
  .features-grid,
  .card-container,
  .place-description-list,
  .inspiration-grid,
  .testimonials-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .card, .testimonial-card, .inspiration-item, .place-desc {
    min-width: unset;
    max-width: 100%;
  }
}

/* BUTTONS & INTERACTIVE ELEMENTS */
.cta-btn, .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 38px;
  background: var(--color-leaf);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: var(--border-radius-btn);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: background 0.19s, color 0.19s, transform 0.12s, box-shadow 0.18s;
  margin-top: 22px;
  margin-bottom: 10px;
  letter-spacing: 0.015em;
}
.cta-btn:hover, .cta-btn:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: #3d7e51;
  color: #efe4cf;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 12px rgba(44,62,80,0.14);
}

button, .mobile-menu-toggle, .mobile-menu-close {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* HEADER & NAVIGATION */
header {
  background: #FFECC9;
  border-bottom: 1px solid #e7ddc1;
  box-shadow: 0 1px 8px rgba(44,62,80,0.02);
  padding: 0 0 2px 0;
  position: relative;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 18px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  color: var(--color-primary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 14px;
  border-radius: 14px;
  transition: background 0.18s, color 0.13s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-moss);
  color: #356e6a;
}

/* Hide mobile menu button on desktop */
.mobile-menu-toggle {
  display: none;
  background: var(--color-leaf);
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: background 0.15s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #3d7e51;
  color: #ece5d1;
}

@media (max-width: 900px) {
  header .container nav,
  header .container .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MOBILE NAVIGATION SLIDE-IN */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F9F9F9;
  box-shadow: 1px 0 12px rgba(44,62,80,0.10);
  z-index: 2050;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.77,.2,.05,1.0);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #2C3E50;
  font-size: 2.2rem;
  margin: 0 16px 24px 0;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.mobile-menu-close:hover {
  background: var(--color-moss);
  color: #345e3b;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding-left: 30px;
  margin-top: 12px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 0;
  border-radius: 10px;
  display: block;
  width: fit-content;
  transition: background 0.13s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-moss);
  color: var(--color-secondary);
}

/* FOOTER */
footer {
  background: #e8e7df;
  border-top: 2px solid #dbe5cf;
  padding: 36px 0 22px 0;
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 38px;
}
footer nav a {
  font-size: 1rem;
  color: #384034;
  transition: color 0.14s;
}
footer nav a:hover {
  color: #47674f;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.96rem;
  color: #4b5650;
  margin-top: 10px;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
}
footer a {
  color: #47674f;
}
@media (max-width: 980px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  footer nav {
    margin-right: 0;
    flex-direction: row;
    gap: 18px;
    flex-wrap: wrap;
  }
}

/* COOKIES CONSENT BANNER */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffef8;
  border-top: 2px solid #e3dbad;
  box-shadow: 0 -4px 22px rgba(185,180,112,0.12);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 26px 16px 22px;
  font-size: 1rem;
}
#cookie-consent-banner .cookie-btn {
  background: var(--color-leaf);
  color: #fff;
  font-weight: 700;
  margin: 0 7px 0 0;
  min-width: 116px;
  border-radius: var(--border-radius-btn);
  font-size: 1rem;
}
#cookie-consent-banner .cookie-btn.settings {
  background: #b6be92;
  color: #21321c;
}
#cookie-consent-banner .cookie-btn.reject {
  background: #DE7261;
  color: #fffef8;
}
#cookie-consent-banner .cookie-btn.settings:hover {
  background: #9EA884;
}
#cookie-consent-banner .cookie-btn.reject:hover {
  background: #a95f54;
}

@media (min-width: 600px) {
  #cookie-consent-banner {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    font-size: 1.1rem;
    padding: 26px 38px 22px;
  }
}
/* Cookie Modal Pop-up */
#cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(60,75,38,0.22);
  z-index: 4400;
  display: none;
  align-items: center;
  justify-content: center;
}
#cookie-modal-backdrop.open {
  display: flex;
}
#cookie-modal {
  background: #fffce9;
  border-radius: 28px;
  max-width: 95vw;
  width: 400px;
  padding: 36px 30px 30px;
  box-shadow: 0 8px 28px rgba(88,100,79,0.12);
  z-index: 4500;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: modalIn 0.32s cubic-bezier(.77,.2,.25,1.0);
}
@keyframes modalIn {
  from { transform: translateY(95px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
#cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--color-primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.cookie-category label {
  cursor: pointer;
}
.cookie-toggle {
  width: 42px;
  height: 23px;
  background: #e4ead8;
  border-radius: 23px;
  border: 1px solid #b9c2a9;
  position: relative;
  margin-left: 7px;
  transition: background 0.14s;
  display: inline-block;
}
.cookie-toggle.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--color-leaf);
  transition: left 0.16s cubic-bezier(.7,.4,.32,1.5), background 0.16s;
}
.cookie-toggle[data-checked="true"] {
  background: #A2DB88;
}
.cookie-toggle[data-checked="true"]:before {
  left: 21px;
  background: #52733b;
}
#cookie-modal .cookie-btn {
  margin-top: 10px;
  margin-bottom: 0;
  min-width: 100px;
}
#cookie-modal .cookie-btn.cancel {
  background: #BC9B6A;
}
#cookie-modal .cookie-btn.cancel:hover {
  background: #836d47;
}
#cookie-modal .close-modal-btn {
  position: absolute;
  top: 10px; right: 12px;
  font-size: 1.3rem;
  background: none;
  border: none;
  color: #78782d;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.1s;
}
#cookie-modal .close-modal-btn:hover {
  background: #ece7ce;
}

/* LISTS, CHECKLISTS, ETC. */
ul, ol {
  padding-left: 18px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 9px;
}

/* ORGANIC, EARTHY ACCENTS */
.content-wrapper {
  border-left: 5px solid #A2DB88;
  border-bottom: 2px solid #eedebe;
  background: linear-gradient(98deg, #f9f9f9 88%, #e9eedb 100%);
}
h1, h2, h3 {
  text-shadow: 0 1px 0 #EFE4CF44;
}

/* RESPONSIVE STYLES */
@media (max-width: 650px) {
  .container, .content-wrapper {
    padding: 0 7px;
  }
  .content-wrapper {
    padding: 30px 8px;
  }
  header .container {
    padding: 0 7px;
  }
  .section {
    padding: 30px 7px;
  }
}

/* GENERAL RESPONSIVE UTILITY */
@media (max-width: 600px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 9px;
    padding-right: 9px;
  }
  .testimonials-grid, .features-grid, .place-description-list, .inspiration-grid, .card-container {
    gap: 14px;
  }
}

/* FORMS, INPUTS (minimal) */
input, textarea, select {
  min-width: 0;
  font-size: 1rem;
  padding: 10px 13px;
  border: 1px solid #bdd9ba;
  border-radius: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fcfaf7;
  transition: border 0.13s;
  margin-bottom: 14px;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-leaf);
  outline: none;
}

/* MISCELLANEOUS */
::-webkit-input-placeholder { color: #B6BE92; }
:-ms-input-placeholder { color: #B6BE92; }
::placeholder { color: #B6BE92; }

/* Hide scrollbars on mobile menu when closed */
.mobile-menu {
  overflow-y: auto;
}
body.mobile-menu-open {
  overflow: hidden;
}

/* MINIMUM MARGIN BETWEEN CARDS/SECTIONS */
.card,
.feature,
.place-desc,
.inspiration-item,
.testimonial-card,
.section,
.content-wrapper {
  margin-bottom: 20px;
}

/* ENSURE NO GRID, NO COLUMN USAGE (critical) */
/* FLEX ONLY: Already applied everywhere above. No grid or column CSS used. */
