/* 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F5F7EB;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  position: relative;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #276E39;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #9AC237;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
}
strong {
  color: #276E39;
  font-weight: 700;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  color: #276E39;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  text-shadow: 3px 3px 0 #9AC23733;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  color: #6B9000;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  color: #444;
}
p, li, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #322f2a;
  margin-bottom: 16px;
}
blockquote {
  font-style: italic;
  color: #276E39;
  border-left: 4px solid #9AC237;
  background: #ffffff99;
  padding: 16px 20px;
  border-radius: 16px;
  margin: 0 0 8px 0;
}

/* GENERAL CONTAINERS & SECTIONS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* FLEXBOX LAYOUTS (MANDATORY CLASS PATTERNS) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 12px 0 #276E3910;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 280px;
}
.card:hover {
  box-shadow: 0 8px 20px 0 #276E3930;
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px 18px 28px;
  gap: 12px;
}
.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;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFFFFF;
  box-shadow: 0 2px 10px 0 #276E391f;
  border-radius: 14px;
  flex-wrap: wrap;
  position: relative;
  max-width: 700px;
  color: #121a14;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  margin-bottom: 60px;
  padding: 0;
  background: #276E39;
  color: #fff;
  min-height: 320px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 32px -6px #276E3955;
}
.hero .container {
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero h1,
.hero p,
.hero .cta-button {
  color: #fff;
}
.hero .cta-button {
  background: #9AC237;
  color: #1c391f;
  border: none;
  margin-top: 18px;
}

@media (max-width: 768px) {
  .hero .container {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 #276E3912;
  position: sticky;
  top: 0;
  z-index: 999;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}
header nav img {
  height: 36px;
  width: auto;
  margin-right: 16px;
}
header nav a {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 10px;
  border-radius: 6px;
  color: #276E39;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #F5F7EB;
  color: #6B9000;
}
.cta-button {
  background: #9AC237;
  color: #183518;
  padding: 10px 24px;
  font-family: 'Merriweather', serif;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 28px;
  font-weight: 700;
  font-size: 1.13rem;
  box-shadow: 0 3px 24px #9AC23744;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  margin-left: 12px;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #6B9000;
  color: #fff;
  transform: scale(1.04);
}

/* HAMBURGER MOBILE MENU */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    background: #9AC237;
    color: #fff;
    font-size: 2.3rem;
    border: none;
    border-radius: 12px;
    padding: 8px 16px 10px 16px;
    margin: 12px 16px 12px auto;
    cursor: pointer;
    z-index: 1012;
    box-shadow: 0 2px 12px #276E3930;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: #276E39;
    color: #fff;
  }
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #276E39F0;
  box-shadow: -6px 0 48px 0 #9AC23740;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.54,.18,.13,.96);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.3rem;
  border: none;
  align-self: flex-end;
  margin: 16px 24px 8px 0;
  cursor: pointer;
  z-index: 2110;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #9AC237;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  padding: 30px 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.33rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 8px 0;
  min-width: 205px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #9AC237;
  color: #183518;
}

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

/* FEATURES SECTION/cards */
.features ul,
.services ul,
.tour-highlights ul,
.accommodation-features ul,
.workshop-types ul,
.event-calendar ul,
.brand-values ul,
.team-highlight ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 20px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 18px;
}
.features ul li,
.services ul li,
.tour-highlights ul li,
.accommodation-features ul li,
.workshop-types ul li,
.event-calendar ul li,
.brand-values ul li,
.team-highlight ul li {
  list-style: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px #276E3912;
  padding: 20px;
  min-width: 200px;
  flex: 1 1 220px;
  border-left: 7px solid #9AC237;
  font-size: 1rem;
  margin-bottom: 0;
  transition: box-shadow 0.3s, border-color 0.25s;
  position: relative;
  min-height: 120px;
}
.features ul li img,
.services ul li img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 1px 2px #276E3940);
}
.features ul li:hover, .services ul li:hover {
  box-shadow: 0 6px 24px #276E393a;
  border-left: 7px solid #6B9000;
  z-index: 2;
}
.features ul li strong {
  color: #6B9000;
}
/* For lists without icons */
.features ul li:not(:has(img)) {
  border-left: 7px solid #276E39;
}

