/* ---------------------------
   SCHLOSSTRAUM TOURS CSS
   "modern_bold" Style
   Only Flexbox layouts used!
----------------------------*/

/*== 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #213564;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/*== FONTS ==*/
@import url('https://fonts.googleapis.com/css?family=Merriweather:900,700|Open+Sans:400,600,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  letter-spacing: -1px;
  color: #213564;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, li, span, em, strong, div {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}

/*== COLORS ==*/
:root {
  --stt-primary: #213564;
  --stt-secondary: #ffffff;
  --stt-accent: #A47C48;
  --stt-accent-dark: #87602c;
  --stt-highlight: #E6D4B3;
  --brand-bg: #f8f9fa;
  --stt-danger: #cf3636;
}

/*== LAYOUT HELPERS ==*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 20px -5px rgba(33,53,100,0.09), 0 1.5px 0 var(--stt-accent);
  background: #fff;
  position: relative;
}
.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: 20px;
  background: var(--stt-highlight);
  border-radius: 16px;
  box-shadow: 0 4px 20px -5px rgba(33,53,100,0.07), 0 1.5px 0 var(--stt-accent);
  margin-bottom: 20px;
  min-width: 0;
  flex: 1 1 270px;
  color: #212120;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 9px 0 rgba(33,53,100,0.06);
  padding: 22px 18px;
  flex: 1 1 220px;
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.feature-item:hover {
  box-shadow: 0 4px 21px 0 rgba(164,124,72,0.11), 0 2px 0 var(--stt-accent-dark);
  transform: translateY(-2px) scale(1.02);
}

/*== GLOBAL BUTTONS & LINKS ==*/
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 46px;
  padding: 0 26px;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.12rem;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 3px 14px -4px rgba(33,53,100,0.13);
  transition: all 0.17s cubic-bezier(.25,1,.33,1);
  text-align: center;
  border: none;
  margin: 14px 0;
  outline: none;
}
.btn-primary {
  background: var(--stt-primary);
  color: #fff;
  border: 2px solid var(--stt-primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--stt-accent);
  border-color: var(--stt-accent-dark);
  color: #fff;
  box-shadow: 0 7px 22px -6px rgba(164,124,72,0.19);
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: var(--stt-highlight);
  color: var(--stt-primary);
  border: 2px solid var(--stt-accent);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--stt-accent);
  color: #fff;
  border-color: var(--stt-accent-dark);
  box-shadow: 0 7px 22px -6px rgba(164,124,72,0.12);
}

