/* =============================================================
   CSS RESET & BASE STYLES (with 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #F6F2EA;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #245647;
  background: #F6F2EA;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #245647;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4,0,.2,1);
}
a:hover,
a:focus {
  color: #33825f;
  outline: none;
}
ul, ol {
  padding-left: 24px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Roboto', serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #245647;
  text-rendering: optimizeLegibility;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 16px;
  line-height: 1.15;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 12px;
  line-height: 1.2;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/* For geometric_structured: use uppercase/spacing for smaller titles */
h2, h3, h4 {
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* =============================================================
   LAYOUT & CONTAINER
   ============================================================= */
.container {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  padding: 0;
  margin: 0 auto;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.07em;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 0 0;
  font-size: 1rem;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin: 24px 0;
  font-size: 0.95rem;
}
.footer-contact img {
  margin-right: 8px;
  vertical-align: middle;
}
footer {
  background: #245647;
  color: #F6F2EA;
  border-top: 4px solid #97C9A7;
  padding: 40px 0 24px 0;
  margin-top: 40px;
}
footer .container {
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
footer a {
  color: #F6F2EA;
  font-weight: 600;
  transition: color 0.2s;
}
footer a:hover,
footer a:focus {
  color: #97C9A7;
}
footer img {
  width: 38px;
  height: auto;
  margin-bottom: 10px;
}
footer span {
  font-size: 0.95rem;
}


/* =============================================================
   HERO SECTION
   ============================================================= */
.hero {
  display: flex;
  align-items: center;
  background: #97C9A7;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 24px 0 rgba(36,86,71,0.07);
  min-height: 340px;
  margin-bottom: 60px;
  padding: 48px 0 40px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: #245647;
  font-size: 2.5rem;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}
.hero p {
  color: #245647;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

/* =============================================================
   BUTTONS & LINKS
   ============================================================= */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #245647;
  color: #F6F2EA;
  padding: 13px 28px;
  border-radius: 8px 32px 8px 32px;
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 12px rgba(36,86,71,0.08);
  transition: background .2s, box-shadow .2s, color .2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #33825f;
  color: #FFF;
  box-shadow: 0 4px 18px rgba(36,86,71,0.13);
}
.cta-link {
  color: #245647;
  border-bottom: 2px solid #97C9A7;
  padding-bottom: 2px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s;
}
.cta-link:hover, .cta-link:focus {
  color: #33825f;
  border-color: #245647;
}


/* =============================================================
   FLEXBOX/SPECIAL CONTAINERS & CARDS
   ============================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(36,86,71,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 320px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 4px 28px rgba(36,86,71,0.13);
  transform: translateY(-3px) scale(1.025);
}
.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: 12px;
  padding: 20px 28px 16px 28px;
  background: #fff;
  border-radius: 20px 8px 20px 8px;
  box-shadow: 0 2px 16px rgba(36,86,71,0.13);
  margin-bottom: 20px;
  color: #245647;
  min-width: 260px;
  max-width: 500px;
  font-size: 1.08rem;
  border-left: 5px solid #97C9A7;
  transition: box-shadow .2s, border-color .2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px rgba(36,86,71,0.18);
  border-left: 5px solid #245647;
}
.testimonial-card p {
  font-style: italic;
  color: #245647;
  margin-bottom: 7px;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #33825f;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px rgba(36,86,71,0.07);
}

/* --- List/grid variations for index --- */
.features-list, .usp-list, .park-list, .borghi-list, .itinerario-list, .full-services-list, .services-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.features-list li, .usp-list li, .park-list li, .borghi-list li, .itinerario-list li, .full-services-list li, .services-list li {
  background: #fff;
  border-radius: 16px 32px 16px 32px;
  box-shadow: 0 1px 9px rgba(36,86,71,0.07);
  color: #245647;
  padding: 16px 18px 14px 18px;
  font-size: 1.025rem;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
  min-width: 250px;
  flex: 1 1 260px;
  font-weight: 500;
  transition: box-shadow .2s;
}
.features-list li img, .usp-list li img, .park-list li img, .borghi-list li img, .itinerario-list li img, .full-services-list li img, .services-list li img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  margin-right: 10px;
  background: #F6F2EA;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 0 0 2px #97C9A7;
}
.full-services-list li span:first-of-type {
  font-weight: 600;
  color: #245647;
}
.full-services-list li span:last-of-type {
  color: #33825f;
  font-weight: 600;
  margin-left: 6px;
}

.services-list li, .services-summary ul li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 1.08rem;
}

