/* =====================================================================
   Scandinavian Clean Style for “Metallic Veil Abenteuer”
   (c) 2024 Scandinavian Inspired / metallic-veil.com
   ===================================================================== */
/* ---------------------------- CSS RESET ----------------------------- */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  background: #F7F3ED;
  color: #18314F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #18314F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #679B8C;
  outline: none;
}
ul, ol {
  margin: 0 0 1.6em 1.2em;
  padding-left: 1.2em;
}
li {
  margin-bottom: 0.5em;
}
img {
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
strong {
  font-weight: 600;
}
hr {
  border: none;
  border-bottom: 1px solid #E9E7DF;
  margin: 32px 0;
}

/* ---------------------- TYPOGRAPHY SCALE & STYLE --------------------- */
h1, .h1 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  color: #18314F;
}
h2, .h2 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #18314F;
}
h3, .h3 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #18314F;
}
h4, .h4 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}
.subheadline {
  font-size: 1.18rem;
  color: #679B8C;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #18314F;
}

/* -------------------------- LAYOUT CONTAINERS ------------------------ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24,49,79,0.08);
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(24,49,79,0.12);
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(103,155,140,0.13);
  transform: translateY(-3px) scale(1.011);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---------------------- HEADER & NAVIGATION BAR ---------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #E9E7DF;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 0;
}
header img {
  height: 40px;
  margin-right: 20px;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 6px 0 6px 0;
  color: #18314F;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  border-bottom: 2px solid #679B8C;
  color: #679B8C;
}
.cta-button {
  display: inline-block;
  background: #679B8C;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 10px 28px;
  border-radius: 24px;
  transition: background 0.18s, box-shadow 0.2s, transform 0.08s;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(103,155,140,0.11);
  border: none;
  margin-left: 30px;
}
.cta-button:hover, .cta-button:focus {
  background: #18314F;
  color: #fff;
  transform: scale(1.035);
  box-shadow: 0 4px 28px rgba(24,49,79,0.09);
}

/* --------------------------- HERO SECTIONS --------------------------- */
.hero {
  background: #F7F3ED;
  padding-top: 54px;
  padding-bottom: 44px;
  margin-bottom: 0;
  border-bottom: 1px solid #E9E7DF;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.hero h1 {
  font-size: 2.3rem;
}
.hero .subheadline {
  font-size: 1.15rem;
  color: #679B8C;
  margin-bottom: 12px;
}

/* ---------------------- FEATURES (ANGEBOTE, USP) --------------------- */
.features, .usp-list, .feature-grid {
  margin-bottom: 0;
  width: 100%;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(24,49,79,0.08);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(33.33% - 16px);
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.18s;
  margin-bottom: 0;
}
.feature-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 1.16rem;
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 1rem;
}
.feature-card strong {
  color: #18314F;
  font-weight: 600;
}
.feature-card:hover, .feature-card:focus {
  box-shadow: 0 6px 24px 0 rgba(103,155,140,0.13);
  transform: translateY(-2px) scale(1.019);
}

/* USP/WHY LIST */
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: disc inside;
  margin-bottom: 24px;
}
.usp-list li {
  flex: 1 1 290px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(24,49,79,0.06);
  padding: 18px 15px 14px 18px;
  font-size: 1rem;
  color: #18314F;
  margin-bottom: 0;
}

/* ----------------------- SECTION & PAGE STYLES ----------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.about, .about-team, .values, .legal, .equipment-service, .contact-details, .confirmation {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(24,49,79,0.05);
  padding: 34px 22px 30px 22px;
}
.cta {
  background: #679B8C;
  padding: 40px 0 26px 0;
  margin-bottom: 0;
  border-radius: 16px;
}
.cta-box {
  padding: 28px 18px 18px 18px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 22px 0 rgba(103,155,140,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-box h3 {
  color: #18314F;
  font-size: 1.31rem;
  margin-bottom: 0.7em;
}
.cta .cta-button {
  background: #18314F;
  color: #fff;
  margin-left: 0;
  margin-top: 10px;
}

/* ----------------- SERVICE LIST & DETAILS (ANGEBOTE) ----------------- */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.service-list li h3 {
  margin-bottom: 7px;
  font-size: 1.13rem;
}

