/* -------------------- 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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #30322e;
  background-color: #faf6ef;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #af5a3c;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #145374;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li { margin-bottom: 10px; }

/* -------------------- BRAND FONTS & COLORS -------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

:root {
  --vintage-blue: #145374; /* brand primary, dark blue */
  --vintage-light-blue: #5588A3; /* brand secondary, light blue */
  --vintage-accent: #F5F7FA; /* brand accent, off white */
  --vintage-orange: #f4a259;
  --vintage-yellow: #f7d08a;
  --vintage-red: #b4442a;
  --vintage-brown: #705744;
  --vintage-background: #faf6ef;
  --vintage-text: #30322e;
  --shadow-card: 0 2px 12px 0 rgba(85, 88, 77, 0.11);
  --border-radius-card: 18px;
  --border-radius-btn: 28px;
  --pattern-faded: repeating-linear-gradient(135deg, #fff8ee 0 5px, rgba(244,162,89,0.07) 5px 10px);
}

h1, h2, h3, .btn-primary, nav, header, .hero h1 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 0 rgba(164, 90, 60, 0.07);
}
h1 { font-size: 2.5rem; margin-bottom: 16px; color: var(--vintage-blue); }
h2 { font-size: 2rem; margin-bottom: 16px; color: var(--vintage-red); }
h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--vintage-blue); }

p, ul, li, span, strong {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--vintage-text);
}

/* -------------------- HEADER & MAIN NAV -------------------- */
header {
  width: 100%;
  background: var(--pattern-faded);
  border-bottom: 6px solid var(--vintage-yellow);
  padding: 18px 0 10px 0;
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
}
header img {
  height: 48px;
  margin: 0 26px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--vintage-blue);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
  background: var(--vintage-yellow);
  color: var(--vintage-red);
}

/* -------------------- BURGER MENU -------------------- */
.mobile-menu-toggle {
  display: none;
  position: relative;
  margin-left: 20px;
  padding: 10px 18px;
  font-size: 1.8rem;
  color: var(--vintage-blue);
  background: var(--vintage-yellow);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 102;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 4px 10px 0 rgba(85, 88, 77, 0.09);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--vintage-orange);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--vintage-accent);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.4,1.25,.4,1);
  z-index: 200;
  box-shadow: 3px 0 24px 0 rgba(85, 88, 77, 0.21);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: 26px;
  margin-bottom: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--vintage-blue);
  cursor: pointer;
  font-family: inherit;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100vw;
  padding-left: 32px;
}
.mobile-nav a {
  color: var(--vintage-blue);
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 0;
  border-radius: 0 28px 28px 0;
  font-weight: 700;
  transition: background 0.17s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vintage-yellow);
  color: var(--vintage-red);
}

@media (max-width: 1080px) {
  .main-nav { gap: 15px; }
}
@media (max-width: 900px) {
  header {
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px 0 6px 0;
  }
  .main-nav a { font-size: 0.98rem; }
  header img { height: 39px; margin-left: 12px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* -------------------- BUTTONS -------------------- */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.08rem;
  padding: 11px 32px;
  border: none;
  border-radius: var(--border-radius-btn);
  text-align: center;
  cursor: pointer;
  background: var(--vintage-blue);
  color: #fff;
  margin-top: 18px;
  letter-spacing: 1.2px;
  transition: background 0.19s, box-shadow 0.16s, color 0.13s;
  box-shadow: 0 2px 10px 0 rgba(164, 90, 60, 0.07);
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--vintage-red);
  color: #fff;
  box-shadow: 0 6px 21px 0 rgba(244,162,89,0.15);
}
.btn-secondary {
  background: var(--vintage-yellow);
  color: var(--vintage-blue);
  border: 2px solid var(--vintage-orange);
  margin-left: 10px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--vintage-orange);
  color: #fff;
  box-shadow: 0 8px 20px 0 rgba(85, 88, 77, 0.12);
  border-color: var(--vintage-red);
}

/* -------------------- GENERAL CONTAINER, SECTION, GRID -------------------- */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pattern-faded);
  border-radius: 18px;
  box-shadow: 0 2.5px 24px 0 rgba(110,73,25,0.08);
}
.content-wrapper {
  margin: 0 auto;
}
.text-section {
  background: none;
  padding: 0;
  margin-bottom: 40px;
}

