/* =========================
   Vintage Retro CSS – SunsetGleam Lake Reisen
   ========================= */
/* ---- 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,
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.5;
  background: #f5ecd8;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { padding-left: 1.5em; }
img { max-width: 100%; display: block; height: auto; }
table { border-collapse: collapse; border-spacing: 0; width:100%; }
th, td { padding: 12px 10px; text-align: left; }
:focus { outline: 2px dashed #F9B234; outline-offset: 2px; }

/* Web font imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --primary: #235166;
  --primary-dark: #18384a;
  --secondary: #FDF6ED;
  --accent: #F9B234;
  --accent-dark: #d18b16;
  --retro-orange: #ffb47e;
  --retro-blue: #468faf;
  --retro-brown: #a4703b;
  --retro-green: #437560;
  --retro-bg: #f5ecd8;
  --white: #fff;
  --black: #272419;
  --card-bg: #faf6e4;
  --shadow: 0 4px 22px 0 rgba(35,81,102,0.08), 0 2px 4px rgba(164,112,59,0.10);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--retro-bg);
  color: var(--black);
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

/* --- Header --- */
header {
  background: var(--secondary);
  box-shadow: 0 2px 10px rgba(35,81,102,0.07);
  border-bottom: 4px solid var(--accent);
  font-family: var(--font-display);
}
header .container {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img {
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.main-nav a {
  color: var(--primary);
  padding: 6px 8px;
  border-radius: 6px;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--retro-orange);
  color: var(--black);
}
.cta.primary {
  background: var(--accent);
  color: var(--primary);
  padding: 11px 28px;
  border-radius: 22px;
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px 0 rgba(249,178,52,0.17);
  border: none;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, color .2s;
  margin-left: 16px;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent-dark);
  color: #fff;
}
/* Burger menu button for mobile */
.mobile-menu-toggle {
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  font-size: 34px;
  line-height: 1;
  border-radius: 8px;
  padding: 4px 16px 0 16px;
  margin-left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--retro-orange);
  color: var(--black);
}
@media (min-width: 930px) {
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 929px) {
  .main-nav, .cta.primary {
    display: none;
  }
}


/* --- Mobile Menu Overlay --- */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(120deg, var(--retro-orange) 0 90px, var(--secondary) 90px 100%);
  z-index: 9999;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-105vw);
  transition: transform .35s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 16px 0 18px 20px;
  background: var(--primary);
  color: #fff;
  font-size: 32px;
  border: none;
  border-radius: 8px;
  padding: 2px 16px 0 16px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.18s;
  z-index: 10001;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--accent);
  color: var(--primary-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  padding: 0 28px 48px 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--primary-dark);
  padding: 13px 0 7px 0;
  border-bottom: 1px dashed var(--retro-brown);
  margin-bottom: 6px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-orange);
  color: var(--black);
  border-radius: 6px;
  border-bottom: none;
  padding-left: 8px;
}

/* --- HERO Section --- */
.hero {
  background:
    repeating-linear-gradient(-45deg, var(--retro-orange) 0 24px, #fcebca 24px 34px,
    #fff0c2 34px 48px, var(--retro-orange) 48px 60px);
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 48px 0 38px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  gap: 0;
}
.hero .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--primary);
  text-shadow: 1px 2px 0 #fff5d4;
  font-weight: 900;
  letter-spacing: -0.015em;
}
@media (max-width: 700px) {
  .hero h1 { font-size: 28px; }
}
@media (max-width: 450px) {
  .hero h1 { font-size: 22px; }
}
.subheadline {
  font-size: 21px;
  color: var(--retro-brown);
  margin: 0 0 4px 0;
  font-family: var(--font-body);
  font-weight: 700;
  background: var(--secondary);
  border-radius: 15px;
  padding: 8px 17px 8px 17px;
  box-shadow: 0 1px 6px 0 rgba(164,112,59,.07);
}

/* --- Main Section/Card Layouts (Retro patterns, Cards) --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 22px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  list-style: none;
  margin-top: 20px;
}
.feature-grid li {
  background: var(--card-bg);
  border: 2px dashed var(--accent);
  border-radius: 15px;
  box-shadow: var(--shadow);
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 17px;
  padding: 26px 15px 20px 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 8px 32px rgba(35,81,102,0.13);
  border-color: var(--retro-blue);
  z-index: 2;
}
.feature-grid img {
  width: 57px;
  height: 57px;
  filter: sepia(0.3) hue-rotate(-25deg) brightness(1.1);
}

/* Service list as flex cards */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
  align-items: stretch;
}
.service-item {
  background: var(--card-bg);
  border: 1.5px solid var(--retro-orange);
  border-radius: 17px;
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  min-width: 250px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 13px;
  padding: 22px 21px 16px 21px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, border-color .16s;
}
.service-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 2px;
}
.service-item p {
  font-size: 16px;
  color: var(--retro-brown);
}
.service-item .cta {
  align-self: flex-end;
  margin-top: 8px;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 8px 32px rgba(35,81,102,0.12);
  border-color: var(--primary);
  background: #fffbe6;
}

