/* --- 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,
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;
}
html { box-sizing: border-box; font-size: 16px; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #FAF6ED;
  color: #26282c;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #1A2740; text-decoration: none; transition: color 0.18s; }
a:focus { outline: 2px solid #93b8c8; }
ul, ol { margin-left: 2em; margin-bottom: 1.2em; }
strong, b { font-weight: 700; }
small { font-size: 80%; }

/* --- BRAND FONTS (LOAD) --- */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1A2740;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.8rem; margin-bottom: 32px; }
h2 { font-size: 2rem; margin-bottom: 24px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; }
p, li, address { font-size: 1.06rem; color: #27282f; }
.subheadline { font-family: 'Source Sans Pro', sans-serif; font-size: 1.18rem; font-weight: 400; color: #4e5361; margin-bottom: 32px; letter-spacing: 0.02em; }

/* --- CONTAINER & LAYOUT --- */
.container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
section {
  background: transparent;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- FLEX LAYOUTS (MANDATORY) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(26, 39, 64, 0.06);
  padding: 32px 28px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(26,39,64,0.12);
  transform: translateY(-2px) 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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px rgba(26,39,64,0.08);
  border-left: 5px solid #93b8c8;
  min-width: 240px;
  max-width: 450px;
  flex: 1 1 320px;
  transition: box-shadow 0.17s, border-color 0.19s;
}
.testimonial-card:hover {
  border-left: 5px solid #1A2740;
  box-shadow: 0 8px 36px rgba(26,39,64,0.16);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HERO STYLES --- */
.hero {
  background: linear-gradient(110deg, #FAF6ED 65%, #eaecee 100%);
  padding: 68px 0 54px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  font-size: 2.35rem;
  color: #1A2740;
  margin-bottom: 22px;
}
.hero .subheadline {
  color: #61718b;
  margin-bottom: 36px;
}

/* --- BUTTONS --- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  border-radius: 28px;
  border: none;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.14rem;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 12px;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s, transform 0.12s;
  box-shadow: 0 2px 10px rgba(26,39,64, 0.08);
  letter-spacing: 0.01em;
  outline: none;
  text-align: center;
  min-width: 180px;
}
.button.primary {
  background: #1A2740;
  color: #fff;
  border: 2px solid #1A2740;
}
.button.primary:hover, .button.primary:focus {
  background: #93b8c8;
  color: #1A2740;
  border-color: #93b8c8;
  transform: translateY(-1.5px) scale(1.025);
}
.button.secondary {
  background: transparent;
  border: 2px solid #1A2740;
  color: #1A2740;
}
.button.secondary:hover, .button.secondary:focus {
  background: #93b8c8;
  color: #fff;
  border-color: #93b8c8;
  transform: translateY(-1px) scale(1.017);
}
.button:active {
  box-shadow: 0 0.5px 3px rgba(26,39,64,0.11);
  transform: scale(0.98);
}

/* --- NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0; left: 0; right: 0; z-index: 50;
  box-shadow: 0 1.5px 12px rgba(26,39,64,.032);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 20px;
  flex: 1 1 350px;
}
.main-nav a {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: #1A2740;
  letter-spacing: 0.012em;
  padding: 3px 10px 7px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #93b8c8;
  border-bottom: 2px solid #93b8c8;
}

/* --- NAV BUTTON & MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #1A2740;
  cursor: pointer;
  padding: 8px 16px;
  margin-left: auto;
  margin-right: 0;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,39,64,0.93);
  z-index: 2000;
  padding: 24px 32px 24px 16px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.7,.2,.23,1.03);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  margin-bottom: 14px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  margin-top: 30px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 10px 0 10px 10px;
  width: 100%;
  border-radius: 8px;
  transition: background 0.13s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #93b8c8;
  background: rgba(255,255,255,0.09);
}

/* --- MAIN --- */
main {
  margin-top: 0;
}
section {
  margin-bottom: 60px;
}

/* --- FEATURES LIST --- */
.features-list,
.icon-grid,
.package-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.features-list li, .icon-grid li, .package-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 18px 24px;
  box-shadow: 0 1.5px 12px rgba(26,39,64,0.04);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  max-width: 385px;
  flex: 1 1 280px;
  gap: 10px;
  transition: box-shadow 0.14s, border-color 0.19s, transform 0.17s;
}
.features-list li img, .icon-grid li img {
  width: 32px;
  height: 32px;
  margin-bottom: 9px;
}
.features-list li:hover, .icon-grid li:hover, .package-card:hover {
  box-shadow: 0 6px 24px rgba(26,39,64,0.11);
  border-color: #93b8c8;
  transform: translateY(-2.5px);
}
.features-list {
  gap: 24px 20px;
}

/* --- SERVICE CARDS (index) --- */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1.5px 11px rgba(26,39,64,0.08);
  padding: 24px 22px;
  margin-bottom: 20px;
  flex: 1 1 265px;
  max-width: 350px;
  transition: box-shadow 0.14s, border 0.16s, transform 0.13s;
}
.service-card:hover {
  box-shadow: 0 5px 21px rgba(26, 39, 64, 0.15);
  border-color: #93b8c8;
  transform: translateY(-1px);
}
.service-card strong {
  color: #1A2740;
  font-size: 1.04rem;
  display: block;
  margin-top: 12px;
  font-family: 'Playfair Display', serif;
}

/* --- PACKAGE CARDS (reisepakete) --- */
.package-card strong {
  color: #1A2740;
  font-size: 1.08rem;
  font-family: 'Playfair Display', serif;
  margin-top: 10px; 
  letter-spacing: 0.02em;
}

/* --- TESTIMONIALS --- */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card p {
  font-size: 1.01rem;
  font-family: 'Source Sans Pro', sans-serif;
  color: #26282c;
  margin-bottom: 14px;
  margin-top: 2px;
}
.testimonial-card strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #1A2740;
  margin-right: 7px;
}
.testimonial-card span {
  color: #F3BF32;
  font-size: 1.09rem;
  letter-spacing: 0.15em;
  padding-left: 8px;
}
.testimonial-card > div {
  display: flex; align-items: center;
  gap: 8px;
}

/* --- FAQ --- */
.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(26,39,64,0.06);
  padding: 18px 20px 18px 24px;
}
.faq-item h3 {
  font-size: 1.17rem;
}
.faq-item p {
  margin-left: 12px;
  margin-bottom: 0;
  color: #27282C;
  font-size: 1.05rem;
}
.quick-links {
  display: flex;
  gap: 16px;
  margin-top: 7px;
  margin-bottom: 7px;
}
.quick-links li {
  list-style: none;
}
.quick-links a{
  color: #93b8c8;
  border-bottom: 1.5px solid transparent;
  transition: border .18s, color .14s;
}
.quick-links a:hover, .quick-links a:focus {
  color: #1A2740;
  border-bottom: 1.5px solid #93b8c8;
}