/* MANDATORY FLEX SPACING CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffdfa;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 28px 26px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 30px 0 rgba(244,162,89,0.18);
  transform: translateY(-5px) scale(1.03);
}
.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;
  min-width: 240px;
  background: #fffefa;
  border: 2.5px dashed var(--vintage-orange);
  border-radius: 14px;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px 0 rgba(164, 90, 60, 0.07);
  font-size: 1.1rem;
  flex-direction: column;
}
.testimonial-card p {
  color: #19211f;
  background: none;
  font-size: 1.09rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: var(--vintage-blue);
  font-weight: bold;
  letter-spacing: 0.2px;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 23px 20px 23px;
  border-radius: 16px;
  background: #fffbe8;
  box-shadow: 0 2px 8px 0 rgba(255,184,101,0.064);
  margin-bottom: 20px;
  flex: 1 1 230px;
  min-width: 220px;
  position: relative;
  transition: box-shadow 0.2s;
}
.feature-item:hover {
  box-shadow: 0 6px 20px 0 rgba(244, 162, 89, 0.15);
}
.feature-item img {
  height: 36px;
  width: 36px;
}

/* Unique grids */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.destination-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.destination-item {
  background: #fffefa;
  border: 1.5px solid var(--vintage-yellow);
  border-radius: 14px;
  padding: 26px 22px 19px 22px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: 0 2px 10px 0 rgba(244,162,89,0.08);
  transition: box-shadow 0.2s, border-color 0.16s;
}
.destination-item:hover {
  border-color: var(--vintage-orange);
  box-shadow: 0 7px 24px 0 rgba(164, 90, 60, 0.08);
}

/* Blog list */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
  justify-content: flex-start;
}
.blog-list article {
  background: #fffdfa;
  border-radius: 14px;
  border: 2px solid var(--vintage-blue);
  padding: 24px 18px 20px 24px;
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 250px;
  box-shadow: 0 2px 9px 0 rgba(85, 88, 77, 0.07);
  transition: box-shadow 0.2s, border-color 0.1s;
}
.blog-list article:hover {
  border-color: var(--vintage-red);
  box-shadow: 0 7px 19px 0 rgba(164, 90, 60, 0.09);
}

