/* -------------------------------------------
   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, input, button, textarea, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F7F9F9;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
main {
  flex: 1 0 auto;
}
a {
  color: #186A3B;
  text-decoration: underline;
  transition: color 0.2s;
  outline: none;
}
a:hover,
a:focus {
  color: #bfa046;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* -------------------------------------------
   LUXURY PREMIUM STYLES & BRAND COLORS
--------------------------------------------*/
:root {
  --brand-primary: #186A3B; /* deep green */
  --brand-secondary: #34495E; /* slate/navy */
  --brand-accent: #F7F9F9; /* off-white */
  --premium-gold: #bfa046;  /* rich gold */
  --premium-gold-darker: #a4831f;
  --premium-gold-light: #e9d6a7;
  --black: #121212;
  --white: #fff;
  --grey-light: #eaeaea;
  --grey: #888;
  --shadow-card: 0 6px 20px 0 rgba(25,34,37, 0.11);
  --radius: 14px;
}

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

html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--brand-accent);
  color: var(--black);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  color: var(--brand-secondary);
  margin-bottom: 22px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 2.6rem;
  color: var(--brand-primary);
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(191,160,70,0.10);
}
h2 {
  font-size: 2rem;
  color: var(--brand-secondary);
  border-left: 5px solid var(--premium-gold);
  padding-left: 14px;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 13px;
  color: var(--brand-primary);
}
.text-section h3 {
  margin-top: 20px;
}

strong, b {
  font-weight: 700;
}
em, i {
  font-style: italic;
}
small {
  font-size: 0.95em;
  color: var(--grey);
}

.tagline {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.18rem;
  color: var(--premium-gold);
  letter-spacing: 0.03em;
  font-weight: 600;
}

p {
  margin-bottom: 14px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* -------------------------------------------
   FLEXBOX SPACING & ALIGNMENT PATTERNS
--------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--brand-accent);
  border-radius: var(--radius);
  border-left: 5px solid var(--premium-gold);
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(95, 85, 40, 0.06);
  color: var(--brand-secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------------------------------
   LUXURY PREMIUM - BUTTONS & CTA
--------------------------------------------*/
.cta, .cta.primary {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 36px;
  border-radius: 32px;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(28, 26, 2, 0.05);
  border: none;
  transition: all 0.17s cubic-bezier(.71,.01,.76,1.02);
  background: var(--premium-gold);
  color: var(--brand-secondary);
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(255,255,255,0.08);
  outline: none;
}
.cta.primary {
  background: var(--premium-gold);
  color: var(--brand-secondary);
  border: 2px solid var(--premium-gold-darker);
}
.cta:hover, .cta:focus, .cta.primary:hover, .cta.primary:focus {
  background: var(--brand-primary);
  color: var(--white);
  border-color: var(--premium-gold);
  box-shadow: 0 6px 30px rgba(55, 51, 14, 0.09);
  transform: translateY(-2px) scale(1.03);
}

/* Link as button appearance for .cta in nav and footers */
nav .cta.primary,
nav .cta {
  margin-left: 14px;
  margin-right: 0;
}

/* -------------------------------------------
   HEADER & NAVIGATION
--------------------------------------------*/
header {
  background: var(--white);
  box-shadow: 0 3px 10px rgba(47, 45, 36, 0.06);
  padding: 0; 
  position: relative;
  z-index: 20;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  position: relative;
}
header nav > a img {
  height: 44px;
  width: auto;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 26px;
  list-style-type: none;
}
header nav ul li {
  margin-bottom: 0;
}
header nav ul li a {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.03rem;
  padding: 8px 0;
  color: var(--brand-secondary);
  text-decoration: none;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
}
header nav ul li a:hover, header nav ul li a:focus {
  color: var(--premium-gold);
  border-bottom: 2px solid var(--premium-gold);
}

/* Hide nav ul by default on mobile */
@media (max-width: 950px) {
  header nav ul {
    display: none;
  }
}

.mobile-menu-toggle {
  display: none;
}
@media (max-width: 950px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    padding: 6px 16px;
    background: none;
    border: none;
    color: var(--brand-primary);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 99;
    position: absolute;
    right: 32px;
    top: 21px;
  }
  .mobile-menu-toggle:focus,
  .mobile-menu-toggle:hover {
    background: #e6e0d8;
    color: var(--premium-gold);
  }
}

