/* =======================
   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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background-color: #F4EFE6;
  color: #3B2C22;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #39655B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C97C25;
  outline: none;
}
ul, ol {
  margin-left: 1.25em;
}

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

:root {
  --mr-primary: #39655B;
  --mr-secondary: #89A289;
  --mr-accent: #F4EFE6;
  --mr-brown: #C97C25;
  --mr-dark: #3B2C22;
  --mr-pink: #E5C4B0;
  --mr-bg: #F4EFE6;
  --mr-shadow: rgba(56,44,22, 0.08);
  --mr-radius: 16px;
  --mr-border: 2px dashed var(--mr-brown);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  color: var(--mr-primary);
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.08rem; }
}

p, li, span, label, input, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--mr-dark);
}

strong {
  color: var(--mr-brown);
  font-weight: 700;
}
em {
  color: var(--mr-primary);
}

/* =============
   CONTAINER & LAYOUT
   ============= */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--mr-bg);
}
@media (max-width: 600px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFDF7;
  border: var(--mr-border);
  border-radius: var(--mr-radius);
  box-shadow: 0 6px 24px var(--mr-shadow);
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 10px 36px rgba(57,101,91,0.14);
  transform: translateY(-3px) scale(1.01) rotate(-1deg);
}

.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: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #FAF6ED;
  border: 2px dotted var(--mr-brown);
  border-radius: var(--mr-radius);
  box-shadow: 0 4px 18px rgba(57,101,91,0.07);
}
.testimonial-card p {
  color: var(--mr-dark);
  font-size: 1.11rem;
  font-family: 'Merriweather', Georgia, serif;
}
.testimonial-card strong {
  color: var(--mr-brown);
}
.testimonial-card span {
  font-size: 0.98rem;
  font-family: 'Roboto', sans-serif;
  color: var(--mr-primary);
  letter-spacing: 0.03em;
}
.testimonial-card div {
  color: var(--mr-brown);
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 1.11rem;
}

.star-ratings {
  margin: 16px 0 24px 0;
  color: var(--mr-brown);
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  background: var(--mr-accent);
  border-radius: 8px;
  padding: 10px 16px 9px 16px;
  box-shadow: 0 2px 6px rgba(201,124,37,0.07);
}

.experience-snippets {
  background: #FFF9F2;
  border-left: 3px solid var(--mr-brown);
  padding: 18px 20px;
  margin-top: 10px;
  border-radius: 8px;
}

ol.process-steps {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  list-style-position: inside;
  background: var(--mr-accent);
  border-radius: 14px;
  padding: 16px 18px;
}
@media (max-width:600px) {
  ol.process-steps {
    flex-direction: column;
    gap: 12px;
  }
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  background-color: var(--mr-primary);
  padding: 0;
  border-bottom: 2px solid var(--mr-secondary);
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 6px 16px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
header nav a {
  color: #FFFDF6;
  font-weight: 500;
  border-radius: 10px;
  padding: 6px 12px;
  background: transparent;
  font-family: 'Merriweather', serif;
  font-size: 1.01rem;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--mr-secondary);
  color: var(--mr-primary);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mr-brown);
  color: #fff9f3;
  font-family: 'Merriweather', serif;
  font-weight: bold;
  font-size: 1.10rem;
  border: none;
  border-radius: 14px;
  padding: 10px 24px;
  box-shadow: 0 4px 16px rgba(201,124,37,0.13);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.17s, box-shadow 0.17s, transform 0.15s;
  margin-left: 18px;
  outline: none;
}
.cta-btn:active {
  transform: scale(0.97);
}
.cta-btn:hover, .cta-btn:focus {
  background: #a26217;
  color: #FFFDF6;
  box-shadow: 0 8px 36px rgba(201,124,37,0.19);
}

.mobile-menu-toggle {
  display: none;
  background: var(--mr-brown);
  color: #FFFDF6;
  border: none;
  border-radius: 12px;
  font-size: 2rem;
  line-height: 1;
  padding: 6px 15px 4px 15px;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s, transform 0.2s;
  z-index: 110;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #a26217;
}

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

/* ============================
   MOBILE MENU (Burger Nav)
   ============================ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: var(--mr-accent);
  box-shadow: 0 8px 38px rgba(57,101,91,0.07);
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(0.68, -0.55, 0.45, 1.2);
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 20px 0 0;
  background: var(--mr-brown);
  color: #FFFDF6;
  border: none;
  border-radius: 12px;
  font-size: 2.2rem;
  padding: 7px 14px 6px 8px;
  cursor: pointer;
  transition: background 0.17s;
  z-index: 201;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #a26217;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  margin: 42px 0 0 36px;
}
.mobile-nav a {
  color: var(--mr-primary);
  font-family: 'Merriweather', serif;
  font-size: 1.23rem;
  background: none;
  border-radius: 9px;
  padding: 10px 16px;
  font-weight: bold;
  transition: background 0.19s, color 0.19s, outline 0.19s;
  outline: none;
  position: relative;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--mr-secondary);
  color: #FFFDF6;
}

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

/* =======================
   FOOTER
   ======================= */