/* --- GALLERY / TEXT SECTIONS --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2px;
}
.text-section ul li {
  margin-bottom: 8px;
}
.text-section h2 {
  margin-top: 34px;
  margin-bottom: 13px;
}

/* --- BULLETS --- */
.bullets {
  margin: 18px 0 8px 18px;
  padding: 0;
  font-size: 1.01rem;
}
.bullets li {
  list-style-type: disc;
  margin-left: 18px;
  margin-bottom: 7px;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 1px solid #e5e8eb;
  margin-top: 60px;
  padding-top: 32px;
  padding-bottom: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 6px;
}
.footer-nav a {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  color: #61718b;
  font-size: 0.99rem;
  border-bottom: 2px solid transparent;
  transition: color 0.14s, border-color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #1A2740;
  border-bottom: 2px solid #1A2740;
}
address {
  font-style: normal;
  color: #61718b;
  font-size: 1.01rem;
}
footer small {
  color: #a9adb7;
  font-size: 0.93rem;
}

/* --- SPACING BETWEEN CARDS & SECTIONS --- */
section, .section {
  margin-bottom: 60px;
  padding-top: 0;
  padding-bottom: 0;
}
.card, .service-card, .package-card,
.features-list li, .icon-grid li, .faq-item, .testimonial-card {
  margin-bottom: 20px;
}