/* -------------------------------------------
   MOBILE MENU (OFFCANVAS STYLE)
--------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(52, 49, 39, 0.76);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s cubic-bezier(.7,.01,.83,.8), visibility 0s 0.25s;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.38s cubic-bezier(.6,.06,.51,1.19);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  padding: 12px 22px;
  align-self: flex-end;
  margin-top: 12px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10000;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--premium-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  max-width: 92vw;
  margin: 0 auto;
  box-shadow: 0 14px 42px 0 rgba(70, 65, 42,0.11);
  padding: 24px 0 14px 0;
  transform: translateX(-110vw);
  transition: transform 0.48s cubic-bezier(.6,.18,.88,.84);
}
.mobile-menu.open .mobile-nav {
  transform: translateX(0);
}
.mobile-nav a {
  display: block;
  padding: 17px 42px;
  font-size: 1.18rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  color: var(--brand-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--grey-light);
  transition: background 0.18s, color 0.14s;
  border-radius: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-primary);
  color: var(--premium-gold);
}

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

/* -------------------------------------------
   SECTIONS, CARD, FEATURES FLEXBOX
--------------------------------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: var(--brand-accent);
  border-radius: var(--radius);
}
@media (max-width: 650px) {
  section {
    padding: 24px 0;
    margin-bottom: 44px;
  }
}

/* Card container generic, used for tour/services cards, etc */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  flex: 1 1 310px;
  min-width: 270px;
  max-width: 400px;
  margin-bottom: 20px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 21px;
  border-left: 4px solid var(--premium-gold);
  transition: box-shadow 0.16s, transform 0.17s;
}
.service-card:hover {
  box-shadow: 0 9px 22px rgba(191,160,70,0.13);
  transform: translateY(-3px) scale(1.02);
}
.tour-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--premium-gold);
  font-size: 1.01em;
  font-weight: 600;
}

/* Feature list with icons */
ul {
  list-style: none;
  padding-left: 0;
}
ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08em;
  color: var(--brand-secondary);
  margin-bottom: 12px;
}
ul li img {
  height: 29px;
  width: 29px;
  margin-right: 4px;
  border-radius: 6px;
  background: var(--brand-accent);
  border: 1px solid var(--grey-light);
  padding: 3px;
}

@media (max-width: 900px) {
  .card-container, .content-grid, .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .service-card {
    max-width: 100%;
    min-width: 0;
    margin-right: 0;
  }
}

/* Content wrapper generic spacing */
.content-wrapper > * {
  margin-bottom: 0;
}

/* -------------------------------------------
   TABLES - Preise Page
--------------------------------------------*/
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin: 0 0 20px 0;
  font-size: 1.04rem;
}
thead {
  background: var(--brand-primary);
  color: var(--white);
}
thead th {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.04rem;
  padding: 18px 8px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
tbody td {
  padding: 16px 8px;
  border-bottom: 1px solid #e3e3e3;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:nth-child(even) td {
  background: #f5f5f6;
}
tfoot td {
  padding: 14px 8px;
}

/* -------------------------------------------
   FAQ STYLES
--------------------------------------------*/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px 22px;
  border-left: 4px solid var(--brand-primary);
  margin-bottom: 12px;
}
.faq-item h3 {
  font-size: 1.18rem;
  color: var(--brand-secondary);
  margin-bottom: 7px;
}

/* -------------------------------------------
   TESTIMONIAL CARDS
--------------------------------------------*/
.testimonial-card p {
  color: var(--brand-secondary);
  font-size: 1.1em;
  margin-bottom: 6px;
}
.testimonial-card div {
  font-size: 1.35em;
  color: var(--premium-gold);
  letter-spacing: 2px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}

/* -------------------------------------------
   FOOTER
--------------------------------------------*/
footer {
  background: var(--brand-secondary);
  color: var(--white);
  padding: 38px 0 18px 0;
  margin-top: auto;
  z-index: 10;
  position: relative;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}
footer nav a {
  color: var(--premium-gold-light);
  font-weight: 600;
  text-decoration: none;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.03em;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--premium-gold);
  border-bottom: 2px solid var(--premium-gold);
}
footer div {
  text-align: center;
  margin-top: 14px;
  color: var(--grey-light);
  font-size: 1em;
}

