/* ======================= 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;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #FFFCF5;
  color: #23281a;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,.2,.4,1);
}
a:focus, a:hover {
  outline: none;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
  padding-left: 1.2em;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  margin-bottom: 12px;
  color: #205A43;
}
h1 { font-size: 2.75rem; line-height: 1.1; letter-spacing: -1px; margin-top: 0; margin-bottom: 18px; text-shadow: 0 1px 0 #e3d5c5; }
h2 { font-size: 2rem;  line-height: 1.18; margin-top: 0; margin-bottom: 14px; }
h3 { font-size: 1.375rem; line-height: 1.22; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b { font-weight: 700; }

/* ======================= VINTAGE RETRO COLOR PALETTE ======================= */
:root {
  --brand-primary: #205A43;
  --brand-secondary: #F4F7F5;
  --brand-accent: #4389A2;
  --retro-yellow: #F9E6C8;
  --retro-orange: #FCA167;
  --retro-brown: #594232;
  --retro-cream: #FFFCF5;
  --retro-green: #AAB89D;
  --retro-red: #E2695E;
  --retro-blue: #90B1C3;
  --retro-shadow: rgba(83, 65, 50, 0.10);
}

/* ======================= LAYOUT CONTAINERS ======================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  /* For retro: slightly notched corners */
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.text-section {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.text-section ul,
.text-section ol {
  margin-top: 0;
  margin-bottom: 12px;
}

/* Required Flexbox patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--retro-cream);
  border-radius: 16px;
  box-shadow: 0 2px 8px var(--retro-shadow);
  padding: 24px;
}
.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;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px var(--retro-shadow);
  border: 2px solid var(--retro-yellow);
  max-width: 420px;
  min-width: 250px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--retro-yellow);
  padding: 20px 16px;
  border-radius: 12px;
  box-shadow: 0 1px 8px var(--retro-shadow);
  margin-bottom: 20px;
  border-top: 4px solid var(--retro-orange);
}

/* === Extra Responsive Flex Layouts === */
.feature-grid, .service-cards, .testimonials-slider, .feature-icons, .family-testimonials, .offer-list, .kurs-list, .boat-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-cards .service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px var(--retro-shadow);
  padding: 24px 18px;
  flex: 1 1 250px;
  max-width: 350px;
  border-left: 6px solid var(--retro-green);
  border-top: 2px solid var(--retro-blue);
  margin-bottom: 20px;
}
.service-card .price {
  display: inline-block;
  color: var(--retro-red);
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.15rem;
  margin-top: 8px;
  padding: 2px 10px;
  background: var(--retro-yellow);
  border-radius: 6px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* ======================= HEADER & NAVIGATION ======================= */
header {
  background: var(--brand-primary);
  color: #fff;
  padding: 0 0 6px 0;
  box-shadow: 0 6px 24px rgba(89, 66, 50,0.045);
  position: relative;
  z-index: 102;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  justify-content: space-between;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.02rem;
}
.main-nav a {
  color: #fff;
  border-bottom: 2px solid transparent;
  padding: 4px 0;
  letter-spacing: .5px;
  transition: border 0.18s, color 0.14s, background 0.24s;
}
.main-nav a:hover,
.main-nav a:focus {
  border-bottom: 2px solid var(--retro-orange);
  background: rgba(249, 230, 200, 0.07);
  color: var(--retro-yellow);
}
.cta-button {
  background: var(--retro-orange);
  color: #fff!important;
  border: none;
  border-radius: 8px 32px 8px 32px;
  font-size: 1.06rem;
  padding: 13px 34px;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  box-shadow: 0 3px 12px var(--retro-shadow);
  transition: background 0.2s, color 0.2s, transform 0.09s;
  cursor: pointer;
  margin-left: 24px;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: var(--brand-accent);
  color: #fff;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 28px var(--retro-shadow);
  text-decoration: none;
}
.mobile-menu-toggle {
  display: none;
  background: var(--retro-yellow);
  color: var(--brand-primary);
  font-size: 2.1rem;
  border: none;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 10px;
  box-shadow: 0 1px 6px var(--retro-shadow);
  transition: background .18s, color .2s;
  z-index: 110;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--retro-orange);
  color: #fff;
}
/* Hide main nav and cta on mobile, show burger */
@media (max-width: 1000px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--brand-primary);
  color: #fff;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.85,-0.01, .37,1.01);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: -8px 0 32px rgba(33,27,8,0.24);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 12px;
  right: 24px;
  background: var(--retro-yellow);
  color: var(--brand-primary);
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  transition: background 0.2s, color .14s;
  z-index: 2100;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--retro-orange);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 68px;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.19rem;
  letter-spacing: 1px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  width: 100%;
  transition: border .18s, color .12s, background .16s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--retro-yellow);
  border-bottom: 2.5px solid var(--retro-orange);
  background: rgba(249,230,200,0.1);
}