/* -------------- TESTIMONIALS / ERLEBNISSE QUOTES CARD --------------- */
.testimonials h2 {
  margin-bottom: 16px;
}
.testimonial-card p {
  color: #18314F;
  font-size: 1.06rem;
  line-height: 1.6;
}
.testimonial-card span {
  color: #679B8C;
  font-style: italic;
  font-size: 0.97rem;
  font-family: 'Roboto', sans-serif;
}

/* ------------- LEGAL & DATENSCHUTZ (COPY/CARDS/INFO) ---------------- */
.legal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(24,49,79,0.08);
  padding: 30px 20px;
}

/* ------------------------- FOOTER STYLES ----------------------------- */
footer {
  background: #fff;
  border-top: 1px solid #E9E7DF;
  width: 100%;
  margin-top: 40px;
  padding: 0;
}
footer .container {
  padding: 20px 20px 18px 20px;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
  color: #18314F;
  opacity: 0.72;
  transition: color 0.24s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #679B8C;
  opacity: 1;
}
footer p {
  font-size: 0.93rem;
  color: #74809a;
  opacity: 0.73;
}

/* --------------------------- MOBILE NAVIGATION ----------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 501;
  background: #fff;
  border: 2px solid #18314F;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  font-size: 1.6rem;
  color: #18314F;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(24,49,79,0.09);
  cursor: pointer;
  transition: background 0.14s, border 0.18s, transform 0.12s;
}
.mobile-menu-toggle:active {
  background: #F7F3ED;
  transform: scale(0.97);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,49,79,0.98);
  z-index: 9999;
  transition: transform 0.32s cubic-bezier(.7,1.57,.63,.84);
  transform: translateX(100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  z-index: 10001;
  cursor: pointer;
  transition: color 0.2s, transform 0.14s;
}
.mobile-menu-close:active {
  color: #679B8C;
  transform: scale(0.93);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  justify-content: center;
  height: 100vh;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.016em;
  padding: 10px 0;
  transition: color 0.18s, background 0.16s;
  border-radius: 10px;
  width: 230px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #679B8C;
  color: #fff;
}

/* --------------------------------- COOKIE BANNER ----------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #18314F;
  border-top: 1px solid #E9E7DF;
  box-shadow: 0px -4px 32px rgba(103,155,140,0.09);
  padding: 20px 12px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 20000;
  font-size: 1rem;
  animation: cookieBannerFadeIn 0.34s cubic-bezier(.71,1.32,.56,.97);
}
@keyframes cookieBannerFadeIn { from {opacity: 0; transform: translateY(75px);} to {opacity: 1; transform: none;} }
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.cookie-banner button {
  background: #679B8C;
  color: #fff;
  padding: 8px 24px;
  border-radius: 22px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  border: 0;
  transition: background 0.15s, transform 0.09s;
  box-shadow: 0 2px 8px rgba(103,155,140,0.10);
  cursor: pointer;
}
.cookie-banner button.cookie-settings {
  background: #F7F3ED;
  color: #18314F;
  border: 1.2px solid #679B8C;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #18314F;
  color: #fff;
  transform: scale(1.045);
}
.cookie-banner button.cookie-reject:hover {
  background: #eee;
  color: #18314F;
}

/* ------------------- COOKIE PREFERENCES MODAL -------------------------- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom:0;
  background: rgba(24,49,79,0.36);
  z-index: 20020;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s cubic-bezier(.71,1.32,.56,.97);
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(24,49,79,0.15);
  padding: 30px 22px;
  max-width: 400px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: slideYIn 0.28s cubic-bezier(.7,1.57,.63,.84);
}
@keyframes fadeIn { from { opacity:0; } to {opacity:1;} }
@keyframes slideYIn { from { transform: translateY(80px); } to { transform: none; } }
.cookie-modal h2 {
  font-size: 1.4rem;
  color: #18314F;
  margin-bottom: 12px;
  font-family: 'Oswald', Arial, sans-serif;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 14px 0;
}
.cookie-modal-category label {
  font-size: 1.08rem;
  color: #18314F;
}
.cookie-modal-category input[type=checkbox], .cookie-modal-category input[type=radio]{
  accent-color: #679B8C;
  width: 18px; height: 18px;
  margin-left: 18px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-actions button {
  font-size: 1rem;
  border-radius: 18px;
  padding: 6px 22px;
  border: none;
  background: #679B8C;
  color: #fff;
  transition: background 0.15s, transform 0.09s;
}
.cookie-modal-actions button.cookie-cancel {
  background: #F7F3ED;
  color: #18314F;
  border: 1.2px solid #679B8C;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #18314F;
  color: #fff;
  transform: scale(1.03);
}

/* --------------------- FORMS, INPUTS (if present) --------------------- */
input[type=text], input[type=email], textarea {
  border: 1px solid #E9E7DF;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F3ED;
  width: 100%;
  transition: border 0.14s, box-shadow 0.19s;
}
input:focus, textarea:focus {
  border: 1.5px solid #679B8C;
  outline: none;
  box-shadow: 0 2px 10px rgba(103,155,140,0.09);
}
label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #18314F;
  margin-bottom: 7px;
}