@media (max-width: 900px) {
  .features ul,
  .services ul,
  .tour-highlights ul,
  .accommodation-features ul,
  .workshop-types ul,
  .event-calendar ul,
  .brand-values ul,
  .team-highlight ul {
    flex-direction: column;
    gap: 20px;
  }
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  padding-top: 36px;
  padding-bottom: 36px;
  margin-bottom: 60px;
  border-radius: 20px 20px 38px 38px/30px 30px 12px 12px;
  box-shadow: 0 6px 32px -6px #276E3938;
}
.testimonial-card {
  background: #F5F7EB;
  border-left: 6px solid #276E39;
  box-shadow: 0 2px 32px #276E3911;
  margin-bottom: 20px;
  max-width: 750px;
  color: #183518;
}
.testimonial-rating-summary {
  font-size: 1.25rem;
  margin-top: 12px;
  color: #276E39;
  font-family: 'Merriweather', serif;
}

/* SECTION CTA */
.cta {
  background: #9AC237;
  color: #222;
  border-radius: 24px;
  margin-bottom: 60px;
  box-shadow: 0 2px 32px 0 #6B900024;
}
.cta h2, .cta p {
  color: #183518;
}
.cta .cta-button {
  background: #fff;
  color: #276E39;
  box-shadow: 0 3px 24px #ffffff60;
  border: 2px solid #9AC237;
  margin-top: 18px;
}
.cta .cta-button:hover,
.cta .cta-button:focus {
  background: #276E39;
  color: #fff;
}