@media (max-width: 550px) {
  .mobile-menu {
    padding: 12px 8px;
  }
  .mobile-menu-close {
    right: 8px;
    top: 8px;
    width: 38px;
    height: 38px;
  }
  .mobile-nav {
    margin-top: 44px;
    font-size: 1.06rem;
  }
}

/* ======================= HERO SECTIONS ======================= */
.hero {
  background: linear-gradient(95deg, var(--retro-yellow) 75%, var(--brand-secondary) 100%);
  border-bottom: 5px solid var(--brand-primary);
  padding-top: 70px;
  padding-bottom: 70px;
  box-shadow: 0 12px 36px var(--retro-shadow);
  position: relative;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--brand-primary);
  margin-bottom: 12px;
  text-shadow: 1px 2px 0 var(--brand-secondary);
}
.hero .subheadline {
  color: var(--retro-brown);
  font-size: 1.3rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 26px;
  letter-spacing: .5px;
}
@media (max-width: 900px) {
  .hero {
    padding-top: 40px;
    padding-bottom: 39px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .subheadline {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom-width: 3px;
  }
  .hero h1 {
    font-size: 1.44rem;
    margin-bottom: 10px;
  }
  .hero .subheadline {
    font-size: 0.97rem;
  }
}

/* ======================= FEATURES, SERVICE/PRICING & GRIDS ======================= */
.features,
.tour-features,
.company-features {
  background: var(--retro-cream);
  border-top: 2.5px dashed var(--retro-green);
  border-bottom: 2.5px dashed var(--retro-green);
  padding: 38px 0 38px 0;
}
.features .feature-item {
  background: transparent;
  border: none;
  box-shadow: 0 2px 12px var(--retro-shadow);
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 310px;
  padding: 17px 12px;
  align-items: flex-start;
  border-radius: 11px;
}
.feature-icons .feature-item {
  background: var(--retro-yellow);
  border-radius: 8px;
  border-bottom: 3.5px solid var(--retro-orange);
  box-shadow: 0 6px 15px var(--retro-shadow);
  align-items: center;
  gap: 18px;
  flex: 1 1 160px;
  min-width: 130px;
  max-width: 218px;
  padding: 18px 0;
  justify-content: center;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  filter: sepia(.43) saturate(1.2) brightness(1.06);
}
.feature-item h3,
.service-card h3 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.18rem;
  color: var(--brand-primary);
}
.feature-item p {
  margin-bottom: 0;
  color: var(--retro-brown);
}

/* Responsive cards & flex grids */
@media (max-width: 900px) {
  .feature-grid, .service-cards, .testimonials-slider, .feature-icons, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .content-wrapper,
  .feature-grid, .service-cards, .testimonials-slider, .feature-icons, .content-grid  {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-item, .service-card, .testimonial-card {
    max-width: unset;
    min-width: 0;
    width: 100%;
  }
}

/* ======================= TESTIMONIALS ======================= */
.testimonials, .testimonials-quotes {
  background: var(--retro-cream);
  padding: 36px 0 36px 0;
  border-top: 2px dashed var(--retro-blue);
}
.testimonials .testimonial-card,
.testimonials-quotes .testimonial-card,
.family-testimonials .testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px var(--retro-shadow);
  border: 2px solid var(--retro-yellow);
  color: #2b2c1e;
  padding: 20px 23px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .14s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px var(--retro-shadow);
  transform: translateY(-2px) scale(.99) rotate(-2deg);
}
.testimonial-card .stars {
  color: var(--retro-orange);
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  font-family: inherit;
}
.testimonial-author {
  margin-top: 10px;
  font-weight: 700;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 0.97rem;
  color: var(--brand-accent);
  letter-spacing: .5px;
}
@media (max-width: 600px) {
  .testimonials .testimonial-card,.testimonials-quotes .testimonial-card{padding:14px 12px;}
}