/* ---------- HERO DESIGN (retro) ---------- */
.hero {
  background: repeating-linear-gradient(120deg, #F5F7FA 0 16px, #f7d08a 16px 32px);
  min-height: 180px;
  display: flex;
  align-items: center;
  box-shadow: 0 12px 40px 0 rgba(110,73,25,0.06);
  border-bottom: 6px double var(--vintage-orange);
  margin-bottom: 48px;
  position: relative;
  overflow-x: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  margin-top: 25px;
  margin-bottom: 28px;
  max-width: 720px;
  background: rgba(255,255,245,0.75);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 4px 34px 0 rgba(255,184,101,0.17);
  border: 2.5px solid var(--vintage-blue);
}
.hero h1 {
  color: var(--vintage-red);
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.hero p {
  color: var(--vintage-brown);
  font-size: 1.08rem;
  margin-bottom: 16px;
}

/* ---------------- TEXT-IMAGE SECTION ALIGNMENT ---------------- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* -------------------- CONTACT DETAILS & MAP ------------------ */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
  background: #fffbf4;
  padding: 20px 20px 8px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(255,184,101,0.065);
  min-width: 220px;
}
.contact-details ul {
  list-style: none;
  margin-bottom: 8px;
  padding: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
  font-size: 1.01rem;
}
.contact-details img {
  height: 23px;
  width: 23px;
}
.map {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
  background: #fff8ee;
  padding: 12px 16px 14px 13px;
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(245, 186, 39, 0.04);
}
.map img {
  height: 46px;
  width: 46px;
}

/* -------------------- FOOTER -------------------- */
footer {
  background: linear-gradient(120deg, #fffbf4 0%, #F5F7FA 100%);
  border-top: 3px dashed var(--vintage-yellow);
  padding: 32px 0 24px 0;
  margin-top: 80px;
  font-size: 1rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a,
.footer-links a {
  color: var(--vintage-brown);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  margin-bottom: 5px;
  transition: color 0.16s;
}
.footer-nav a:hover,
.footer-links a:hover {
  color: var(--vintage-red);
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social img {
  width: 33px;
  height: 33px;
  opacity: 0.80;
  transition: opacity 0.1s, transform 0.13s;
}
.footer-social img:hover {
  opacity: 1;
  transform: scale(1.12);
}
.footer-impressum {
  color: #968256;
  font-size: 0.98rem;
  margin-top: 6px;
}

@media (max-width: 850px) {
  .footer-content {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  footer { padding: 24px 0 14px 0; }
}

/* -------------------- TESTIMONIALS -------------------- */
.testimonials {
  background: #fffdfa;
  border-top: 3px dotted var(--vintage-orange);
  border-bottom: 3px dotted var(--vintage-yellow);
  padding: 40px 0;
}
.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials .content-wrapper {
  max-width: 800px;
}
.testimonials h2 {
  color: var(--vintage-brown); margin-bottom: 25px;
}

/* -------------------- RESPONSIVE STYLES -------------------- */
@media (max-width: 680px) {
  .container { padding-left: 9px; padding-right: 9px; }
  .footer-content { gap: 8px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .hero .content-wrapper { padding: 19px 10px; }
  .feature-grid, .destination-grid, .blog-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .destination-item, .blog-list article {
    min-width: unset;
    width: 100%;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card { min-width: unset; width: 100%; }
  .contact-details,
  .map { min-width: unset; width: 100%; padding: 14px 8px 9px 8px; }
}

@media (max-width: 520px) {
  .btn-primary, .btn-secondary {
    padding: 8px 12px;
    font-size: 0.98rem;
  }
  .container { padding-left: 4px; padding-right: 4px; }
  .hero .content-wrapper { margin-top: 12px; margin-bottom: 16px; }
}

/* -------------------- COOKIE CONSENT BANNER -------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #ffe4ab;
  box-shadow: 0 -2px 14px 0 rgba(244,162,89,0.16);
  z-index: 2300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 17vw 20px 18vw;
  transition: transform 0.3s cubic-bezier(.6,1.3,.6,1), opacity 0.2s;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.07rem;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner p {
  color: #5b4327;
  margin-right: 12px;
  flex: 4 1 200px;
}
.cookie-consent-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex: 1 1 100px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 24px;
  border-radius: 21px;
  border: none;
  margin-right: 4px;
  font-size: 1.03rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--vintage-orange);
  color: #fff;
  transition: background 0.14s, color 0.11s, box-shadow 0.18s;
}
.cookie-btn.settings {
  background: var(--vintage-accent);
  color: var(--vintage-blue);
  border: 1.5px solid var(--vintage-yellow);
}
.cookie-btn.accept {
  background: var(--vintage-blue);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--vintage-brown);
  color: #ffe4ab;
  box-shadow: 0 2px 12px 0 rgba(85, 88, 77, 0.10);
}

@media (max-width: 900px) {
  .cookie-consent-banner { padding: 15px 7vw 15px 7vw; gap: 12px; }
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 11px 11px;
    gap: 12px;
    font-size: 0.99rem;
  }
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,37,42,0.29);
  z-index: 2310;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fffefa;
  border-radius: 24px;
  padding: 36px 32px 26px 32px;
  max-width: 420px;
  box-shadow: 0 7px 34px 0 rgba(164, 90, 60,0.19);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.09rem;
}
.cookie-modal h2 {
  font-size: 1.31rem; color: var(--vintage-blue); margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: bold;
  color: var(--vintage-blue);
}
.cookie-switch {
  width: 46px;
  height: 24px;
  border-radius: 14px;
  background: #f4a259;
  position: relative;
  margin-left: auto;
  margin-right: 10px;
  cursor: pointer;
  appearance: none;
  outline: none;
  transition: background 0.15s;
  display: inline-block;
}
.cookie-switch[disabled], .cookie-switch.disabled {
  background: #d6c9ac;
  cursor: not-allowed;
}
.cookie-switch:after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.17s;
}
.cookie-switch:checked:after {
  left: 25px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}

/* -------------------- ANIMATIONS & INTERACTIONS -------------------- */
.card,
.feature-item,
.destination-item,
.blog-list article,
.testimonial-card {
  transition: box-shadow 0.21s, border-color 0.15s, transform 0.13s;
}
.card:active,
.feature-item:active,
.destination-item:active,
.blog-list article:active {
  transform: scale(0.96);
}
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.16s, box-shadow 0.16s, color 0.13s;
}

/* ------------ PRINT ------------------- */
@media print {
  .main-nav, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay, .mobile-menu-toggle, footer { display: none !important; }
}
