/* ============================================
  GeschmackReisen – Elegant Classic CSS
  Mobile-first, Flexbox-only, Elegant & Timeless
  ============================================ */

/* === 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FAF9F6;
  color: #26241D;
  font-family: 'Roboto', serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: #155C2E;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #EBBE5C;
  outline: none;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
strong {
  font-weight: 600;
}

/* === TYPOGRAPHY - Elegant Classic === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', serif;
  color: #155C2E;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.18;
}
h1 {
  font-size: 2.3rem;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: 0.015em;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li, dd {
  font-size: 1rem;
  margin-bottom: 12px;
}
dt {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  color: #155C2E;
  margin-bottom: 6px;
}
dd {
  margin-bottom: 16px;
  margin-left: 0;
}
.text-section ul,
.text-section ol {
  padding-left: 20px;
}

/* === MAIN LAYOUT === */
.container {
  width: 100%;
  max-width: 1170px;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(21,92,46,0.04);
}

main > section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.hero {
  background: #f5f2ea;
  border-bottom: 1px solid #eee7d8;
  padding: 54px 0 42px 0;
}
.hero h1 {
  color: #155C2E;
  font-size: 2.1rem;
}
.hero p {
  font-size: 1.17rem;
  color: #554d40;
}

/* === FLEXBOX LAYOUTS === */
.feature-grid, .service-list, .service-highlights, .inclusions, .feature-icons, .testimonial-list, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 24px;
}
.feature-grid>li, .service-list>li, .service-highlights>li, .feature-icons>li, .testimonial-list>div,
.inclusions>li, .card-container>.card, .content-grid>div {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 13px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(21,92,46, 0.06);
  transition: box-shadow 0.18s, transform 0.19s;
  position: relative;
}
.feature-grid>li:hover, .service-list>li:hover, .service-highlights>li:hover, .feature-icons>li:hover, .card:hover {
  box-shadow: 0 8px 26px rgba(21,92,46,0.11);
  transform: translateY(-2px) scale(1.012);
}
.feature-grid>li img, .feature-icons>li img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}
.inclusions {
  gap: 16px;
}
.inclusions>li {
  background: #f9f7ef;
  border-radius: 9px;
  color: #155C2E;
  font-weight: 500;
  padding: 16px 18px;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(21,92,46,0.04);
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #f5f2ea;
  color: #2b2a21;
  border-radius: 12px;
  padding: 20px 30px 20px 30px;
  box-shadow: 0 2px 16px rgba(21,92,46, 0.09);
  font-size: 1.06rem;
  line-height: 1.45;
  min-width: 270px;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(21,92,46,0.13);
  transform: translateY(-2px) scale(1.014);
}
.testimonial-card p {
  font-style: italic;
  color: #1e1c19;
  font-size: 1.05rem;
  margin-bottom: 7px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #155c2e;
  font-family: 'Montserrat', serif;
}
.user-rating {
  margin-top: 16px;
  color: #155C2E;
  font-family: 'Montserrat', serif;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.user-rating img { height: 20px; margin-right: 2px; display: inline-block; }

/* ==== HEADER & NAVIGATION ==== */
header {
  background: #fff;
  border-bottom: 1px solid #ebe7da;
  box-shadow: 0 3px 12px rgba(21,92,46,0.04);
  z-index: 30;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex: 1 0 auto;
  margin-left: 26px;
}
.main-nav a {
  font-family: 'Montserrat', serif;
  color: #26241D;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.17s, border-color 0.19s;
}
.main-nav a:hover,
.main-nav a:focus,
.main-nav a[aria-current="page"] {
  color: #155C2E;
  border-bottom: 2px solid #155C2E;
}

/* Button - Elegant Classic */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  padding: 12px 28px;
  border-radius: 24px;
  font-family: 'Montserrat', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(21, 92, 46, 0.05);
  outline: none;
  transition: box-shadow 0.17s, background 0.17s, color 0.16s, transform 0.17s;
  user-select: none;
}
.btn-primary {
  color: #fff;
  background: #155C2E;
}
.btn-primary:hover, .btn-primary:focus {
  background: #166e3b;
  color: #EBBE5C;
  box-shadow: 0 5px 20px rgba(21,92,46,0.13);
  transform: translateY(-2px) scale(1.013);
}
.btn-secondary {
  color: #155C2E;
  background: #EBBE5C;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #e9b444;
  color: #fff;
}

