/*=====================================================================
  ZenReise Asien "monochrome_sophisticated" Style CSS (Flexbox only)
  ====================================================================*/
/*
RESET & BASE TYPOGRAPHY
====================================================================*/
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #191919;
  background: #fafbfc;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
section, main, nav, header, footer, article, aside {
  box-sizing: border-box;
}
a { 
  color: #191919;
  text-decoration: none; 
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #365C5B;
  text-decoration: underline;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Lora', serif;
  color: #101010;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.12;
}
h1 { font-size: 2.5rem; letter-spacing: -1px; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

p, ul, ol { margin-bottom: 18px; }
ul, ol { padding-left: 1.4em; }
li {margin-bottom: 8px;}
strong { color: #222; font-weight: 700; }
/* Hide default outline except for accessibility */
:focus:not(:focus-visible){ outline: none; }

/* BRAND FONT LOADING (if supported) */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Lora'), local('Lora-Regular'), url('https://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuMw_LLPtLzf4.ttf') format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans'), local('OpenSans-Regular'), url('https://fonts.gstatic.com/s/opensans/v34/mem8YaGs126MiZpBA-UFVZ0e.ttf') format('truetype');
}

/*====================================================================
  LAYOUT & CONTAINERS
====================================================================*/
.container {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(30,30,30,0.05);
}
/* Remove shadow for specific minimal sections if needed */

.text-section {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/*====================================================================
  HEADER & NAVIGATION
====================================================================*/
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(60,60,60,0.07);
  position: sticky;
  top: 0;
  z-index: 500;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 0 0 0;
  min-height: 70px;
  font-family: 'Open Sans', Arial,sans-serif;
}
.main-nav img { height: 40px; margin-right: 28px; }
.main-nav > a {
  font-size: 1rem;
  color: #212121;
  padding: 8px 8px;
  border-radius: 4px;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.main-nav > a.cta-button {
  background: #101010;
  color: #fff;
  border-radius: 12px;
  font-family: 'Lora',serif;
  font-weight: 600;
  padding: 0.75em 1.6em;
  box-shadow: 0 2px 12px 0 rgba(10,10,10,0.08);
  margin-left: auto;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav > a.cta-button:hover,
.main-nav > a.cta-button:focus {
  background: #365C5B;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(40,40,40,0.15);
}
.main-nav > a:hover:not(.cta-button),
.main-nav > a:focus:not(.cta-button) {
  background: #f6f6f6;
  color: #365C5B;
}

/* BURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #212121;
  margin-left: auto;
  cursor: pointer;
  padding: 12px 16px 12px 16px;
  z-index: 1001;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #365c5b;
}

@media (max-width: 1020px) {
  .main-nav > a.cta-button {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .main-nav > a { font-size: 0.97rem; padding: 7px 4px; }
  .main-nav img { margin-right: 12px; height: 36px; }
}

/* Responsive Nav: Hide main-nav, show burger */
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE SLIDE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(12,12,12,0.94);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: transform 0.44s cubic-bezier(.55,.05,.31,.99), opacity 0.18s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 0 0 24px;
  align-self: flex-start;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 10005;
  padding: 8px 16px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #D3A878;
}
.mobile-nav {
  margin: 48px 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 80vw;
}
.mobile-nav a {
  color: #fafafa;
  font-size: 1.25rem;
  font-family: 'Lora', serif;
  font-weight: 500;
  background: none;
  padding: 8px 4px;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #D3A878;
  background: #232323;
}

/* Ensure navigation stays on top */
header, .mobile-menu {z-index: 999;}

/*====================================================================
  HERO/BANNER
====================================================================*/
.hero {
  background: #101010;
  color: #fff;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 8px 32px 0 rgba(30,30,30,0.11);
  margin-bottom: 60px;
  padding: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 76px 20px 68px 20px;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.22rem;
  color: #f4f4f4;
  margin-bottom: 34px;
}
.hero .cta-button {
  background: #fff;
  color: #101010;
  box-shadow: 0 2px 8px 0 rgba(40,40,40,0.10);
}
.hero .cta-button:hover, .hero .cta-button:focus {
  background: #D3A878;
  color: #101010;
}

/*====================================================================
  FLEXBOX LAYOUT PATTERNS
====================================================================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(40,40,40,0.07);
}
.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;
  background: #fafafa;
  border-radius: 14px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(12,12,12,0.07);
  transition: box-shadow 0.18s, background 0.18s;
  min-width: 220px;
}
.testimonial-card:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 20px 0 rgba(12,12,12,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*====================================================================
  FEATURES, SERVICES, ETC
====================================================================*/
.features {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px 30px 20px;
}
.features h2 {
  margin-bottom: 32px;
  color: #191919;
  letter-spacing: -0.3px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}
.feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fafafa;
  border-radius: 16px;
  padding: 28px 24px 22px 24px;
  box-shadow: 0 2px 10px 0 rgba(40,40,40,0.05);
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 310px;
  transition: box-shadow 0.22s, background 0.18s;
}
.feature-grid > div img {
  width: 48px; height: 48px; margin-bottom: 10px;
}
.feature-grid > div:hover {
  background: #f4f4f4;
  box-shadow: 0 4px 16px 0 rgba(24,24,24,0.18);
}

.services {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.services h2 {
  margin-bottom: 24px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.service-cards > div {
  background: #fafafa;
  border-radius: 20px;
  padding: 26px 22px 22px 22px;
  box-shadow: 0 2px 14px 0 rgba(30,30,30,0.05);
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, background 0.12s;
}
.service-cards > div:hover {
  background: #f6f6f6;
  box-shadow: 0 6px 24px 0 rgba(30,30,30,0.13);
}
.service-cards h3, .service-cards h2 {
  font-family: 'Lora', serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: #191919;
  margin-bottom: 12px;
}
.service-cards .price {
  color: #365C5B;
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: auto;
  letter-spacing: 0.8px;
}

.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
}
.team-section > div {
  flex: 1 1 220px;
  background: #fafafa;
  border-radius: 16px;
  padding: 24px 20px;
  min-width: 200px;
  box-shadow: 0 2px 10px 0 rgba(30,30,30,0.04);
  margin-bottom: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.faq-list > div {
  background: #fafafa;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 2px 12px 0 rgba(25,25,25,0.06);
  transition: background 0.11s, box-shadow 0.16s;
}
.faq-list > div:hover {
  background: #f3f3f3;
  box-shadow: 0 6px 20px 0 rgba(28,28,28,0.21);
}

.cta-faq {
  margin-top: 16px;
  background: #f4f4f4;
  border-radius: 10px;
  padding: 18px 18px 16px 18px;
}
.cta-faq a {
  color: #365C5B;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.14s;
}
.cta-faq a:hover { color: #191919; }

/*====================================================================
  TESTIMONIALS
====================================================================*/
.testimonials {
  background: #f9f9f9;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px 32px 20px;
}
.testimonials h2 {
  color: #191919;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  align-items: stretch;
}
.testimonial-card strong {
  color: #222;
  margin-left: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.testimonial-card p {
  color: #222;
  font-size: 1.05rem;
  font-family: 'Lora',serif;
  margin-bottom: 0;
}

/*====================================================================
  CONTACT & MAP
====================================================================*/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-details img {
  width: 18px; height: 18px; margin-right: 7px; vertical-align: middle;
}
.contact-details a {
  color: #365C5B;
  text-decoration: underline;
  font-weight: 600;
}
.map-placeholder {
  margin-top: 24px;
  padding: 18px 16px;
  background: #fafafa;
  border-radius: 10px;
  color: #373737;
  font-size: 1rem;
}

/*====================================================================
  BUTTONS
====================================================================*/
.cta-button,
button,
input[type="submit"] {
  background: #101010;
  color: #fff;
  border: none;
  font-family: 'Lora',serif;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  border-radius: 12px;
  padding: 0.75em 2.5em;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(40,40,40,0.13);
  min-width: 160px;
  transition: background 0.19s, color 0.16s, box-shadow 0.18s, transform 0.16s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.cta-button:hover,
.cta-button:focus,
button:hover,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #365C5B;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(44,44,44,0.15);
  transform: translateY(-2px) scale(1.015);
}

/* For Accept/Reject/Settings cookie buttons: Distinct styles */
.button-accept {
  background: #101010;
  color: #fff;
}
.button-accept:hover, .button-accept:focus {
  background: #365c5b;
}
.button-reject {
  background: #fafafa;
  color: #191919;
  border: 1px solid #101010;
}
.button-reject:hover, .button-reject:focus {
  background: #D3A878;
  color: #101010;
  border-color: #365c5b;
}
.button-settings {
  background: #f3f3f3;
  color: #191919;
  border: 1px solid #aaa;
}
.button-settings:hover, .button-settings:focus {
  background: #365c5b;
  color: #fff;
  border-color: #365c5b;
}

/*====================================================================
  FOOTER
====================================================================*/
footer {
  background: #232323;
  color: #fafafa;
  padding: 54px 0 20px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-links,
.footer-contact,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-bottom: 8px;
}
.footer-links a {
  color: #fafafa;
  font-size: 1rem;
  margin-right: 18px;
  opacity: 0.85;
  transition: opacity .17s, color .17s;
}
.footer-links a:hover, .footer-links a:focus { color: #D3A878; opacity: 1; text-decoration: underline;}
.footer-contact span {
  color: #fafafa;
  opacity: 0.88;
  font-size: 0.98rem;
  margin-right: 28px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 19px; height: 19px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
}
.footer-social img {
  width: 26px; height: 26px; opacity: 0.83;
  transition: opacity 0.18s;
}
.footer-social a:hover img, .footer-social a:focus img {
  opacity: 1;
}
.footer-copy {
  color: #bdbdbd;
  font-size: 0.96rem;
  margin-top: 16px;
}

/*====================================================================
  COOKIE BANNER & MODAL
====================================================================*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #101010;
  color: #fafafa;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 32px 20px 24px 20px;
  box-shadow: 0 -6px 32px 0 rgba(20,20,20,0.14);
  border-radius: 16px 16px 0 0;
  animation: cookie-slidein 0.7s cubic-bezier(.66,.04,.3,1);
}
@keyframes cookie-slidein {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fafafa;
  font-size: 1rem;
  margin: 0 0 8px 0;
  text-align: center;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,20,20,0.70);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fafafa;
  color: #191919;
  border-radius: 18px;
  padding: 32px 20px 20px 20px;
  min-width: 320px;
  max-width: 90vw;
  box-shadow: 0 4px 22px 0 rgba(30,30,30,0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-fadein 0.39s cubic-bezier(.37,.01,.33,1.12);
}
@keyframes modal-fadein {
  from { opacity: 0; transform: scale(0.96) translateY(60px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.24rem;
  margin: 0 0 18px 0;
  font-family: 'Lora',serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal .category-label {
  font-size: 1rem;
  font-family: 'Open Sans',sans-serif;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 14px;
  background: #ddd;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
  margin-left: 6px;
  flex-shrink: 0;
}
.cookie-modal .cookie-toggle.on { background: #365c5b; }
.cookie-modal .cookie-toggle .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.17s;
}
.cookie-modal .cookie-toggle.on .dot { left: 18px; }
.cookie-modal .toggle-label {
  color: #191919;
  font-size: 0.98rem;
  margin-left: 8px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 24px;
  top: 20px;
  background: none;
  border: none;
  color: #bbb;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #101010;
}
.cookie-modal .cookie-category .essential-label {
  color: #365c5b;
  font-weight: 700;
  margin-left: 12px;
  font-size: 1rem;
}

/*====================================================================
  MEDIA QUERIES (RESPONSIVE)
====================================================================*/
@media (max-width: 1080px) {
  .container, .hero .container { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 910px) {
  .feature-grid {
    gap: 16px;
  }
  .feature-grid > div,
  .service-cards > div {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .hero .container {padding-top: 44px;padding-bottom: 36px;}
  .hero h1 { font-size: 2rem; }
  .section, section { padding: 28px 8px; margin-bottom: 40px; }
  .features, .services, .testimonials { padding: 28px 8px; }
  .feature-grid, .service-cards, .testimonials .testimonial-list, .team-section, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-links,
  .footer-contact,
  .footer-social {
    gap: 16px;
  }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  .hero { border-radius: 0 0 12px 12px; }
  .hero .container { padding-top: 30px; padding-bottom: 30px; }
  .main-nav img { height: 32px; }
  .mobile-menu-close { margin-top: 8px; margin-left: 12px; font-size: 1.7rem; }
  .mobile-nav { margin-top: 24px; margin-left: 10px;}
  .footer-contact span { font-size: 0.96rem; margin-right: 12px; }
}
@media (max-width: 440px) {
  .container { padding-left: 0; padding-right: 0; }
  .footer-links, .footer-contact, .footer-social { flex-direction: column; gap: 8px; align-items: flex-start;}
}

/* For .text-image-section (main text + image) responsive handling */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Minimal print styles */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  body { background: #fff !important; color: #111 !important; }
  .section, section { box-shadow: none !important; background: #fff !important; border-radius: 0 !important; }
}

/*====================================================================
  OTHER UTILITIES & MICRO-INTERACTIONS
====================================================================*/
.shadow-hover {
  transition: box-shadow 0.15s;
}
.shadow-hover:hover {
  box-shadow: 0 8px 40px 0 rgba(32,32,32,0.22) !important;
}
.rounded {
  border-radius: 12px !important;
}

/* Helper for visually-hidden text for accessibility */
.visually-hidden {
  position: absolute!important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* Selection */
::selection {
  background: #365c5b;
  color: #fff;
}

/*====================================================================
  END STYLES
====================================================================*/