/* --- Offer Table --- */
.offer-table {
  background: var(--card-bg);
  border-radius: 13px;
  box-shadow: var(--shadow);
  margin-top: 4px;
  margin-bottom: 28px;
  font-size: 17px;
}
.offer-table th {
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
}
.offer-table tr:nth-child(odd) td {
  background: var(--secondary);
}
.offer-table tr:nth-child(even) td {
  background: var(--card-bg);
}
.offer-table td, .offer-table th {
  border-bottom: 1px solid #e19832;
}
.offer-table tr:last-child td, .offer-table tr:last-child th {
  border-bottom: none;
}
.offer-table .cta {
  font-size: 16px;
  padding: 6px 15px;
  border-radius: 10px;
  font-weight: bold;
}

.package-comparison {
  margin: 9px 0 18px 0;
  padding-left: 1.1em;
  font-size: 17px;
}
.package-comparison li {
  margin-bottom: 13px;
}


/* --- USP & Unordered List Styling --- */
.usp-list, .experience-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-top: 10px;
}
.usp-list li, .experience-list li {
  background: var(--retro-orange);
  color: var(--primary-dark);
  border-radius: 11px;
  font-size: 16.5px;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 14px 20px;
  box-shadow: 0 2px 11px rgba(248,177,52,0.13);
  margin-bottom: 10px;
  flex: 1 1 240px;
  min-width: 180px;
  max-width: 360px;
  transition:background 0.13s;
}
.usp-list li:hover, .experience-list li:hover {
  background: var(--accent);
  color: var(--black);
}
.experience-list h3 {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 18.5px;
}
.experience-list p {
  color: var(--retro-brown);
  font-size: 16px;
}

/* --- Button Styles --- */
.cta {
  background: var(--primary);
  color: var(--accent);
  border: none;
  border-radius: 22px;
  font-family: var(--font-display);
  font-size: 18px;
  padding: 10px 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(35,81,102,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform .18s;
  display: inline-block;
  margin: 0 4px 0 0;
}
.cta:hover, .cta:focus {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 3px 15px 0 rgba(249,178,52,0.18);
  transform: translateY(-3px) scale(1.03) rotate(-1deg);
}

/* --- Section Spacing for Cards/Sections --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-left: 7px solid var(--accent);
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(35,81,102,.10);
  margin-bottom: 24px;
  font-size: 18px;
  color: var(--primary-dark);
  max-width: 600px;
  transition: box-shadow 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 25px 0 rgba(164,112,59,0.16);
}
.testimonial-card p {
  color: var(--primary-dark);
  font-size: 18px;
  line-height: 1.7;
}
.testimonial-card span {
  color: var(--retro-brown);
  font-size: 16px;
  font-weight: 600;
}

.rating-summary {
  margin-top: 10px;
  font-size: 20px;
  color: var(--primary);
  font-family: var(--font-display);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- Headings and Typography Hierarchy --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 9px;
  letter-spacing: -0.008em;
}
h1 {
  font-size: 38px;
  margin-bottom: 8px;
  color: var(--primary);
}
h2 {
  font-size: 28px;
  margin-bottom: 6px;
}
h3 {
  font-size: 21px;
  margin-bottom: 4px;
}
h4, h5 {
  font-size: 18px;
  margin-bottom: 2px;
}
@media (max-width: 540px) {
  h1 { font-size: 25px; }
  h2 { font-size: 20px; }
  h3 { font-size: 17px; }
}
p, ul, ol {
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--black);
}
strong { color: var(--primary-dark); }

/* --- Footer --- */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 36px 0 18px 0;
  font-family: var(--font-body);
  font-size: 16px;
  margin-top: 32px;
  border-top: 7px solid var(--accent);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--accent);
  font-weight: 700;
  padding: 2px 0;
  border-bottom: 1.2px solid transparent;
  transition: border-bottom 0.2s, color 0.2s;
  font-family: var(--font-display);
  font-size: 16px;
}
.footer-nav a:hover, .footer-nav a:focus {
  border-bottom: 1.2px solid var(--retro-orange);
  color: var(--retro-orange);
}
.contact-details {
  font-size: 15.5px;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-details a {
  color: var(--accent);
  font-weight: 700;
}
.legal-links {
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 10px;
  color: var(--accent);
}
.legal-links a {
  color: var(--accent);
  margin: 0 2px;
  transition: text-decoration 0.18s;
}
.legal-links a:hover, .legal-links a:focus {
  text-decoration: underline dotted;
}
.social-media-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  align-items: center;
}
.social-media-links img {
  width: 30px;
  height: 30px;
  filter: sepia(0.3) hue-rotate(-25deg) brightness(1.1);
  cursor: pointer;
  transition: filter 0.17s, transform .15s;
}
.social-media-links img:hover {
  filter: sepia(0.1) hue-rotate(10deg) brightness(1.03) saturate(1.2);
  transform: scale(1.08) rotate(-6deg);
}