/* ------------------------ RESPONSIVE DESIGN --------------------------- */
@media (max-width: 1140px) {
 .feature-card { min-width: 220px; width: calc(50% - 14px); }
 .usp-list li { min-width: 190px; }
}
@media (max-width: 900px) {
  .feature-card, .usp-list li {
    min-width: 170px;
    width: 100%;
    flex: 1 1 98%;
  }
  .feature-grid, .usp-list {
    gap: 16px;
  }
  .card-container, .content-grid {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-direction: row;
    gap: 0;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .usp-list {
    flex-direction: column;
    gap: 12px;
  }
  .section { padding: 30px 6px; }
  .about, .about-team, .legal, .equipment-service, .contact-details, .confirmation {
    padding: 22px 8px;
  }
  .cta {
    padding: 28px 0 14px 0;
  }
  .cta-box {
    padding: 14px 4px 10px 4px;
    gap: 9px;
  }
  .hero {
    padding-top: 32px;
    padding-bottom: 24px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 12px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  .container {
    max-width: 99vw;
    padding: 0 6px;
  }
  header .container, footer .container {
    padding: 10px 6px 10px 6px;
  }
  .feature-grid, .usp-list {
    flex-direction: column;
    gap: 9px;
  }
  .section {
    padding: 16px 0;
    margin-bottom: 30px;
  }
  .testimonials .content-wrapper, .features .content-wrapper {
    gap: 8px;
  }
  .testimonial-card, .feature-card {
    padding: 16px 10px 13px 10px;
  }
}
/* TEXT-IMAGE SECTIONS FLEX DIRECTION RESPONSIVE */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ------------------- FOCUS VISIBLE (Accessibility) -------------------- */
:focus-visible {
  outline: 2.5px solid #679B8C;
  outline-offset: 2px;
  transition: outline .18s;
}

/* --------------------- HIDE/SHOW UTILITY CLASSES ---------------------- */
.hide {
  display: none !important;
}

/* ------------------------- SMOOTH ANIMATIONS -------------------------- */
html {
  scroll-behavior: smooth;
}

/* ------------------ SCANDINAVIAN CLEAN DECORATIVE --------------------- */
.card, .feature-card, .testimonial-card, .about, .about-team, .legal, .cta-box {
  border-radius: 14px;
  box-shadow: 0 1.5px 5px rgba(103,155,140,0.075);
  background: #fff;
}

/* ..END OF STYLE.. */