/* FOOTER */
footer {
  background: #276E39;
  color: #fff;
  padding: 28px 0 14px 0;
  margin-top: 44px;
  box-shadow: 0 -4px 24px #276E3912;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
footer nav a {
  color: #fff;
  opacity: 0.88;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 13px;
  border-radius: 7px;
  font-size: 16px;
  transition: background 0.18s, opacity 0.18s;
}
footer nav a:hover,
footer nav a:focus {
  opacity: 1.0;
  background: #9AC237;
  color: #183518;
}
.footer-info {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  color: #fff;
  opacity: 0.82;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: #F5F7EB;
  border-radius: 13px;
  margin-top: 12px;
  box-shadow: 0 1px 8px #276E3911;
}
.map-placeholder img {
  width: 60px;
  height: 60px;
  margin-right: 16px;
}

/* LEGAL SECTIONS/LISTS */
.legal {
  background: #F5F7EB;
  border-radius: 14px;
  box-shadow: 0 1px 10px #276E3911;
}
.legal ul, .legal ol {
  margin-bottom: 20px;
  margin-left: 14px;
}
.legal li {
  margin-bottom: 9px;
}

/* INPUTS, FORMS (UTILITY) */
input, textarea, select, button {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
input, textarea, select {
  border-radius: 11px;
  border: 1.5px solid #b2cd9e;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 20px;
  background: #fff;
  color: #183518;
  transition: border-color 0.2s;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #276E39;
  outline: none;
}
button {
  cursor: pointer;
  font-weight: 700;
}

/* SUCCESS/DANKESCHÖN SCREEN */
.thank-you main .features {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 6px 18px #9AC23719;
}

/* ANIMATION/MICRO-INTERACTIONS */
.card, .features ul li, .testimonial-card, .cta-button {
  transition: box-shadow 0.23s, background 0.22s, color 0.2s, transform 0.18s;
}
.card:hover, .features ul li:hover, .cta-button:hover {
  transform: translateY(-4px) scale(1.018);
}

/* SPACING & WHITE SPACE */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 650px) {
  .section {
    padding: 20px 8px 27px 8px;
    margin-bottom: 34px;
  }
}
.card, .testimonial-card, .features ul li {
  margin-bottom: 20px;
}
.card-container, .content-grid, .text-image-section, .testimonial-card, .feature-item {
  gap: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1050px) {
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .hero { min-height: 180px; padding: 0; }
  .hero h1 { font-size: 1.75rem; margin-bottom: 12px; }
  .hero p { font-size: 1rem; }
}
@media (max-width: 600px) {
  .container, .section { padding-left: 3vw; padding-right: 3vw; }
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.12rem; }
  .testimonial-card { font-size: 0.98rem; }
  .cta-button {
    min-width: 140px;
    width: 100%;
    font-size: 1rem;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3000;
  background: #fff;
  box-shadow: 0 -2px 34px #276E3940;
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8vw 22px 7vw;
  border-top: 4px solid #9AC237;
  font-size: 1.05rem;
  animation: cookie-slide-in 0.7s cubic-bezier(.6,1.41,.67,1.01);
}
@keyframes cookie-slide-in {
  0%{transform:translateY(80px);opacity:0;}
  100%{transform:translateY(0);opacity:1;}
}
.cookie-banner p {
  margin-bottom: 0;
  color: #183518;
  font-size: 1rem;
  max-width: 480px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-direction: row;
  align-items: center;
}
.cookie-banner button {
  border-radius: 22px;
  border: none;
  padding: 8px 18px;
  font-size: 1.08rem;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  box-shadow: 0 2px 10px #276E3910;
  transition: background 0.17s, color 0.18s, box-shadow 0.1s;
  margin-left: 0 !important;
}
.cookie-accept-btn {
  background: #9AC237;
  color: #276E39;
}
.cookie-accept-btn:hover, .cookie-accept-btn:focus {
  background: #6B9000;
  color: #fff;
}
.cookie-reject-btn {
  background: #F5F7EB;
  color: #183518;
  border: 1.1px solid #c9d8ae;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #276E39;
  color: #fff;
}
.cookie-settings-btn {
  background: #276E39;
  color: #fff;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #9AC237;
  color: #276E39;
  border: 1.1px solid #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    padding: 17px 15px 17px 11px;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-btns {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }
  .cookie-banner button {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 7px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  z-index: 5000;
  background: #276E39C0;
  display: none;
  justify-content: center;
  align-items: center;
  animation: cookie-modal-fadein 0.39s cubic-bezier(.64,1.52,.53,1);
}
@keyframes cookie-modal-fadein {
  0%{opacity:0;} 100%{opacity:1;}
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 44px #276E3974;
  max-width: 420px;
  width: 96vw;
  padding: 34px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #6B9000;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #276E39;
}
.cookie-modal h2 {
  color: #276E39;
  font-size: 1.33rem;
  margin-bottom: 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid #e4f1c7;
}
.cookie-category:last-child {border-bottom: none;}
.cookie-toggle {
  margin-left: auto;
  margin-right: 0;
}
.cookie-toggle input[type="checkbox"] {
  appearance: none;
  width: 36px;
  height: 18px;
  background: #f1f9eb;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.2s;
  cursor: pointer;
}
.cookie-toggle input[type="checkbox"]:checked {
  background: #9AC237;
}
.cookie-toggle input[type="checkbox"]::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 4px #276E3929;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: left 0.2s;
}
.cookie-toggle input[type="checkbox"]:checked::before {
  left: 19px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 7px;
}
.cookie-modal-actions button {
  font-size: 1rem;
  border-radius: 17px;
  padding: 8px 16px;
}

/* VISUALS: ARTISTIC/UNIQUE */
.hero, .cta, .card, .testimonial-card, .features ul li {
  /* Subtle artistic effect: colored border shadow blob */
  position: relative;
}
.hero::after, .cta::after {
  content: '';
  position: absolute;
  top: -50px; right: -70px;
  width: 180px; height: 130px;
  border-radius: 54% 46% 43% 57% / 56% 40% 60% 44%;
  background: #9AC23722;
  z-index: 1;
  pointer-events: none;
}
.card::before, .features ul li::before {
  content: '';
  position: absolute; left: -24px; top: -18px;
  width: 38px; height: 78px;
  border-radius: 50%;
  background: #9AC23722;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.8px);
}

.testimonial-card::before {
  content: '';
  position: absolute; left: -17px; top: -8px;
  width: 25px; height: 80px;
  border-radius: 60%;
  background: #9AC23716;
  z-index: 0;
  pointer-events: none;
  filter: blur(2.7px);
}

/* MISC */
::-webkit-scrollbar {
  width: 8px;
  background: #F5F7EB;
}
::-webkit-scrollbar-thumb {
  background: #276E3933;
  border-radius: 13px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9AC23766;
}

/* HIGH CONTRAST IN TESTIMONIALS ON BG */
.testimonials .testimonial-card {
  background: #fff;
  color: #162014;
}

/* VISUAL HIERARCHY INSIDE TEXT BLOCKS */
.text-section h2,
.text-section h3 {
  margin-bottom: 7px;
}
.text-section p,
.text-section ul,
.text-section ol {
  margin-bottom: 16px;
}
.text-section .cta-button {
  margin-top: 10px;
  align-self: flex-start;
}

/* Special: in content wrappers, avoid overlap */
.content-wrapper > * {
  margin-bottom: 8px;
}

/***************
  END OF FILE
***************/