/* --- LOCATION MAP ICON --- */
.location-map {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 2px 8px rgba(35,81,102,0.09);
  margin: 12px 0 0 0;
  font-size: 16px;
}
.location-map img {
  width: 30px;
  filter: sepia(0.33) hue-rotate(-20deg);
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 20000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 8px 0 8px;
  pointer-events: all;
  animation: cookieSlideUp 0.7s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  background: var(--secondary);
  color: var(--primary-dark);
  box-shadow: 0 4px 18px rgba(35,81,102,0.20);
  border-radius: 18px 18px 0 0;
  border: 2.6px solid var(--accent);
  padding: 26px 30px 20px 28px;
  max-width: 600px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 0;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.cookie-banner .btn {
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 16px;
  padding: 6px 18px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-banner .btn:hover, .cookie-banner .btn:focus {
  background: var(--accent);
  color: var(--primary-dark);
}
.cookie-banner .btn-secondary {
  background: var(--accent);
  color: var(--primary-dark);
}
.cookie-banner .btn-secondary:hover, .cookie-banner .btn-secondary:focus {
  background: var(--primary);
  color: var(--accent);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 25000;
  background: rgba(35,81,102,0.27);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.22s;
}
@keyframes fadeInModal {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: var(--card-bg);
  border: 3px solid var(--accent);
  border-radius: 18px;
  max-width: 420px;
  width: 97vw;
  padding: 27px 22px 22px 22px;
  box-shadow: 0 6px 28px 0 rgba(35,81,102,0.19);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalPopIn 0.35s cubic-bezier(.42,0,.17,1.23);
}
@keyframes modalPopIn {
  from { transform:scale(.77); opacity:0; }
  to { transform:scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 22px;
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 5px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.cookie-modal label {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--accent);
  transform: scale(1.2);
  margin-right: 6px;
}
.cookie-modal .btn-row {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .btn {
  font-size: 15px;
  padding: 7px 17px;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 13px;
  right: 18px;
  background: none;
  border: none;
  font-size: 29px;
  color: var(--primary-dark);
  cursor: pointer;
}

/* --- Scrollbar styling (retro touch) --- */
body::-webkit-scrollbar {
  width: 11px;
  background: #efefe9;
}
body::-webkit-scrollbar-thumb {
  background: var(--retro-orange);
  border-radius: 6px;
  border: 3px solid #f5ecd8;
}

/* --- Animations --- */
.card, .feature-grid li, .service-item, .testimonial-card, .offer-table, .cta {
  transition: box-shadow 0.20s, border-color 0.18s, background 0.18s, color 0.15s, transform 0.17s;
}
.card:active, .feature-grid li:active, .service-item:active, .testimonial-card:active {
  transform: scale(0.98) rotate(-1deg);
}

/* --- Responsive & Mobile Layouts --- */
@media (max-width: 1020px) {
  .feature-grid, .service-list, .content-grid, .card-container {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-nav {
    flex-direction: column;
    gap: 19px;
  }
  .feature-grid li, .service-item, .usp-list li, .experience-list li {
    max-width: 100%;
  }
}
@media (max-width:600px){
  section {
    padding: 24px 4px;
    margin-bottom: 40px;
  }
  header .container {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0 5px 0;
  }
}
@media (max-width:450px){
  .footer-nav nav a {
    font-size: 15px;
  }
  .legal-links {
    font-size: 12px;
  }
  .footer-nav {
    gap: 8px;
  }
}

/* --- Misc Utility --- */
.mt-24 { margin-top: 24px !important; }
.mb-16 { margin-bottom: 16px !important; }

/* --- Accessibility: focus states --- */
a:focus, button:focus, .cta:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, input:focus, select:focus {
  outline: 2.6px dashed var(--accent-dark);
  outline-offset: 2px;
}

/* --- Card hover color effect for accessible cards --- */
.card:hover, .service-item:focus-within, .feature-grid li:focus-within {
  background-color: #fffbe6;
  box-shadow: 0 8px 32px rgba(249,178,52,0.12);
}

/* --- Hide cookie modal/banner by default (should be toggled via JS) --- */
.cookie-banner, .cookie-modal-overlay {
  display: none;
}

/* For JS: add .active to display the modal/banner */
.cookie-banner.active {
  display: flex;
}
.cookie-modal-overlay.active {
  display: flex;
}

/* --- END --- */