footer {
  background: #1B302A;
  color: #FFFDF6;
  padding: 38px 0 0 0;
  border-top: 2px solid var(--mr-secondary);
}
footer .container {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding-bottom: 18px;
}
footer img {
  height: 46px;
  margin-bottom: 12px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-bottom: 6px;
}
footer nav a {
  color: #FFFDF6;
  font-family: 'Merriweather', serif;
  font-size: 0.99rem;
  opacity: 0.82;
  padding: 6px 9px;
  border-radius: 7px;
  transition: background 0.16s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--mr-secondary);
  color: var(--mr-primary);
  opacity: 1;
}
footer p {
  color: #e9ede0;
  font-size: 0.97rem;
  margin-top: 7px;
  opacity: 0.92;
}

/* ==========================
   BUTTON & INTERACTION
   ========================== */
button, .cta-btn {
  outline: none;
  border: none;
}
button:focus, .cta-btn:focus {
  outline: 2px solid var(--mr-brown);
  outline-offset: 2px;
}

/* ===============
   CARD STYLES
   =============== */
.service-detail-card {
  background: #fffdf7;
  border: 2px dashed var(--mr-primary);
  box-shadow: 0 3px 14px var(--mr-shadow);
  border-radius: var(--mr-radius);
  padding: 28px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-detail-card:hover {
  box-shadow: 0 8px 34px rgba(57,101,91,0.15);
  transform: translateY(-2px) scale(1.01) rotate(0.4deg);
}

.info-box {
  background: #FAF6ED;
  border-left: 5px solid var(--mr-secondary);
  border-radius: 9px;
  padding: 16px 19px;
  margin-bottom: 18px;
  margin-top: 12px;
}

.tour-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 16px;
}
.tour-badges span {
  background: var(--mr-secondary);
  color: #fffdf6;
  border-radius: 10px;
  padding: 6px 13px;
  font-size: 0.97rem;
  font-family: 'Merriweather', serif;
  letter-spacing: 0.03em;
  font-weight: bold;
  box-shadow: 0px 2px 7px rgba(57,101,91,0.05);
}

/**** FAQ styles ****/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.faq-accordion h3 {
  font-size: 1.11rem;
  font-family: 'Merriweather', serif;
  color: var(--mr-brown);
  margin-bottom: 0;
}
.faq-accordion p {
  background: #fffaef;
  border-radius: 8px;
  padding: 7px 13px;
  margin-bottom: 9px;
  border-left: 2px solid var(--mr-primary);
}

/**** Timeline ****/
.timeline {
  margin-top: 24px;
  padding-left: 8px;
  border-left: 4px dashed var(--mr-secondary);
}
.timeline h3 {
  font-size: 1.13rem;
  margin-bottom: 9px;
  color: var(--mr-primary);
}
.timeline ul {
  padding-left: 4px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/**** Icon list items ****/
ul li, ol li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.01rem;
}
ul li img {
  width: 30px; height: 30px;
  background: #fffaef;
  border-radius: 8px;
  padding: 5px;
  margin-right: 3px;
  border: 1.5px solid var(--mr-secondary);
  box-shadow: 0 2px 7px rgba(137,162,137,0.09);
}

/**** Feature Items ****/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  background: #f5ede0;
  border-radius: 12px;
  padding: 16px 20px;
}

/**** Address, Email, Hours Boxes ****/
.address-box, .email-box, .hours-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  background: #FAF6ED;
  border-radius: 10px;
  padding: 8px 16px;
}
.address-box img, .email-box img, .hours-info img {
  width: 28px; height: 28px;
}

.contact-info-snippet {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 18px;
  background: #FAF6ED;
  padding: 13px 20px;
  border-radius: 7px;
}
.contact-info-snippet p {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info-snippet img {
  width: 22px; height: 22px;
}

/**** Info Grid (Kontakt) ****/
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 17px;
}
.info-grid > div {
  flex: 1 1 210px;
  background: #FFFDF6;
  border-radius: 10px;
  padding: 16px 13px 14px 13px;
  border: 2px dashed var(--mr-secondary);
  min-width: 185px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 12px rgba(137,162,137,0.07);
}
.info-grid img {
  width: 26px; height: 26px;
}