/* ======================= SECTIONS - ABOUT, PROGRAMS, LEGAL ======================= */
.about-preview,.about-philosophy,.company-features, .legal-datenschutz, .legal-gdpr, .legal-cookie-policy, .legal-terms {
  background: var(--retro-yellow);
  border-radius: 24px;
  box-shadow: 0 2px 14px var(--retro-shadow);
  margin-bottom: 38px;
  padding: 42px 24px;
  border: 1.5px dashed var(--retro-brown);
}
.about-preview ul li,
.company-features ul li { margin-bottom: 6px; }
.legal-datenschutz h1,
.legal-gdpr h1,
.legal-cookie-policy h1,
.legal-terms h1 {
  color: var(--brand-primary);
  font-size: 2.1rem;
}
.legal-datenschutz ul,
.legal-gdpr ul,
.legal-cookie-policy ul,
.legal-terms ul {margin-bottom: 16px;}

/* ======================= CARDS, SERVICES, PRICING ======================= */
.pricing-table, .pricing-grid, .pricing-info {
  background: var(--retro-yellow);
  border-radius: 10px;
  padding: 18px 18px 14px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 7px var(--retro-shadow);
  border: 1.5px solid var(--brand-primary);
}
.pricing-table ul,
.pricing-grid ul {
  margin-left: 1em;
  padding-left: 0.2em;
}
.pricing-table ul li, .pricing-grid ul li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 7px;
  color: var(--retro-brown);
}

/* ======================= CALL TO ACTION ======================= */
.cta-wrapper, .cta-contact-short {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 26px;
}
.cta-wrapper .cta-button,
.cta-contact-short .cta-button {
  margin-left: 0;
  margin-right: 0;
  font-size: 1.12rem;
  padding: 13px 38px;
}
@media (max-width: 768px) {
  .cta-wrapper, .cta-contact-short {
    flex-direction: column;
    gap: 12px;
  }
  .container {
    padding: 0 10px;
  }
}

/* ======================= FOOTER ======================= */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 40px 0 30px 0;
  border-top: 5px solid var(--retro-yellow);
  font-size: 1rem;
}
footer .container {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.25rem;
}
.footer-brand img {
  height: 44px;
  width: auto;
  border-radius: 10px;
  background: #fff2da;
  box-shadow: 0 2px 11px var(--retro-shadow);
  padding: 4px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .99rem;
}
.footer-nav a {
  color: #fff;
  padding: 0 4px 0 0;
  border-bottom: 1.7px solid transparent;
  transition: border .16s, color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--retro-yellow);
  border-bottom: 2.5px solid var(--retro-yellow);
}
.footer-contact {
  font-size: .97rem;
  line-height: 1.65;
  color: #e5eadc;
}
.footer-contact a {
  color: #fff;
  border-bottom: 1px dotted var(--retro-yellow);
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--retro-yellow);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ======================= COOKIE BANNER ======================= */
#cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--retro-yellow);
  color: var(--retro-brown);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 3000;
  box-shadow: 0 -8px 24px var(--retro-shadow);
  padding: 20px 6vw;
  font-size: 1em;
  transition: transform .35s cubic-bezier(.85,-0.3, .37,1.09);
  transform: translateY(0);
  border-top: 3.5px solid var(--brand-accent);
}
#cookie-banner.hidden {
  transform: translateY(120%);
}
#cookie-banner .cookie-text {
  flex: 1 1 310px;
  margin-right: 20px;
  font-size: 1.03em;
}
#cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
#cookie-banner button {
  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: 7px 21px 7px 21px;
  font-family: 'Roboto Slab', serif;
  font-size: 1.03rem;
  font-weight: 700;
  padding: 10px 22px;
  cursor: pointer;
  box-shadow: 0 2px 6px var(--retro-shadow);
  transition: background 0.17s, color 0.11s, transform 0.09s;
}
#cookie-banner .cookie-settings {
  background: var(--retro-orange);
  color: var(--brand-primary);
}
#cookie-banner .cookie-settings:hover, #cookie-banner .cookie-settings:focus {
  background: var(--brand-primary);
  color: var(--retro-yellow);
}
#cookie-banner button:hover, #cookie-banner button:focus {
  background: var(--brand-accent);
  color: #fff;
  transform: scale(1.06) translateY(-1px);
}
@media (max-width: 700px) {
  #cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 14px 6px;
  }
  #cookie-banner .cookie-text {
    margin-right: 0;
    font-size: 0.97em;
  }
}