/* -------------------------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--white);
  color: var(--brand-secondary);
  box-shadow: 0 -7px 28px rgba(34, 34, 23, 0.10);
  border-radius: 20px 20px 0 0;
  border-top: 4px solid var(--premium-gold);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.31s cubic-bezier(.61,.01,.62,1.13), visibility 0s 0.2s;
  font-size: 1em;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.34s cubic-bezier(.61,.01,.87,1.22);
}

.cookie-banner p {
  color: var(--brand-secondary);
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 5px;
}
.cookie-btn {
  padding: 9px 26px;
  font-size: 0.97em;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  border-radius: 21px;
  border: 2px solid var(--brand-primary);
  background: var(--white);
  color: var(--brand-primary);
  cursor: pointer;
  transition: background 0.20s, color 0.16s, border 0.14s;
}
.cookie-btn.accept {
  background: var(--premium-gold);
  color: var(--brand-secondary);
  border: 2px solid var(--premium-gold-darker);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--brand-primary);
  color: var(--white);
  border-color: var(--premium-gold);
}
.cookie-btn.reject {
  background: var(--white);
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--brand-secondary);
  color: var(--white);
}
.cookie-btn.settings {
  background: var(--white);
  color: var(--premium-gold);
  border: 2px solid var(--premium-gold);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--premium-gold);
  color: var(--brand-secondary);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0; right:0; top:0; bottom:0;
  width:100vw; height:100vh;
  background: rgba(40,38,29, 0.65);
  z-index: 210000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.31s cubic-bezier(.3,.7,.8,1.01);
}
.cookie-modal-dialog {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 14px 50px rgba(151,135,80,0.12);
  padding: 30px 24px 20px 24px;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal-dialog h2 {
  font-size: 1.4em;
  margin-top: 0;
  color: var(--brand-secondary);
}
.cookie-modal-dialog .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.06em;
  color: var(--brand-secondary);
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type=checkbox], .cookie-category input[type=radio] {
  accent-color: var(--premium-gold);
  width: 20px;
  height: 20px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--brand-secondary);
  font-size: 1.45em;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.17s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--grey-light);
  color: var(--premium-gold);
}

/* Hide scrollbar in modal */
.cookie-modal-dialog {
  scrollbar-width: thin;
  scrollbar-color: var(--premium-gold) var(--white);
}

/* -------------------------------------------
   RESPONSIVE DESIGN (MOBILE-FIRST)
--------------------------------------------*/
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper, .text-image-section, .content-grid {
    flex-direction: column !important;
    gap: 14px;
  }
  section {
    padding: 22px 0;
    margin-bottom: 36px;
  }
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.15rem;
    padding-left: 8px;
  }
  .service-card {
    min-width: 0;
    max-width: 100%;
  }
  .testimonial-card {
    padding: 14px;
    gap: 10px;
    font-size: 1em;
  }
}

@media (max-width: 540px) {
  .cookie-banner {
    max-width: 98vw;
    border-radius: 12px 12px 0 0;
    padding: 14px 6px 10px 6px;
    font-size: 0.93em;
  }
  .cookie-modal-dialog {
    padding: 12px 6px 12px 6px;
    max-width: 98vw;
  }
  .mobile-nav a {
    padding: 15px 11vw;
    font-size: 1.05rem;
  }
}

/* -------------------------------------------
   MICRO-INTERACTIONS & ANIMATION
--------------------------------------------*/
a, button, .cta, .cookie-btn {
  transition: color 0.18s, background 0.18s, box-shadow 0.15s, border 0.18s, transform 0.14s;
}
input:focus, textarea:focus {
  outline: 2px solid var(--premium-gold);
}

/* Focus outline for interactive elements */
.cta:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 3px var(--premium-gold-light);
  outline: none;
}

/* ------------------------------------------
   MISC
-------------------------------------------*/
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

::-webkit-scrollbar {
  width: 7px;
  background: var(--brand-accent);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-secondary);
  border-radius: 8px;
}

/* Remove extra space after last child within flex containers */
.card-container > *:last-child, .content-grid > *:last-child, .content-wrapper > *:last-child {
  margin-bottom: 0 !important;
}

/* Ensure no overlapping: all cards/sections have margin/padding as above rules */
