/* -------------------------------------- */
/*            CSS RESET & BASE            */
/* -------------------------------------- */
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,
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F9F7F3;
}
body {
  background: #F9F7F3;
  color: #1A2532;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main {
  flex: 1 0 auto;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #274C77;
  text-decoration: underline;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #B30C22;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #274C77;
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; font-weight: 600; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 500; }
p {
  margin-bottom: 14px;
}
strong, b {
  font-weight: bold;
  color: #223050;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(39, 76, 119, 0.07);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* ----------------------------------- */
/*           HEADER & NAV BAR          */
/* ----------------------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 24px -15px rgba(39,76,119,.13);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
header img {
  height: 38px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #223050;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background .18s,color .18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F1F4FB;
  color: #274C77;
}
.cta-btn {
  display: inline-block;
  background: #274C77;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 99px;
  text-decoration: none;
  transition: background .22s, box-shadow .22s, color .22s;
  box-shadow: 0 1px 10px rgba(39,76,119,0.06);
  letter-spacing: 0.015em;
  border: none;
  cursor: pointer;
  margin-left: 12px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #B30C22;
  color: #fff;
  box-shadow: 0 2px 14px #B30C227a, 0 1px 10px rgba(39,76,119,0.09);
}
header .cta-btn {
  margin-left: 16px;
}
.mobile-menu-toggle {
  display: none;
  background: #274C77;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  margin-left: 8px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #B30C22;
}

/* ----------------------------------- */
/*          MOBILE MENU STYLES         */
/* ----------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(102vw);
  transition: transform .31s cubic-bezier(.53,.19,.51,1.24);
  box-shadow: 0px 0px 32px 2px rgba(39,76,119,0.17);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #274C77;
  color: #fff;
  font-size: 2rem;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  margin: 18px 0 0 16px;
  border: none;
  transition: background .18s;
  z-index: 121;
  align-self: flex-start;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #B30C22;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 40px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #1A2532;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 6px;
  transition: background .16s,color .18s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #F1F4FB;
  color: #274C77;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 1024px) {
  .main-nav,
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ----------------------------------- */
/*               HERO                  */
/* ----------------------------------- */
.hero {
  background: linear-gradient(102deg, #F9F7F3 64%, #E8EDF4 99%);
  box-shadow: 0 2px 32px -18px rgba(39,76,119, .10);
  padding: 60px 0 60px 0;
  border-radius: 0 0 34px 34px;
  margin-bottom: 62px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  gap: 26px;
  align-items: flex-start;
  max-width: 630px;
}
.hero h1 {
  font-size: 2.85rem;
  color: #274C77;
  margin-bottom: 8px;
}
.hero .subheadline {
  font-size: 1.29rem;
  color: #274C77;
}
/* -------------------------------------- */
/*             FEATURES GRID              */
/* -------------------------------------- */
.features {
  background: #fff;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}
.feature-grid li {
  background: #F9F7F3;
  border: 1px solid #E0E6EF;
  border-radius: 12px;
  box-shadow: 0 3px 24px -15px rgba(39,76,119,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 282px;
  padding: 24px 20px 20px 20px;
  flex: 1 1 220px;
  transition: box-shadow .22s, border-color .16s, transform .18s;
  margin-bottom: 20px;
}
.feature-grid li img {
  height: 44px;
  margin-bottom: 8px;
}
.feature-grid li h3 {
  font-size: 1.14rem;
  color: #223050;
}
.feature-grid li p {
  color: #3E4856;
  font-size: 1rem;
}
.feature-grid li:hover {
  box-shadow: 0 8px 32px -8px #B30C2217, 0 3px 24px -15px rgba(39,76,119,0.14);
  border-color: #274C77;
  transform: translateY(-5px) scale(1.04);
}
/* ----------------------------------- */
/*             SECTION CARDS           */
/* ----------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 24px -18px rgba(39,76,119,.11);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 260px;
  flex: 1 1 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* ----------------------------------- */
/*         TESTIMONIALS (Cards)        */
/* ----------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F1F4FB;
  color: #223050;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 20px 30px 20px 22px;
  box-shadow: 0 2px 12px rgba(39,76,119,0.07);
  position: relative;
  flex: 1 1 220px;
  min-width: 215px;
  transition: box-shadow .22s, background .18s;
}
.testimonial-card p,
.testimonial-card .testimonial-meta {
  color: #15203B;
}
.testimonial-card .testimonial-meta {
  font-size: 1rem;
  margin-left: 12px;
  font-weight: 600;
  color: #274C77;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px -8px #B30C2230, 0 2px 12px #274C7755;
  background: #E8EDF4;
}

.short-testimonials .testimonial-card {
  background: #F9F7F3;
}

/* ----------------------------------- */
/*             SERVICES                */
/* ----------------------------------- */
.services ul,
.angebote-vorteile ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
}
.services ul li, .angebote-vorteile ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #3E4856;
  font-size: 1.06rem;
}
.services ul li img,
.angebote-vorteile ul li img {
  height: 28px;
  width: 28px;
}

/* ----------------------------------- */
/*      Angebotsbereiche listen        */
/* ----------------------------------- */
.angebote-uebersicht .angebot-liste {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 36px 0 0 0;
}
.angebot-liste li {
  background: #F1F4FB;
  border-radius: 10px;
  box-shadow: 0 2px 11px -9px #274C7712;
  padding: 22px 22px 18px 22px;
  min-width: 240px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 5px solid #274C77;
  transition: box-shadow .17s, border-color .18s;
}
.angebot-liste li strong {
  color: #B30C22;
  font-size: 1.07em;
}
.angebot-liste li:hover {
  box-shadow: 0 4px 21px -9px #B30C2222;
  border-left: 5px solid #B30C22;
}

/* ----------------------------------- */
/*         FOOTER STYLES               */
/* ----------------------------------- */
footer {
  background: #274C77;
  margin-top: 60px;
  padding: 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding: 40px 16px;
}
footer img {
  height: 34px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 18px;
}
.footer-nav a {
  color: #F9F7F3;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  padding: 4px 6px;
  transition: background .16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #B30C22;
  color: #fff;
}
.footer-contact p {
  color: #D3DAEC;
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 6px;
}

/* ----------------------------------- */
/*    Responsive FLEX adjustments      */
/* ----------------------------------- */
@media (max-width: 1030px) {
  .feature-grid {
    gap: 20px;
  }
  .angebot-liste {
    gap: 20px;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 768px) {
  header .container {
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .section, section {
    padding: 26px 8px;
    margin-bottom: 38px;
    border-radius: 10px;
  }
  .hero {
    padding-top: 36px;
    padding-bottom: 36px;
    border-radius: 0 0 18px 18px;
    margin-bottom: 38px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .feature-grid, .card-container, .angebot-liste {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li, .card {
    max-width: 100%;
    min-width: 0;
  }
  .content-wrapper {
    padding: 0;
    gap: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 12px 16px 12px;
    gap: 10px;
  }
  .regionen-highlights ul, .angebot-liste, .features ul {
    gap: 13px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 24px 8px;
  }
}
@media (max-width: 570px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* ----------------------------------- */
/*             Cookie Banner           */
/* ----------------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #274C77;
  color: #fff;
  box-shadow: 0 -2px 16px #07417c29;
  z-index: 200;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 18px;
  gap: 22px;
  transition: transform 0.38s cubic-bezier(.9,0,.94,.98);
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
}
.cookie-consent-banner .cookie-consent-text {
  flex:1 1 50%;
  font-size: 1rem;
  color: #fff;
}
.cookie-consent-banner .cookie-consent-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cookie-btn,.cookie-btn:visited {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 99px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background: #fff;
  color: #274C77;
  margin: 0;
  transition: background .18s, color .18s, box-shadow .17s;
  box-shadow: 0 1px 6px rgba(39,76,119,.04);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #B30C22;
  color: #fff;
}
.cookie-btn.reject {
  background: #F1F1F2;
  color: #B30C22;
}
.cookie-btn.reject:hover {
  background: #B30C22;
  color: #fff;
}
.cookie-btn.settings {
  background: #F1F4FB;
  color: #274C77;
}
.cookie-btn.settings:hover {
  background: #274C77;
  color: #fff;
}
@media (max-width: 620px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 8px 24px 8px;
    font-size: 0.94rem;
  }
}

/* ----------------------------- */
/*     Cookie Modal Styles       */
/* ----------------------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,76,119,0.42);
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBg .19s linear;
}
@keyframes fadeInBg {
  from{opacity:0;} to{opacity:1;}
}
.cookie-modal {
  background: #fff;
  color: #223050;
  border-radius: 16px;
  box-shadow: 0 8px 38px -8px #274C7757;
  width: 96vw;
  max-width: 420px;
  padding: 35px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  animation: fadeInCookieModal .33s cubic-bezier(.64,.09,.43,.98);
  position: relative;
}
@keyframes fadeInCookieModal {
  from{ opacity:0; transform: scale(.97) translateY(14px);}
  to{ opacity:1; transform: scale(1) translateY(0); }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.cookie-pref-category {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
  gap: 12px;
}
.cookie-pref-category label {
  font-size: 1rem;
  color: #223050;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  width: 44px;
  height: 22px;
  background: #E0E6EF;
  border-radius: 29px;
  position: relative;
  margin-right: 9px;
  cursor: pointer;
  transition: background .18s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 100%;
  transition: left .17s, background .17s;
  box-shadow: 0 1px 4px #22305011;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 24px;
  background: #274C77;
}
.cookie-modal .actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 12px;
  justify-content: flex-end;
  margin-bottom: 2px;
}
.cookie-modal .cookie-close-btn {
  position: absolute;
  top: 17px; right: 18px;
  width: 36px;
  height: 36px;
  background: #274C77;
  color: #fff;
  border-radius: 9px;
  border: none;
  text-align: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background .13s;
  line-height: 1.5;
}
.cookie-modal .cookie-close-btn:hover {
  background: #B30C22;
}

@media (max-width: 470px) {
  .cookie-modal {
    max-width: 94vw;
    padding: 18px 8px 14px 8px;
    border-radius: 10px;
  }
}

/* ----------------------------------- */
/*     About – Values Section          */
/* ----------------------------------- */
.about-values ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 14px;
}
.about-values ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #3E4856;
  font-size: 1.06rem;
}
.about-values ul li img {
  height: 28px;
  width: 28px;
}

/* ----------------------------------- */
/*        Contact & Info Section       */
/* ----------------------------------- */
.address-block, .contact-info, .opening-hours {
  background: #F1F4FB;
  border-radius: 10px;
  padding: 16px 18px 13px 18px;
  margin-bottom: 16px;
  color: #274C77;
}
.address-block h2, .contact-info h2, .opening-hours h2 {
  font-size: 1.16rem;
  margin-bottom: 5px;
  font-weight: 600;
}
.contact-info a {
  color: #B30C22;
  text-decoration: underline;
  font-weight: 600;
}
.opening-hours {
  margin-bottom: 0;
}

/* ----------------------------------- */
/*        Various Utility Classes      */
/* ----------------------------------- */
.regionen-highlights ul,
.themenreisen ul,
.nachhaltigkeitsversprechen ul,
.gruene-reisen ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: 0;
  margin-top: 18px;
}
.regionen-highlights ul li, .themenreisen ul li, .nachhaltigkeitsversprechen ul li, .gruene-reisen ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #3E4856;
  font-size: 1.05rem;
}
.regionen-highlights ul li img,
.nachhaltigkeitsversprechen ul li img { height: 28px; width: 28px; }
.cert-note {
  display: flex;
  align-items: center;
  background: #E8EDF4;
  border-radius: 8px;
  padding: 10px 14px 8px 11px;
  margin-top: 13px;
  color: #223050;
  font-size: 0.95rem;
  font-weight: 500;
}
.cert-note img {
  margin-right: 7px;
  height: 22px;
}

/* ----------------------------------- */
/*     Text-section/Legal cleanups     */
/* ----------------------------------- */
.text-section {
  margin-bottom: 20px;
}
.text-section ul {
  list-style: disc inside;
  margin-top: 4px;
  margin-bottom: 12px;
  margin-left: 18px;
}
.text-section li {
  margin-bottom: 6px;
}

.danke .gratitude-message {
  color: #274C77;
  font-size: 1.09rem;
}

.next-steps {
  background: #F1F4FB;
  border-radius: 10px;
  padding: 14px 13px;
  margin-bottom: 18px;
}

/* ----------------------------------- */
/*      Accessibility: Focus state     */
/* ----------------------------------- */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #B30C22;
  outline-offset: 1.5px;
}

/* ----------------------------------- */
/*         Subtle Animations           */
/* ----------------------------------- */
.cta-btn, .cookie-btn, .main-nav a, .mobile-nav a {
  transition: background .16s, color .16s, box-shadow .16s, transform .15s;
}
.cta-btn:active, .cookie-btn:active, .main-nav a:active, .mobile-nav a:active {
  transform: scale(0.97);
}

/* ----------------------------------- */
/*     Utility and spacing helpers     */
/* ----------------------------------- */
.mb20 { margin-bottom: 20px; }
.mb24 { margin-bottom: 24px; }
.mb60 { margin-bottom: 60px; }
.pt20 { padding-top: 20px; }
.mt14 { margin-top: 14px; }
.gap20 { gap: 20px; }

/* ----------------------------------- */
/*  End of CSS for Reiseziel Heimat    */
/* ----------------------------------- */