/* --- RESPONSIVE DESIGN (MOBILE FIRST) --- */
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
  .card-container, .features-list, .testimonial-cards, .content-grid, .service-grid, .package-cards, .icon-grid {
    gap: 16px;
  }
  .card, .service-card, .package-card, .features-list li, .icon-grid li, .faq-item, .testimonial-card {
    padding: 16px 15px 12px 15px;
  }
  .main-nav { gap: 17px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.22rem; }
  .container { padding-left: 10px; padding-right: 10px; }
  .hero { padding: 40px 0 36px 0; }
  .main-nav, header .button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .testimonial-cards, .service-grid, .features-list, .package-cards, .icon-grid {
    flex-direction: column !important;
    gap: 14px;
  }
  .footer-nav { flex-direction: column; gap: 8px; }
  .section, section {
    margin-bottom: 38px;
    padding: 22px 0;
  }
  .content-wrapper { gap: 14px; }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 440px) {
  .container { padding-left: 0; padding-right: 0; }
  .hero { padding: 18px 0 14px 0; }
  .section, section { margin-bottom: 26px; padding: 10px 0; }
  .button { padding: 10px 11px; font-size: 0.98rem; }
}

/* --- TRANSITIONS & MICROINTERACTIONS --- */
a, .button, .nav-link, .mobile-nav a, .feature-card, .card, .service-card, .testimonial-card {
  transition: background .18s, color .17s, box-shadow 0.17s, border 0.14s, transform 0.13s;
}
.button:focus, .mobile-nav a:focus, .footer-nav a:focus { outline: 2px solid #93b8c8; outline-offset: 2px; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3999;
  background: #fff;
  border-top: 2px solid #93b8c8;
  box-shadow: 0 -8px 30px rgba(26,39,64,0.09);
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 22px 38px 20px 38px;
  font-size: 1rem;
  font-family: 'Source Sans Pro', sans-serif;
  color: #26282C;
  animation: cookieSlideIn 0.5s cubic-bezier(.47,1.53,.54,-0.2);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-banner .button {
  padding: 9px 22px;
  min-width: 0;
  font-size: 1.01rem;
  margin: 0;
}
.cookie-banner .button.secondary {
  background: transparent;
  color: #1A2740;
  border: 2px solid #1A2740;
}
.cookie-banner .button.secondary:hover {
  background: #1A2740;
  color: #fff;
  border-color: #1A2740;
}
@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 14px 14px 12px;
    font-size: 0.99rem;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  background: #fff;
  z-index: 5000;
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(26, 39, 64, 0.29);
  min-width: 320px;
  max-width: 95vw;
  width: 410px;
  padding: 38px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn 0.3s cubic-bezier(.7,.2,.23,1.03);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translate(-50%, 20%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.cookie-modal h2 {
  font-size: 1.24rem;
  color: #1A2740;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1rem;
  color: #1A2740;
  font-family: 'Source Sans Pro', sans-serif;
}
.cookie-toggle {
  appearance: none;
  width: 39px;
  height: 21px;
  background: #e6e8eb;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.14s;
}
.cookie-toggle:checked {
  background: #93b8c8;
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px; left: 4px;
  transition: left 0.14s;
}
.cookie-toggle:checked:before {
  left: 20px;
}
.cookie-category .cookie-toggle[disabled] {
  background: #abb4bc;
  cursor: not-allowed;
}
.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .button {
  font-size: 0.97rem;
  padding: 8px 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 22px;
  background: none;
  border: none;
  color: #1A2740;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 500px) {
  .cookie-modal { width: 99vw; min-width: 0; padding: 15px 5vw 18px 6vw; }
}

/* --- UTILITIES --- */
.hide { display: none !important; }
.show { display: block !important; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }

::-webkit-input-placeholder { color: #a9adb7; }
::-moz-placeholder { color: #a9adb7; }
:-ms-input-placeholder { color: #a9adb7; }
::placeholder { color: #a9adb7; }

/* --- SCROLLBAR STYLE --- */
body::-webkit-scrollbar { width: 9px; background: #e6e8eb; }
body::-webkit-scrollbar-thumb { background: #d4d8db; border-radius: 12px; }

/* --- ACCESSIBILITY --- */
*:focus-visible {
  outline: 2px solid #93b8c8;
  outline-offset: 1px;
}

/* --- ADDITIONAL CLASSES FROM HTML --- */
ul.features-list, ul.icon-grid, ul.bullets {
  list-style-type: none;
  padding-left: 0;
}

/* --- END --- */
