/* -------------------------------------------------
   CSS RESET & NORMALIZE
--------------------------------------------------- */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  font-size: 16px;
  background: #FAF6F2;
}
body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #20563C;
  min-height: 100vh;
  line-height: 1.6;
  background-color: #FAF6F2;
  /* slightly off-white, warm undertone */
}
img, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}
a {
  color: #20563C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A75831;
  text-decoration: underline;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #20563C;
  margin-bottom: 0.7em;
}
h1 {
  font-size: 2.6rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
  color: #B67540;
}
h4, h5 {
  font-size: 1.1rem;
}
p, li {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  color: #2C3D2B;
}
strong {
  color: #783512;
  font-weight: 700;
}

/* -------------------------------------------------
   GLOBAL UTILITIES & LAYOUT
--------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFDFB;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(193, 151, 110, 0.07);
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Flex spacing patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #FFFDFB;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 3px 18px rgba(193, 151, 110, 0.11);
  transition: box-shadow 0.25s, transform 0.15s;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 280px;
}
.card:hover {
  box-shadow: 0 6px 26px rgba(193, 151, 110, 0.17);
  transform: translateY(-4px) 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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: #FFF8F2;
  box-shadow: 0 3px 18px rgba(193, 151, 110, 0.08);
  border-radius: 24px;
  margin-bottom: 20px;
  flex-direction: column;
  max-width: 560px;
  min-width: 220px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #20563C;
  margin-bottom: 6px;
  font-style: italic;
}
.testimonial-card span {
  font-weight: 600;
  font-size: 0.95rem;
  color: #8B633F;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature grid overrides */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
}
.feature-grid li {
  background: #FFFDFB;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(193, 151, 110, 0.08);
  padding: 30px 20px 24px 20px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.22s, transform 0.13s;
}
.feature-grid li:hover {
  box-shadow: 0 7px 26px rgba(193, 151, 110, 0.18);
  transform: translateY(-5px) scale(1.015);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #C1976E12;
  padding: 5px;
  margin-bottom: 10px;
}

/* Service list (specific for experiences page) */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.service-list > div {
  background: #FFFDFB;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(193, 151, 110, 0.07);
  padding: 22px 16px;
  flex: 1 1 180px;
  min-width: 170px;
  text-align: center;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}

/* Address block on contact */
.address-block {
  background: #FFF8F2;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(193,151,110,0.09);
  margin-bottom: 22px;
}

/* Pricing overview (reisen-touren.html) */
.pricing-overview {
  background: #FFF7EC;
  color: #783512;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 12px;
  margin: 18px 0 0 0;
}


/* -------------------------------------------------
   NAVIGATION & HEADER
--------------------------------------------------- */
header {
  background: #FFFFFFC7;
  box-shadow: 0 2px 16px rgba(32, 86, 60, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 22px 20px 8px 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #20563C;
  padding: 8px 13px;
  border-radius: 13px;
  transition: background 0.18s, color 0.16s, box-shadow 0.17s;
  position: relative;
  white-space: nowrap;
}
.main-nav a.cta {
  background: #C1976E;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(193, 151, 110, 0.17);
  padding: 10px 24px;
  font-size: 1.13rem;
  letter-spacing: 0.02em;
  margin-left: 10px;
  font-weight: 700;
  transition: background 0.18s, color 0.14s, transform 0.17s;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #B67540;
  color: #fffbea;
  transform: scale(1.04);
  box-shadow: 0 4px 22px rgba(32, 86, 60, 0.18);
}
.main-nav a:hover:not(.cta), .main-nav a:focus:not(.cta) {
  background: #F7EDE4;
  color: #B67540;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 16px;
}

.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #C1976E;
  font-size: 2.1rem;
  border: none;
  border-radius: 12px;
  padding: 6px 16px 6px 10px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(193, 151, 110, 0.15);
  position: absolute;
  right: 16px;
  top: 15px;
  z-index: 52;
  transition: background 0.18s, color 0.13s, box-shadow 0.14s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F7EDE4;
  color: #B67540;
}