/* === FOOTER === */
footer {
  background: #1b1d15;
  color: #fff;
  padding: 36px 0 18px 0;
  font-size: 0.97rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #fff;;
  opacity: 0.95;
  font-family: 'Montserrat', serif;
  font-size: 1.01rem;
  transition: color 0.17s, opacity 0.18s;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #EBBE5C;
  border-bottom: 1.5px solid #EBBE5C;
  opacity: 1;
}
.footer-info {
  color: #ebe5d2;
  font-size: 0.96rem;
  font-family: 'Roboto', serif;
  text-align: center;
}

/* === UTILITY & BASE FLEX CLASSES === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 13px;
  background: #FFF;
  box-shadow: 0 1.5px 12px rgba(21,92,46,0.05);
  padding: 24px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(21,92,46,0.12);
  transform: translateY(-3px) scale(1.012);
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.04rem;
  line-height: 1.67;
  color: #26241D;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === COOKIE CONSENT BANNER & MODALS === */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  background: #fffbe4;
  color: #26241d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(21,92,46,0.07);
  padding: 14px 14px 12px 14px;
  font-size: 1rem;
  font-family: 'Roboto', serif;
  border-top: 1.5px solid #ebe0bb;
  animation: bannerIn 0.5s ease;
}
@keyframes bannerIn { 
  0% {opacity:0; transform: translateY(100%);} 100% {opacity:1; transform: none;}
}
.cookie-consent-banner .cookie-btn {
  margin-left: 8px;
  margin-right: 6px;
  padding: 7px 18px;
  border-radius: 18px;
  font-size: 0.99rem;
  font-family: 'Montserrat', serif;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #155C2E;
  color: #fff;
  transition: background 0.19s, color 0.15s, box-shadow 0.14s;
  box-shadow: 0 2px 8px rgba(21,92,46,0.06);
}
.cookie-consent-banner .cookie-btn.settings {
  background: #EBBE5C;
  color: #155C2E;
}
.cookie-consent-banner .cookie-btn.reject {
  background: #99957a;
  color: #fff;
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus { background: #1d7736; color: #EBBE5C; }
.cookie-consent-banner .cookie-btn.settings:hover { background: #f1c657; color: #155C2E; }
.cookie-consent-banner .cookie-btn.reject:hover { background: #7e7a66; color: #fff3bf; }

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(37,33,13,0.56);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.39s cubic-bezier(.47,0,.42,1.05);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: none; }
}
.cookie-modal {
  background: #fffbe9;
  color: #26241d;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(21,92,46,0.18);
  max-width: 372px;
  padding: 38px 28px 26px 28px;
  font-family: 'Roboto', serif;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: modalIn 0.42s cubic-bezier(.47,0,.42,1.05);
  position: relative;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 16px;
  right: 17px;
  font-size: 1.35rem;
  background: none;
  border: none;
  color: #8c803e;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  color: #26241d;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  font-family: 'Montserrat', serif;
  margin-bottom: 16px;
  color: #155C2E;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category label {
  font-family: 'Roboto', serif;
  color: #1f1a10;
  font-size: 1.01rem;
}
.cookie-modal .toggle {
  width: 34px;
  height: 20px;
  border-radius: 12px;
  background: #EBBE5C;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal .toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .toggle .knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 17px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px #d3c28a36;
  transition: left 0.17s;
}
.cookie-modal .toggle input:checked + .knob {
  left: 15px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.cookie-modal .cookie-btn {
  padding: 9px 19px;
  border-radius: 14px;
  background: #155C2E;
  color: #fff;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .cookie-btn.secondary {
  background: #EBBE5C;
  color: #155C2E;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #166e3b;
  color: #EBBE5C;
}
.cookie-modal .cookie-btn.secondary:hover { background:#ffd46a; }

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #EBBE5C;
  color: #155C2E;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  margin-left: 14px;
  transition: box-shadow 0.13s, border-color 0.15s, background .14s;
  z-index: 120;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #EBBE5C;
  color: #155C2E;
  border-color: #155C2E;
  box-shadow: 0 3px 10px rgba(21,92,46,0.08);
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,92,46,0.92);
  color: #fff;
  padding: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.58,.01,.17,1.02);
  will-change: transform;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #EBBE5C;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2011;
  transition: color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 80px;
  align-items: center;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', serif;
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  background: none;
  padding: 10px 0;
  min-width: 210px;
  text-align: center;
  border-bottom: 1.5px solid rgba(235,190,92,0.22);
  transition: color 0.17s, background 0.14s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EBBE5C;
  color: #155C2E;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1050px) {
  .container { max-width: 93vw; }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
  .content-wrapper { max-width: 97vw; }
  .footer-nav { flex-direction: column; gap: 6px; }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 10px; }
  header .container { height: 58px; }
  .main-nav { display: none; }
  .btn-primary, .btn-secondary { min-width: 128px; font-size: 1.01rem; padding: 10px 15px; }
  .logo img { height: 32px; }
  .content-wrapper { padding: 0; }
  .feature-grid, .card-container, .service-list, .service-highlights, .content-grid, .testimonial-list, .feature-icons { flex-direction: column; gap: 16px; }
  .feature-grid>li, .card, .service-list>li, .service-highlights>li, .feature-icons>li, .testimonial-card, .inclusions>li {
    padding: 16px 15px;
    min-width: 0;
  }
  .hero { padding: 38px 0 30px 0; }
  .testimonial-card { padding: 16px; min-width: 0; }
  footer .container { padding: 0 7px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.12rem; }
  .cookie-modal { max-width: 98vw; padding: 21px 7px 16px 14px; }
  .footer-info { font-size: 0.84rem; }
}
@media (max-width: 480px) {
  .logo img { height: 25px; }
  .btn-primary, .btn-secondary { min-width: 92px; font-size: 0.97rem; padding: 7px 7px; }
  .section { padding: 22px 6px; margin-bottom: 40px; }
}