/* Cookie Preference Modal */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(33,29,18,0.65);
  z-index: 3200;
  align-items: center;
  justify-content: center;
}
#cookie-modal.active {
  display: flex;
  animation: fadeInModal .32s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#cookie-modal .modal-content {
  background: var(--retro-yellow);
  border-radius: 18px;
  box-shadow: 0 6px 40px var(--retro-shadow);
  padding: 38px 26px 24px 26px;
  max-width: 390px;
  width: 90%;
  font-size: 1.05em;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
#cookie-modal .modal-close {
  position: absolute;
  right: 16px; top: 17px;
  background: var(--brand-accent);
  color: var(--retro-yellow);
  font-size: 1.4rem;
  border: none;
  border-radius: 100%;
  width: 37px;
  height: 37px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background .14s, color .14s;
}
#cookie-modal .modal-close:hover, #cookie-modal .modal-close:focus {
  background: var(--retro-orange);
  color: var(--brand-primary);
}
#cookie-modal h3 {
  margin-top: 0;
  font-size: 1.24rem;
  margin-bottom: 8px;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
#cookie-modal .cookie-toggle {
  width: 40px;
  height: 24px;
  background: var(--retro-green);
  border-radius: 17px;
  border: none;
  position: relative;
  transition: background .18s;
  cursor: pointer;
}
#cookie-modal .cookie-toggle[aria-checked="true"] {
  background: var(--brand-accent);
}
#cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: left .18s;
}
#cookie-modal .cookie-toggle[aria-checked="true"]:before {
  left: 19px;
  background: var(--retro-yellow);
}
#cookie-modal .category-label {
  font-weight: bold;
  font-family: 'Roboto Slab', serif;
  font-size: 1.01em;
}
#cookie-modal .category-desc {
  color: var(--brand-primary);
  font-size: 0.91em;
  margin-top: 1px;
  margin-bottom: 5px;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  flex-direction: row;
  margin-top: 12px;
  justify-content: flex-end;
}
#cookie-modal .cookie-modal-actions button {
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 7px 17px 7px 17px;
  border: none;
  font-family: 'Roboto Slab', serif;
  font-size: 1.03em;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 6px var(--retro-shadow);
  transition: background .12s, color .12s;
}
#cookie-modal .cookie-modal-actions button:focus,
#cookie-modal .cookie-modal-actions button:hover {
  background: var(--brand-accent);
  color: #fff;
}
@media (max-width: 600px) {
  #cookie-modal .modal-content {
    padding: 24px 6px 18px 6px;
    font-size: 0.98em;
  }
}

/* ======================= OTHER FORMS, BLOCKS ======================= */
.contact-details ul { list-style: none; margin-bottom: 12px; padding-left:0; }
.contact-details ul li { display: flex; align-items: center; gap: 12px; margin-bottom: 10px;}
.contact-details ul li img { width: 24px; height: 24px; }
address-section, .opening-hours, .location-list, .team-contacts {
  background: var(--retro-yellow);
  padding: 10px 14px; border-radius: 8px; margin-bottom:12px;
  box-shadow: 0 1px 5px var(--retro-shadow);
}

/* Headings & Typography Vintage Touches */
h1, h2, h3, h4 {
  font-family: 'Roboto Slab', Georgia, serif;
  text-transform: none;
}
h1 { letter-spacing: -.5px; }
h2, h3, h4 {
  letter-spacing: -0.3px;
}
.text-section ul, .text-section ol {
  font-family: 'Open Sans', Arial, sans-serif;
}