/*== HEADER & NAVIGATION ==*/
header {
  position: relative;
  background: #fff;
  width: 100%;
  z-index: 50;
  border-bottom: 3px solid var(--stt-accent);
  box-shadow: 0 5px 30px -14px rgba(33,53,100,0.13);
}
header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 16px 18px 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  color: var(--stt-primary);
  font-size: 1rem;
  transition: color 0.13s;
  padding: 3px 7px;
  border-radius: 6px;
}
header nav a:hover, header nav a:focus {
  background: var(--stt-accent);
  color: #fff;
}
header img {
  height: 48px;
  margin: 0 10px 0 0;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  background: var(--stt-primary);
  color: #fff;
  border-radius: 8px;
  border: none;
  padding: 5px 13px;
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1002;
  transition: background 0.14s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--stt-accent);
  color: #fff;
}
/*== MOBILE NAVIGATION ==*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,53,100,0.98);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.54,.07,.19,.99);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  overflow-y: auto;
  padding-top: 66px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 0 999px rgba(28,42,78,0.63);
}
.mobile-menu-close {
  display: block;
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2.25rem;
  color: #fff;
  z-index: 1005;
  background: var(--stt-danger);
  border-radius: 8px;
  padding: 0 11px;
  border: none;
  transition: background 0.17s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #fff;
  color: var(--stt-danger);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 26px 12px 36px;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Merriweather', serif;
  font-size: 1.13rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  padding: 8px 0;
  border-radius: 7px;
  min-width: 170px;
  transition: background .16s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--stt-accent);
  color: #fff;
}

/*== HERO STYLES ==*/
.hero {
  background: linear-gradient(90deg, var(--stt-accent) 0 8%, var(--stt-highlight) 82% 100%);
  padding: 56px 0 28px 0;
  margin-bottom: 60px;
  border-bottom: 4px solid var(--stt-accent-dark);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero h1 {
  color: var(--stt-primary);
  text-shadow: 2px 3px 0 var(--stt-highlight);
  margin-bottom: 20px;
}
.hero .subheadline, .hero p {
  font-family: 'Open Sans', sans-serif;
  color: var(--stt-primary);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 18px;
  max-width: 520px;
}

/*== FEATURES, SERVICE LISTS ==*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 18px 0 0 0;
}
.service-list li {
  background: #fff;
  border-left: 6px solid var(--stt-accent);
  border-radius: 13px;
  box-shadow: 0 3px 16px -7px rgba(33,53,100,0.09);
  padding: 18px 18px 15px 22px;
  margin-bottom: 4px;
  font-size: 1.08rem;
  color: var(--stt-primary);
  transition: box-shadow .18s, border-color .15s;
  min-width: 0;
}
.service-list li strong {
  font-family: 'Merriweather', serif;
  font-size: 1.12rem;
  letter-spacing: -0.4px;
}
.service-list li em {
  font-style: normal;
  font-weight: 700;
  color: var(--stt-accent-dark);
  margin-left: 10px;
  font-size: 1.06rem;
}
.service-list li:hover {
  box-shadow: 0 6px 20px -5px rgba(164,124,72,0.11);
  border-color: var(--stt-accent-dark);
}

/*== TABLES ==*/
.pricing-table {
  width: 100%;
  margin-top: 12px;
  margin-bottom: 26px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 2px 17px -6px rgba(33,53,100,0.10);
  border-radius: 16px;
  overflow: hidden;
}
.pricing-table th {
  background: var(--stt-accent);
  color: #fff;
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  padding: 16px 10px;
  letter-spacing: 0.03em;
}
.pricing-table td {
  padding: 16px 10px;
  border-bottom: 1px solid var(--stt-highlight);
  color: var(--stt-primary);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.inclusions-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 18px;
}
.inclusions-list li {
  color: var(--stt-primary);
  font-size: 1rem;
  position: relative;
}
.inclusions-list li:before {
  content: '\2022';
  color: var(--stt-accent-dark);
  margin-right: 9px;
  font-size: 1.4em;
}

/*== FAQ ACCORDION ==*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-left: 5px solid var(--stt-accent);
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(33,53,100,0.09);
  padding: 16px 16px 14px 22px;
  transition: border-color .16s, box-shadow .18s;
}
.faq-item h3 {
  font-size: 1.14rem;
  color: var(--stt-primary);
  margin-bottom: 7px;
  font-weight: 900;
  cursor: pointer;
  user-select: none;
}
.faq-answer {
  font-size: 1rem;
  color: var(--stt-primary);
  line-height: 1.65;
}
.faq-item.open {
  border-color: var(--stt-accent-dark);
  box-shadow: 0 6px 20px -5px rgba(164,124,72,0.11);
}

/*== TESTIMONIALS ==*/
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 12px;
}
.testimonial-card {
  background: var(--stt-highlight);
  color: #212120;
  border-radius: 16px;
  box-shadow: 0 4px 20px -5px rgba(33,53,100,0.07), 0 1.5px 0 var(--stt-accent);
  min-width: 0;
  flex: 1 1 247px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 22px;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.testimonial-card p {
  color: #213564;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.testimonial-card div {
  font-size: 0.95em;
  color: #A47C48;
  font-family: 'Merriweather', serif;
  font-weight: 900;
}

/*== CTA SECTION ==*/
.cta {
  background: linear-gradient(93deg, var(--stt-accent-dark) 0%, var(--stt-accent) 100%);
  color: #fff;
  padding: 46px 0 46px 0;
  margin-bottom: 0;
  text-align: center;
}
.cta .container, .cta .content-wrapper {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.cta h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta .btn-primary {
  background: #fff;
  color: var(--stt-accent-dark);
  border: 2px solid #fff;
}
.cta .btn-primary:hover {
  background: var(--stt-highlight);
  color: var(--stt-primary);
  border: 2px solid var(--stt-accent-dark);
}

/*== ADDRESS & MAP BLOCKS ==*/
.address-block, .map-snippet {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.5px 11px -4px rgba(33,53,100,0.07);
  padding: 18px 24px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: var(--stt-primary);
  font-family: 'Open Sans', sans-serif;
}
.map-snippet strong {
  color: var(--stt-accent);
}

/*== THANK YOU PAGE ==*/
.thankyou {
  background: var(--stt-accent);
  color: #fff;
  padding: 55px 0;
  text-align: center;
}
.thankyou .text-section {
  background: var(--stt-highlight);
  color: var(--stt-primary);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 26px auto 0 auto;
  max-width: 640px;
  padding: 34px 38px;
}

/*== FOOTER ==*/
footer {
  background: var(--brand-bg);
  border-top: 3px solid var(--stt-accent);
  margin-top: 68px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 0;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a, .footer-legal a {
  color: var(--stt-primary);
  font-family: 'Merriweather', serif;
  font-size: 1.08rem;
  font-weight: 700;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--stt-accent-dark);
}
.footer-contact {
  font-size: 0.95rem;
  color: var(--stt-primary);
  max-width: 280px;
  line-height: 1.45;
}
footer strong {
  font-family: 'Merriweather', serif;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #213564;
  color: #fff;
  z-index: 5000;
  padding: 20px 16px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  box-shadow: 0 -5px 22px -10px #21356433;
  font-size: 1rem;
  animation: bannerin 0.55s cubic-bezier(.53,1.56,.66,.93);
}
@keyframes bannerin {
  0% { transform: translateY(100%); opacity: 0; }
  82% { opacity: 0.9; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  margin: 0 10px 0 0;
  flex: 1 1 220px;
  font-size: 1.08rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  padding: 7px 20px;
  min-width: 90px;
  border-radius: 20px;
  font-size: 1rem;
  border: none;
  margin: 0;
  transition: background 0.16s, color 0.14s;
}
.cookie-banner .accept {
  background: var(--stt-accent);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: var(--stt-highlight);
  color: var(--stt-primary);
}
.cookie-banner .reject {
  background: #fff;
  color: var(--stt-primary);
  border: 2px solid var(--stt-accent);
}
.cookie-banner .reject:hover {
  background: var(--stt-danger);
  color: #fff;
  border-color: var(--stt-danger);
}
.cookie-banner .settings {
  background: var(--stt-primary);
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .settings:hover {
  background: var(--stt-accent-dark);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 5100;
  left: 0; right: 0; top:0; bottom:0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33,53,100,0.94);
  animation: modalopen .37s ease;
}
@keyframes modalopen {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: var(--stt-primary);
  padding: 36px 31px 24px 31px;
  border-radius: 18px;
  min-width: 0;
  max-width: 388px;
  box-shadow: 0 8px 42px -18px rgba(33,53,100,0.21);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: popup .39s cubic-bezier(.48,1.82,.5,.98);
}
@keyframes popup {
  0% { transform: scale(0.82); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.34rem;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  color: var(--stt-primary);
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--stt-highlight);
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .cookie-category span {
  font-size: 1rem;
  font-weight: 700;
}
.cookie-modal .toggle {
  width: 46px;
  height: 26px;
  background: var(--stt-highlight);
  border-radius: 15px;
  display: inline-block;
  position: relative;
  margin-left: 22px;
}
.cookie-modal input[type=checkbox] {
  display: none;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  left: 2px; top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--stt-accent);
  transition: left 0.16s;
}
.cookie-modal input[type=checkbox]:checked + .slider {
  left: 22px;
  background: var(--stt-primary);
}
.cookie-modal .essential[disabled] {
  opacity: 0.7;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal button {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  padding: 8px 20px;
  border-radius: 19px;
  border: none;
  font-size: 1rem;
}
.cookie-modal .save {
  background: var(--stt-accent);
  color: #fff;
}
.cookie-modal .save:hover {
  background: var(--stt-primary);
}
.cookie-modal .close {
  background: #fff;
  color: var(--stt-primary);
  border: 2px solid var(--stt-accent);
}
.cookie-modal .close:hover {
  background: var(--stt-danger);
  color: #fff;
  border-color: var(--stt-danger);
}

/*== RESPONSIVE DESIGN ==*/
@media (max-width: 1024px) {
  .container {
    max-width: 990px;
  }
  .feature-grid {
    gap: 18px;
  }
  .testimonials {
    gap: 16px;
  }
  .footer-contact { max-width: 210px; }
}
@media (max-width: 900px) {
  .container {
    max-width: 92vw;
  }
  footer .container { gap: 18px; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  header > .container {
    flex-direction: row;
    padding: 12px 8px 12px 8px;
    gap: 10px;
  }
  header nav {
    display: none;
  }
  .btn-primary {
    min-width: 122px;
    min-height: 40px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    padding-top: 56px;
  }
  .section {
    padding: 25px 10px;
    margin-bottom: 34px;
  }
  .hero {
    padding: 38px 0 18px 0;
  }
  .feature-grid, .content-grid, .card-container, .testimonials {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .testimonial-card, .card {
    width: 100%;
    min-width: 0;
    padding-left: 11px;
    padding-right: 11px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .cta { padding: 32px 0; }
  .thankyou .text-section { padding: 20px 10px; }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .footer-contact { font-size: 0.92rem; }
  footer .container {
    flex-direction: column;
    gap: 12px;
    padding: 18px 0;
  }
}

/*== ANIMATIONS & MICRO-INTERACTIONS ==*/
.btn-primary, .btn-secondary {
  will-change: transform;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
}
.feature-item:active {
  transform: scale(0.98);
}

/*== ADDITIONAL UTILITIES ==*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
  padding-bottom: 4px;
}

/*== PREVENT OVERLAPPING ==*/
.section, .feature-grid, .card-container, .content-grid, .testimonials, .service-list {
  gap: 20px;
  margin-bottom: 0;
}

/*== Misc ==*/
::-webkit-scrollbar { width: 8px; background: var(--stt-highlight); }
::-webkit-scrollbar-thumb { background: var(--stt-accent); border-radius: 10px; }

/*== Make sure nothing overlaps header/mobile ==*/
.mobile-menu, .mobile-menu.open, .cookie-banner, .cookie-modal {
  box-sizing: border-box;
}