/* === OTHER COMPONENTS === */
dl {
  margin-bottom: 18px;
}
dl dt {
  font-size: 1rem;
}
dl dd {
  margin-left: 0;
}

ul li, ol li {
  margin-bottom: 8px;
  padding-left: 0;
}
ul li img, ol li img {
  vertical-align: middle;
  margin-right: 6px;
}

/* Form elements (if used in Kontakt) */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #D6D2BE;
  background: #f9f7ef;
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: 'Roboto', serif;
  transition: border 0.17s;
}
input:focus, textarea:focus {
  outline: none;
  border: 1.5px solid #155C2E;
  background: #fffbef;
}

/* Success Message (Thank You Page) */
.text-section a.btn-primary {
  margin-top: 24px;
  margin-bottom: 6px;
}

/* Elegant HR Separator */
hr {
  border: none;
  border-bottom: 1px solid #e9e1c1;
  margin: 20px 0;
}

/* Hide mobile menu by default on desktop */
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none!important;
  }
}

/* Always show mobile menu toggle on small screens */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* === PRINT STYLES (minimal) === */
@media print {
  header, .main-nav, .mobile-menu, .mobile-menu-toggle, footer, .btn-primary, .btn-secondary, .cookie-consent-banner, .cookie-modal-overlay { display:none !important; }
  main, .container { width:100% !important; max-width:100vw !important; padding:0 !important; }
}

/* === ACCESSIBILITY === */
:focus { outline: 2px dashed #EBBE5C; outline-offset: 2px; }
::-webkit-input-placeholder { color: #817d6b; }
::-moz-placeholder { color: #817d6b; }
:-ms-input-placeholder { color: #817d6b; }
::placeholder { color: #817d6b; }

/* END CSS */