/* ============ BUTTONS VINTAGE STYLE ============= */
button, input[type=button], input[type=submit] {
  outline: none;
  background: var(--retro-orange);
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 6px 21px 6px 21px;
  font-family: 'Roboto Slab', serif;
  font-size: 1.03rem;
  letter-spacing: 1.1px;
  font-weight: 700;
  box-shadow: 0 2px 7px var(--retro-shadow);
  cursor: pointer;
  transition: background 0.19s, color 0.12s, transform 0.09s;
}
button:hover, button:focus,
input[type=button]:hover, input[type=button]:focus {
  background: var(--brand-accent);
  color: var(--retro-yellow);
  transform: translateY(-1px) scale(1.04);
}

/* ========== LISTS STYLES =========== */
ul, ol {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 10px;
}
ul li, ol li { margin-bottom: 6px; }
ol {
  list-style-type: decimal;
  padding-left:20px;
}
ul {
  list-style-type: disc;
  padding-left:20px;
}
.features ul {
  list-style-type: circle;
  padding-left:22px;
}

/* ======================= RESPONSIVE DESIGN ======================= */
@media (max-width: 1040px) {
  .container { padding: 0 10px; }
  .card, .feature-item, .service-card {
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .content-wrapper { flex-wrap: wrap; gap: 18px; }
}
@media (max-width: 768px) {
  .section, section {
    padding: 28px 7px;
    margin-bottom: 33px;
  }
  .content-wrapper, .text-image-section, .content-grid {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
  }
  .card, .feature-item, .service-card, .testimonial-card, .pricing-table {
    max-width: unset; min-width: 0; width: 100%;
  }
  .main-nav, .cta-button { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 550px){
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.04rem; }
  h3 { font-size: 1rem; }
  .section, section, .about-preview, .about-philosophy, .company-features, .legal-datenschutz, .legal-gdpr, .legal-cookie-policy, .legal-terms { padding: 9px 3px!important;}
}

/* ======================= MICRO-INTERACTIONS & MODERN EFFECTS ======================= */
.feature-item:hover, .service-card:hover {
  transform: translateY(-2px) rotate(-1deg) scale(1.012);
  box-shadow: 0 8px 30px var(--retro-shadow);
}
.cta-button:active {
  transform: scale(0.97) rotate(1deg);
}

/* Subtle patterned background for retro feel */
body {
  background-color: var(--retro-cream);
  background-image:
    repeating-linear-gradient(135deg, rgba(252, 161, 103, .025) 0 6%, transparent 7% 10%),
    repeating-linear-gradient(45deg, rgba(160, 174, 157, 0.024) 0 4%, transparent 4% 7%);
}

/* ========== OVERRIDES FOR specific structures ========== */
.about-philosophy .text-section h3 { margin-top: 18px; color: var(--brand-accent); }
.confirmation h1 { color: var(--retro-red); margin-bottom: 16px; }
.confirmation .cta-button { margin-top: 22px; }
.section .text-section h3, .content-wrapper .text-section h3 { color: var(--brand-primary); }
/* FAQ, Contact: visually separate data blocks */
.contact-details, .address-section, .opening-hours, .location-list, .team-contacts {
  margin-bottom: 18px;
  border-left: 4px solid var(--retro-orange);
}
.contact-details {background:var(--retro-yellow);border-radius:8px;padding:13px 16px;box-shadow:0 1px 5px var(--retro-shadow);}

/* =============== Vintage Decorative Lines ===============*/
.section > h2 {
  position: relative;
  padding-bottom: 8px;
}
.section > h2::after {
  content: '';
  display: block;
  margin: 7px auto 0 auto;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--retro-orange);
  opacity: .7;
}

/* ================== ACCESSIBILITY: FOCUS STYLES =================== */
a:focus-visible, button:focus-visible, .cta-button:focus-visible, .mobile-menu-close:focus-visible, .mobile-menu-toggle:focus-visible {
  outline: 2.5px dashed var(--retro-red);
  outline-offset: 3px;
}

/* =================== PRINT BASIC =================== */
@media print {
  header, .mobile-menu, footer, #cookie-banner, #cookie-modal { display: none; }
  .section, section, .container, .content-wrapper { padding: 0; margin: 0; }
}