.services-summary {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  margin-top: 14px;
  box-shadow: 0 2px 13px rgba(36,86,71,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.services-summary ul {
  padding-left: 18px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin: 14px 0 28px 0;
}
.quick-contacts, .direct-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.location-info, .office-hours {
  max-width: 320px;
  display: flex;
  flex-direction: column;
}
.contact-details ul {
  gap: 9px;
  padding-left: 20px;
  margin-bottom: 8px;
}
.contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.map {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(36,86,71,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 80px;
  margin-bottom: 18px;
}


/* =============================================================
   HEADER & NAVIGATION
   ============================================================= */
header {
  background: #F6F2EA;
  box-shadow: 0 2px 16px 0 rgba(36,86,71,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px 18px 20px;
}
header .main-nav {
  flex: 1;
  margin-left: 32px;
}
header img {
  width: 38px;
  height: auto;
}
header .cta-btn {
  margin-left: 25px;
  font-size: 1.06rem;
  padding: 11px 22px;
}

/* Hide mobile toggle by default (desktop only) */
.mobile-menu-toggle {
  display: none;
}

/* =============================================================
   MOBILE NAVIGATION MENU
   ============================================================= */
.mobile-menu-toggle {
  background: #245647;
  color: #F6F2EA;
  padding: 13px 18px;
  font-size: 2rem;
  border-radius: 14px;
  border: none;
  display: none;
  position: relative;
  z-index: 210;
  box-shadow: 0 2px 16px rgba(36,86,71,0.07);
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #33825f;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 80vw;
  max-width: 340px;
  background: #245647;
  box-shadow: 2px 0 48px rgba(36,86,71,0.14);
  transform: translateX(-105%);
  transition: transform 0.36s cubic-bezier(.62,0,.37,1);
  z-index: 200;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 20px;
  margin-left: auto;
  margin-right: 18px;
  font-size: 2rem;
  background: none;
  color: #F6F2EA;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 7px;
  transition: background .2s;
}
.mobile-menu-close:hover {
  background: #33825f;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 32px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #F6F2EA;
  font-size: 1.15rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  letter-spacing: 0.07em;
  border-left: 3px solid transparent;
  transition: color .18s, border-left-color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #97C9A7;
  border-left: 3px solid #97C9A7;
}

/* Overlay for mobile menu darkening */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36,86,71,0.28);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.mobile-menu.open + .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* =============================================================
   RESPONSIVE DESIGN & FLEXBOX-FIRST
   ============================================================= */
@media (max-width: 1024px) {
  .container { max-width: 95vw; }
  .main-nav { gap: 16px; }
}

@media (max-width: 900px) {
  .hero h1 { font-size: 2.0rem; }
  h2 { font-size: 1.3rem; }
  .features-list li, .usp-list li, .park-list li, .borghi-list li, .itinerario-list li, .services-list li {
    min-width: 180px;
  }
  .card, .testimonial-card, .feature-item {
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 10px; }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: 8px;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
    padding: 10px 10px;
  }
  .hero, .section {
    padding: 22px 5px 26px 5px;
    min-height: 0;
  }
  .hero h1 { font-size: 1.45rem; }
  .content-wrapper { padding: 0; }
  .features-list, .usp-list, .park-list, .borghi-list, .itinerario-list, .full-services-list, .services-list {
    flex-direction: column;
    gap: 15px;
  }
  .contact-details, .footer-contact, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100vw;
    font-size: 1rem;
    padding: 18px 12px 14px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-contact { gap: 10px; }
  footer .container { padding: 0 5px; }
}
/* Extra small screens */
@media (max-width: 480px) {
  h1, .hero h1 { font-size: 1.20rem; }
  h2, .hero h2 { font-size: 1.041rem; }
  .card, .testimonial-card, .feature-item {
    min-width: 90px;
    padding: 8px 5px;
  }
}

/* =============================================================
   COOKIE CONSENT BANNER + MODAL
   ============================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #245647;
  color: #F6F2EA;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  z-index: 4900;
  box-shadow: 0 -1px 16px rgba(36,86,71,0.09);
  padding: 24px 22px;
}
.cookie-banner p {
  font-size: 1.04rem;
  line-height: 1.45;
  margin-bottom: 0;
  color: #F6F2EA;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #97C9A7;
  color: #245647;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px 32px 8px 32px;
  border: none;
  font-size: 1rem;
  padding: 8px 18px;
  transition: background .18s, color .18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F6F2EA;
  color: #245647;
}
.cookie-settings-btn {
  background: transparent;
  border: 2px solid #97C9A7;
  color: #97C9A7;
  font-weight: 700;
  padding: 8px 18px;
  transition: border-color .18s, color .18s;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F6F2EA;
  color: #245647;
  border-color: #245647;
}

@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 8px;
  }
  .cookie-banner-actions { justify-content: stretch; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4950;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(36,86,71,0.4);
  justify-content: center;
  align-items: center;
  transition: opacity .32s;
  opacity: 0;
}
.cookie-modal-overlay.open {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 44px rgba(36,86,71,0.22);
  padding: 34px 26px 28px 26px;
  max-width: 420px;
  width: 85vw;
  color: #245647;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}
.cookie-modal h2 {
  font-family: 'Playfair Display', serif;
  color: #245647;
  font-size: 1.32rem;
  text-transform: none;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 10px;
}
.cookie-category-label {
  font-weight: 700;
}
.cookie-category-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #97C9A7;
  border-radius: 12px;
  position: relative;
  margin-right: 10px;
  transition: background .14s;
}
.cookie-category-toggle:checked {
  background: #245647;
}
.cookie-category-toggle:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(36,86,71,0.16);
  transition: left .16s;
}
.cookie-category-toggle:checked:before {
  left: 19px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: transparent;
  font-size: 1.5rem;
  color: #245647;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background .15s;
}
.cookie-modal-close:hover {
  background: #F6F2EA;
}


/* =============================================================
   GEOMETRIC/STRUCTURED DECORATIVE ELEMENTS
   ============================================================= */
/* Section angles and geometric accents, where needed */
.section {
  border-radius: 28px 70px 28px 70px;
  background: #fff;
  box-shadow: 0 3px 22px rgba(36,86,71,0.06);
}
.hero {
  border-radius: 0 0 48px 48px;
  position: relative;
  overflow: hidden;
}
.hero:before,
.hero:after {
  content: '';
  position: absolute;
  z-index: 0;
}
.hero:before {
  top: -38px; left: -48px; width: 180px; height: 120px;
  background: rgba(36,86,71,0.08);
  border-radius: 50% 30% 50% 60%/40% 50% 60% 60%;
  transform: rotate(-6deg);
}
.hero:after {
  bottom: -30px; right: -65px; width: 160px; height: 80px;
  background: rgba(246,242,234,0.35);
  border-radius: 55% 35% 65% 35% / 45% 60% 50% 60%;
  transform: rotate(7deg);
}

.features-list li, .usp-list li, .park-list li, .borghi-list li, .itinerario-list li, .full-services-list li, .services-list li, .testimonial-card, .feature-item {
  border-bottom: 5px solid #97C9A7;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

h1, h2, h3, .cta-btn {
  font-family: 'Playfair Display', 'Roboto', serif;
  font-variant-ligatures: none;
}

/* Force angular/geometric look for numbers & emphasized titles */
h2, h3, h4, .cta-btn {
  font-family: 'Playfair Display', 'Roboto', serif;
  font-variant-caps: all-small-caps;
}

/* Subtle hover scaling for geometric effect */
.features-list li:hover, .usp-list li:hover, .services-list li:hover, .full-services-list li:hover {
  box-shadow: 0 4px 24px rgba(36,86,71,0.13);
  border-bottom-color: #245647;
  transform: scale(1.032);
  z-index: 3;
}

/* Misc: remove outline for mouse, keep for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 3px solid #97C9A7;
  outline-offset: 2px;
}

/* =============================================================
   PRINT STYLES
   ============================================================= */
@media print {
  *, *:before, *:after {
    background: none !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  header, nav, .cta-btn, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff !important; }
}

/*
================= END OF STYLE.CSS FOR VIE VERDI MÜNSTER =================
*/