/* -------------------------------------------------
   MOBILE MENU OVERLAY
--------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(250, 246, 242, 0.96);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.42,0,0.58,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FFF8F2;
  color: #C1976E;
  font-size: 2.1rem;
  border: none;
  border-radius: 13px;
  padding: 5px 16px 5px 10px;
  align-self: flex-end;
  margin-right: 22px;
  margin-top: 6px;
  cursor: pointer;
  box-shadow: 0 1px 10px rgba(193, 151, 110, 0.13);
  transition: background 0.16s, color 0.17s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #F7EDE4;
  color: #B67540;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin: 36px 0 0 36px;
}
.mobile-nav a {
  color: #20563C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  padding: 12px 8px 12px 0;
  border-radius: 11px 0 0 11px;
  margin-bottom: 4px;
  transition: background 0.16s, color 0.14s;
  font-weight: 600;
  letter-spacing: 0.015em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7EDE4;
  color: #B67540;
}

@media (max-width: 980px) {
  .main-nav a.cta {
    padding: 8px 9px;
    font-size: 1rem;
  }
  .main-nav {
    gap: 13px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 4px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .main-nav img {margin-right: 9px; height: 32px;}
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 821px) {
  .mobile-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: none;
  }
}


/* -------------------------------------------------
   HERO SECTION
--------------------------------------------------- */
.hero {
  background: linear-gradient(101deg, #FFFAF4 85%, #FFF4E5 100%);
  padding: 64px 0 60px 0;
  margin-bottom: 60px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 7px 44px rgba(193,151,110,0.06);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 670px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero h1 {
  color: #20563C;
  font-size: 2.6rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
}
.hero p {
  color: #623414;
  font-size: 1.16rem;
  margin-bottom: 13px;
}
.hero .cta {
  margin-top: 8px;
  align-self: flex-start;
}

/* -------------------------------------------------
   BUTTONS AND CTA
--------------------------------------------------- */
.cta,
button.cta,
input[type="submit"].cta {
  display: inline-block;
  background: #C1976E;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 19px;
  padding: 13px 36px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.018em;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(193,151,110,0.16);
  transition: background 0.20s, color 0.16s, box-shadow 0.17s, transform 0.23s;
  margin-right: 8px;
}
.cta:hover,
.cta:focus {
  background: #B67540;
  color: #FFFDEA;
  transform: scale(1.045);
  box-shadow: 0 6px 22px rgba(193,151,110,0.30);
}
.cta.secondary {
  background: #20563C;
  color: #fff;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #16482D;
  color: #fff5e4;
}


/* -------------------------------------------------
   FEATURES & ABOUT
--------------------------------------------------- */
.features, .about, .services, .contact {
  margin-bottom: 60px;
  padding: 40px 0px;
}
.features > .container > .content-wrapper, 
.about > .container > .content-wrapper,
.services > .container > .content-wrapper {
  gap: 34px;
}
.features ul,
.about ul,
.services ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}
.features li,
.about li,
.services li {
  margin-bottom: 14px;
  padding-left: 0px;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline li {
  margin-left: 0px;
  padding-left: 0;
  padding-bottom: 8px;
}


/* -------------------------------------------------
   TESTIMONIALS
--------------------------------------------------- */
.testimonials {
  margin-bottom: 60px;
  padding: 30px 0;
}
.testimonials .content-wrapper {
  gap: 26px;
}
.testimonial-card {
  background: #FFF8F2;
  box-shadow: 0 3px 18px rgba(193, 151, 110, 0.09);
  border-radius: 24px;
  margin-bottom: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  max-width: 570px;
  min-width: 220px;
  border: 1.5px solid #F4E0D0;
  transition: box-shadow 0.17s, transform 0.11s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 23px rgba(193,151,110,0.17);
  transform: scale(1.018);
}
.testimonial-card p, .testimonial-card span {
  color: #20563C;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #20563C;
  margin-bottom: 6px;
  font-style: italic;
}
.testimonial-card span {
  font-weight: 600;
  font-size: 0.97rem;
  color: #B67540;
}


/* -------------------------------------------------
   CONTACT 
--------------------------------------------------- */
.contact .cta,
.contact .cta.secondary {
  margin-top: 18px;
}

.contact-info {
  margin-top: 12px;
  background: #FAEDDF;
  border-radius: 16px;
  box-shadow: 0 1px 6px rgba(193,151,110,0.08);
  padding: 19px 18px;
  color: #20563C;
}
.contact-info a, .contact-info p, .contact-info br {
  color: #20563C;
  font-size: 1rem;
}
.contact-info a:hover {
  color: #B67540;
  text-decoration: underline;
}


/* -------------------------------------------------
   FOOTER
--------------------------------------------------- */
footer {
  background: #20563C;
  color: #fff;
  padding-top: 34px;
  padding-bottom: 26px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -2px 18px rgba(32,86,60,0.09);
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 34px;
  justify-content: space-between;
  width: 100%;
}
footer .footer-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 34px;
}
footer .footer-menu a {
  color: #FAF6F2;
  font-weight: 600;
  transition: color 0.16s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
footer .footer-menu a:hover, footer .footer-menu a:focus {
  color: #FFD2A5;
}
footer .contact-info {
  background: transparent;
  color: #FFFDFB;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  font-size: 0.97rem;
}
footer .contact-info a {
  color: #FFD2A5;
  text-decoration: underline;
}
footer .contact-info a:hover {
  color: #FFF;
}
footer .social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin: 6px 0;
}
footer .social-links img {
  height: 29px;
  filter: grayscale(0.25) brightness(1.09);
  transition: filter 0.19s, transform 0.16s;
  cursor: pointer;
}
footer .social-links img:hover {
  filter: none;
  transform: scale(1.07);
}


/* -------------------------------------------------
   RESPONSIVE DESIGN (MOBILE FIRST)
--------------------------------------------------- */
@media (max-width: 1250px) {
  .container { max-width: 96%; }
}
@media (max-width: 980px) {
  .content-wrapper,
  .feature-grid {
    gap: 16px;
  }
  section, .section {
    padding: 32px 9px;
  }
  .hero {
    padding: 38px 0 37px 0;
  }
  .feature-grid li, .card {
    padding: 21px 7px 18px 13px;
    max-width: 99vw;
  }
  .card {
    padding: 20px 10px;
  }
}
@media (max-width: 820px) {
  .content-wrapper,
  .feature-grid,
  .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li,
  .service-list > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .about, .features, .services, .testimonials, .contact, section, .section {
    padding: 29px 6px;
    margin-bottom: 36px;
  }
  .hero { padding: 17vw 0 10vw 0; border-radius: 0 0 18vw 18vw; }
  h1 {font-size: 2rem;}
  h2{font-size:1.3rem;}
}
@media (max-width: 600px) {
  html { font-size: 15px; }
  .container {padding: 0 6px;}
  .feature-grid {gap: 11px;}
  .content-grid {gap: 11px;}
  .testimonials .content-wrapper { gap: 13px; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .container {padding: 0 2px;}
}

/* Text-image sections stack column on mobile */
@media (max-width: 768px) {
  .text-image-section, .content-grid, .card-container { flex-direction: column; gap: 16px; }
}

/* -------------------------------------------------
   COOKIE CONSENT BANNER
--------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #463828f8;
  box-shadow: 0 -2px 28px rgba(193,151,110,0.17);
  color: #fff;
  z-index: 998;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 44px;
  padding: 25px 28px;
  justify-content: space-between;
  font-size: 1rem;
  animation: cookieFadeIn 0.5s;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-content {
  flex: 1 1 390px;
  max-width: 540px;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  align-items: center;
}
.cookie-banner button {
  background: #C1976E;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 9px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-right: 2px;
  transition: background 0.17s, color 0.14s, box-shadow 0.12s;
  box-shadow: 0 1px 7px rgba(193,151,110,0.15);
}
.cookie-banner button:hover,.cookie-banner button:focus {
  background: #987146;
  color: #fffcc3;
}
.cookie-banner button.cookie-reject {
  background: transparent;
  color: #FFD2A5;
  border: 1.5px solid #FFD2A5;
  box-shadow: none;
  transition: background 0.16s, color 0.16s, border 0.19s;
}
.cookie-banner button.cookie-reject:hover,.cookie-banner button.cookie-reject:focus {
  background: #FFD2A5;
  color: #463828;
  border: 1.5px solid #FFD2A5;
}
.cookie-banner button.cookie-settings {
  background: #20563C;
  color: #FFD2A5;
}
.cookie-banner button.cookie-settings:hover,.cookie-banner button.cookie-settings:focus {
  background: #fff;
  color: #20563C;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    padding: 13px 7px 13px 7px;
    gap: 16px;
    font-size: 0.90rem;
  }
  .cookie-banner .cookie-actions {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  z-index: 2000;
  left: 50%;
  top: 50%;
  width: 94vw;
  max-width: 420px;
  background: #FFFDFB;
  color: #20563C;
  border-radius: 22px;
  box-shadow: 0 4px 40px rgba(193,151,110,0.23);
  padding: 38px 26px 22px 26px;
  transform: translate(-50%, -54%) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  color: #B67540;
  font-size: 1.25rem;
  margin-top: 0;
}
.cookie-modal ul {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-toggle {
  accent-color: #C1976E;
  width: 1.3rem;
  height: 1.3rem;
  margin-right: 3px;
  border-radius: 8px;
}
.cookie-modal .modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 19px;
}
.cookie-modal button {
  background: #C1976E;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 9px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #B67540;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 21px 7px 16px 7px;
  }
}

/* -------------------------------------------------
   MISC, GENERAL
--------------------------------------------------- */
::-webkit-input-placeholder { color: #A2785D; opacity:.85; }
::-moz-placeholder { color: #A2785D; opacity:.85; }
:-ms-input-placeholder { color: #A2785D; opacity:.85; }
::placeholder { color: #A2785D; opacity:.85; }

hr {
  border: none;
  border-top: 1px solid #E8DBC7;
  margin: 28px 0;
}


/*  
   ------------
   ACCESSIBILTY
   ------------
*/
:focus-visible {
  outline: 2px solid #C1976E;
  outline-offset: 2px;
}

/*  
   -------------
   NICE ANIMATIONS
   -------------
*/
.cta, .main-nav a, .feature-grid li, .card, .testimonial-card, .footer-menu a {
  transition: 
    background 0.17s,
    color 0.16s,
    box-shadow 0.19s,
    transform 0.15s;
}

/*  Prevent overlapping for cards and grid content */
.content-grid > *, .card-container > *, .feature-grid > *, .service-list > *, .testimonial-card {
  margin-bottom: 20px;
}

/*  
   ------------
   TAGLINE STYLING
   ------------
*/
.tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #B67540;
  margin-bottom: 10px;
  letter-spacing: 0.013em;
}

/* Hide visually on print */
@media print {
  header, nav, .main-nav, .mobile-menu, footer, .cta, .cookie-banner, .cookie-modal {
    display: none !important;
  }
}

/* Classes for utilities and error messages (in case of forms) */
.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}

/*
  End of CSS
*/