/**** Cookie Consent Banner (bottom fixed) ****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2030;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #FFF9F0;
  border-top: 3px solid var(--mr-brown);
  padding: 18px 12px;
  box-shadow: 0 -3px 18px rgba(201,124,37,0.13);
  gap: 32px;
  width: 100vw;
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(0.68, -0.55, 0.45, 1.2), opacity 0.24s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  max-width: 490px;
  color: var(--mr-dark);
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-btn {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 12px;
  border: none;
  padding: 9px 19px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
  margin: 0 3px;
  box-shadow: 0 2px 8px rgba(201,124,37,0.10);
}
.cookie-btn--accept {
  background: var(--mr-brown);
  color: #FFFDF6;
}
.cookie-btn--accept:hover, .cookie-btn--accept:focus {
  background: #b06819;
}
.cookie-btn--reject {
  background: var(--mr-secondary);
  color: #FFFDF6;
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: var(--mr-primary);
  color: #FFFDF6;
}
.cookie-btn--settings {
  background: transparent;
  color: var(--mr-brown);
  border: 2px dashed var(--mr-brown);
  transition: background 0.18s, color 0.18s;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #ffe9d3;
  color: var(--mr-primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-banner__buttons {
    gap: 10px;
  }
}

/**** COOKIE PREFERENCES MODAL ****/
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(57,101,91,0.19);
  z-index: 2031;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.22s;
}
.cookie-modal__content {
  background: #fff9f0;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(57,101,91,0.2);
  padding: 36px 30px 22px 30px;
  max-width: 410px;
  width: 98vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: var(--mr-brown);
  color: #FFFDF6;
  border: none;
  border-radius: 9px;
  font-size: 1.5rem;
  padding: 4px 10px;
  cursor: pointer;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  font-size: 1rem;
  font-family: 'Merriweather', serif;
}
.cookie-switch {
  width: 44px;
  height: 24px;
  background: var(--mr-secondary);
  border-radius: 15px;
  position: relative;
  display: inline-block;
  margin-left: 7px;
  transition: background 0.2s;
  vertical-align: middle;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 3px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: #fff9f0;
  border-radius: 50%;
  transition: transform 0.19s, background 0.17s;
  box-shadow: 0 1px 5px rgba(137,162,137,0.10);
}
.cookie-switch input:checked + .cookie-slider {
  transform: translateX(16px);
  background: var(--mr-brown);
}

/**** Impressionen rating stars ****/
.star-ratings strong {
  font-size: 1.08rem;
  color: var(--mr-brown);
}

/**** Miscellaneous Modern Retro Decor ****/
.section {
  background-color: #FFFDF6;
  border-radius: 22px;
  border: 2.6px dashed var(--mr-secondary);
  box-shadow: 0 2px 11px rgba(137,162,137,0.10);
}

/**** Modal fadein ****/
.cookie-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

/**** MOBILE-FIRST RESPONSIVENESS ****/
@media (max-width: 1200px) {
  .container { max-width: 990px; }
}
@media (max-width: 980px) {
  .container { max-width: 96vw; }
}
@media (max-width: 700px) {
  .content-wrapper {
    gap: 12px;
  }
  .info-grid {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  footer .container { padding: 0 4px; }
}

/**** TRANSITIONS ****/
.card, .service-detail-card, .testimonial-card, .info-box, .feature-item {
  transition: box-shadow 0.24s, transform 0.23s;
}
.cta-btn, button, .cookie-btn {
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, transform 0.15s;
}

/**** HIDE/SHOW UTILS ****/
.d-none { display: none!important; }

/* ============
   CLASSIC PATTERN BORDERS & DECOR LINES
   ============ */
.section {
  position: relative;
  overflow: hidden;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  left: 18px; right: 18px; bottom: 12px;
  height: 7px;
  background: repeating-linear-gradient(90deg, var(--mr-pink) 0 24px, transparent 24px 32px);
  opacity: 0.2;
  border-radius: 7px;
  z-index: 0;
  pointer-events: none;
}

/* =======================
   FORM ELEMENTS (minimal)
   ======================= */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 13px;
  border-radius: 9px;
  border: 2px dashed var(--mr-secondary);
  margin-bottom: 15px;
  background: #fffdf7;
  color: var(--mr-dark);
  width: 100%;
  box-shadow: 0 1px 4px rgba(137,162,137,0.08);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--mr-brown);
}

/**** THANK YOU & UTILITIES ****/
.thankyou {
  background: #F4EFE6;
  padding: 80px 24px 120px 24px;
  border-radius: 22px;
  margin: 0 auto 44px auto;
  text-align: center;
  margin-top: 44px;
}

/**** RETRO QUOTE MARKS FOR TESTIMONIALS ****/
.testimonial-card p:before {
  content: '\201C';
  font-size: 2rem;
  color: var(--mr-brown);
  font-family: 'Merriweather', serif;
  vertical-align: -15px;
  margin-right: 2px;
}
.testimonial-card p:after {
  content: '\201D';
  font-size: 2rem;
  color: var(--mr-brown);
  font-family: 'Merriweather', serif;
  vertical-align: sub;
  margin-left: 2px;
}

/**** DISABLE ABSOLUTE FOR CARDS, but allow for decors ****/
.card, .testimonial-card, .service-detail-card {
  position: relative;
  z-index: 1;
}

/******************
   ACCESSIBILITY
*******************/
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px dashed var(--mr-primary) !important;
  outline-offset: 2px;
}

/**** SCROLLBAR RETRO ****/
body {
  scrollbar-width: thin;
  scrollbar-color: var(--mr-secondary) #FFFDF6;
}
body::-webkit-scrollbar {
  width: 10px;
  background: #FFFDF6;
}
body::-webkit-scrollbar-thumb {
  background: var(--mr-secondary);
  border-radius: 10px;
}

/*********************************************
 *                 END                      *
 *********************************************/
