/* --- 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;
  box-sizing: border-box;
}
body {
  background: #fdfcf8;
  color: #1e2a32;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #22577A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #be9c53;
  text-decoration: underline;
}
ul, ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
li {
  margin-bottom: 8px;
}
/* HEADINGS */
h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #17304a;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #22577A;
  letter-spacing: -0.3px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: -0.1px;
  color: #253956;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
strong {
  font-weight: 700;
  color: #17304a;
}

/* --- LUXURY PREMIUM THEME COLORS AND VARIABLES --- */
:root {
  --primary: #22577A;
  --secondary: #80B918;
  --accent: #FDF0D5;
  --neutral: #f7f3eb;
  --lux-gold: #be9c53;
  --lux-gold-light: #e4d8bd;
  --lux-coal: #23272f;
  --lux-silver: #dedede;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- HEADER --- */
header {
  background: #fff;
  border-bottom: 2px solid var(--lux-gold-light);
  box-shadow: 0 2px 8px rgba(34, 39, 55, 0.06);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 7px 0;
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--lux-gold);
  border-bottom: 2px solid var(--lux-gold);
  background: none;
}
.cta-button {
  background: var(--lux-gold);
  color: #23272f;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border: none;
  padding: 11px 32px;
  border-radius: 30px;
  box-shadow: 0 2px 16px 0 rgba(190,156,83,.07);
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  display: inline-block;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(34, 87, 122, 0.11);
  transform: translateY(-1px) scale(1.02);
}

/* BURGER MENU BUTTON */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--lux-gold);
  cursor: pointer;
  margin-left: 8px;
  padding: 6px 12px;
  display: none;
  transition: color 0.17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--primary);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 39, 47, 0.85);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.55,0,.1,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--lux-gold);
  font-size: 2.5rem;
  margin: 28px 30px 8px 0;
  cursor: pointer;
  transition: color 0.17s;
  z-index: 22;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  background: #fff;
  width: 90vw;
  max-width: 370px;
  height: 100vh;
  box-shadow: 3px 0 22px 0 rgba(34,39,47,0.10);
  padding: 32px 32px 32px 24px;
  position: relative;
  z-index: 20;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  padding: 5px 0;
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
  transition: color 0.19s, border-color 0.19s, background 0.2s;
  margin-right: 0;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--lux-gold);
  background: var(--accent);
  border-bottom: 1.5px solid var(--lux-gold);
}

/* --- MAIN LAYOUT & GLOBAL SECTIONS --- */
main {
  flex: 1 1 auto;
  width: 100%;
  background: linear-gradient(0deg, #FDF0D5 0%, #fff 100%);
  padding-top: 24px;
  padding-bottom: 40px;
  min-height: 70vh;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 20px 0 rgba(190,156,83,0.07);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 16px;
}
.text-section {
  color: #343644;
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.7;
}
.text-section ul {
  margin-bottom: 20px;
}
.text-section li {
  margin-bottom: 10px;
}
.weather-widget-placeholder, .location-map-placeholder {
  background: var(--lux-gold-light);
  color: var(--primary);
  border-radius: 15px;
  padding: 18px 16px;
  margin: 18px 0 0 0;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(34,87,122,0.04);
}

/* --- FEATURE GRID & LISTS --- */
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.feature-grid li, .feature-list li {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--neutral);
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(34,87,122,0.04);
  padding: 24px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 0;
  position: relative;
  border: 1.5px solid transparent;
  transition: box-shadow .25s, border-color .18s, background .17s;
}
.feature-grid li:hover, .feature-list li:hover {
  background: #fffefc;
  border-color: var(--lux-gold);
  box-shadow: 0 4px 22px 0 rgba(190,156,83,0.10);
  z-index: 2;
}
.feature-grid img, .feature-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 7px rgba(190,156,83,0.14));
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #27323a;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(34,39,47,0.10);
  margin-bottom: 20px;
  border-left: 6px solid var(--lux-gold);
  font-style: italic;
  position: relative;
  min-height: 70px;
  transition: box-shadow .19s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(190,156,83,0.13);
  transform: translateY(-2px) scale(1.012);
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #23272f;
}
.testimonial-card span {
  font-size: 1rem;
  color: #be9c53;
  font-style: normal;
  font-weight: 500;
  margin-left: 18px;
}

/* --- CARDS AND CARD CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(34,87,122,0.07);
  border: 1.5px solid var(--lux-gold-light);
  overflow: hidden;
  position: relative;
  transition: box-shadow .18s, border-color .18s;
}
.card:hover {
  border-color: var(--lux-gold);
  box-shadow: 0 6px 28px rgba(190,156,83,0.14);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 22px 18px 20px 18px;
}

/* --- INFO & CONTACT --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 18px 0;
  list-style: none;
  padding: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.06em;
}
.contact-info img {
  width: 19px;
  height: 19px;
  opacity: 0.80;
}

/* EVENT TABLE (VERANSTALTUNGEN) */
.event-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 20px;
  font-size: 1.03rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(190,156,83,0.07);
}
.event-table th, .event-table td {
  border: none;
  padding: 14px 14px;
  text-align: left;
}
.event-table thead tr {
  background: var(--lux-gold-light);
  color: #222a37;
}
.event-table tbody tr {
  border-top: 1px solid #eee;
  transition: background .17s;
}
.event-table tbody tr:hover {
  background: #fff8e8;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 35px 0 20px 0;
  margin-top: 36px;
  border-top: 2px solid var(--lux-gold-light);
  box-shadow: 0 -2px 16px rgba(34,87,122,0.04);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  gap: 30px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.08em;
  letter-spacing: 0.012em;
  padding-bottom: 1px;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.17s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--lux-gold);
  border-bottom: 1.5px solid var(--lux-gold);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.98em;
  color: #e4d8bd;
  text-align: center;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  z-index: 4000;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffefc;
  box-shadow: 0 -2px 16px rgba(34,87,122,0.13);
  border-top: 2.5px solid var(--lux-gold);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: cookie-banner-slide-in 0.7s cubic-bezier(.55,0,.1,1);
}
@keyframes cookie-banner-slide-in {
  0% { transform: translateY(80px); opacity:0; }
  80% { transform: translateY(-5px); opacity:1; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner p {
  color: #223240;
  line-height: 1.5;
  margin-bottom: 4px;
  font-size: 1em;
  text-align: center;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}
.cookie-btn {
  background: var(--lux-gold);
  color: #23272f;
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  padding: 9px 24px;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.17s, color 0.16s, box-shadow 0.19s;
  min-width: 120px;
  outline: none;
}
.cookie-btn.settings {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--lux-gold);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--lux-gold-light);
  color: var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fff;
  color: var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--lux-gold);
  color: #fff;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 4100;
  left: 0; right:0; top:0; bottom:0;
  background: rgba(34,39,47,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(.55,0,.1,1);
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  padding: 38px 26px 26px 26px;
  border-radius: 18px;
  width: 96vw;
  max-width: 440px;
  box-shadow: 0 8px 38px rgba(190,156,83,0.16);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalfadein 0.33s cubic-bezier(.55,0,.1,1);
}
@keyframes modalfadein {
  0% { opacity: 0; transform: scale(.89); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-content h2 {
  color: var(--lux-gold);
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 7px;
}
.cookie-category label {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.04em;
  color: var(--primary);
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #dedede;
  border-radius: 20px;
  position: relative;
  outline: none;
  transition: background 0.22s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--lux-gold);
}
.cookie-toggle::before {
  content: '';
  display: block;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.07);
  transition: left 0.22s;
}
.cookie-toggle:checked::before {
  left: 18px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--lux-gold);
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #23272f;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal-actions .cookie-btn {
  min-width: 90px;
  font-size: 0.96em;
  padding: 8px 16px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav, .footer-nav {
    gap: 14px;
  }
}
@media (max-width: 850px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.45rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.6rem;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 1.25rem;
    margin-bottom: 11px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .container {
    padding: 0 6.5vw;
  }
  main, .section {
    padding-top: 15px;
    padding-bottom: 12px;
  }
  .section {
    margin-bottom: 34px;
    padding: 30px 8px;
    border-radius: 13px;
  }
  .feature-grid, .feature-list {
    gap: 18px;
  }
  .feature-grid li, .feature-list li {
    padding: 15px 11px 15px 15px;
    border-radius: 11px;
  }
  .footer-nav {
    gap: 18px;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .feature-grid, .feature-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 13px 10px;
    border-radius: 11px;
  }
  .event-table th, .event-table td {
    padding: 8px 3.5vw;
    font-size: 0.98rem;
  }
}
@media (max-width: 480px) {
  main {
    padding-top: 9vw;
    padding-bottom: 14vw;
  }
  .container {
    padding: 0 2vw;
  }
}
/* FLEXBOX ENFORCEMENT FOR MANDATORY CLASS PATTERNS */
.section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.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: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- MICRO-INTERACTIONS / TRANSITIONS --- */
a, .cta-button, .card, .feature-grid li, .feature-list li, .cookie-btn, .main-nav a, .mobile-nav a, .cookie-toggle, .testimonial-card {
  transition: 
    box-shadow 0.19s cubic-bezier(.56,.16,.32,1) 0s,
    color 0.18s cubic-bezier(.55,0,.1,1),
    background 0.18s cubic-bezier(.55,0,.1,1),
    border-color .15s cubic-bezier(.55,0,.1,1),
    transform .18s cubic-bezier(.55,0,.12,1);
}

/* --- CUSTOM SCROLLBAR FOR LUXURY LOOK --- */
body::-webkit-scrollbar {
  width: 13px;
  background: #efe9dd;
}
body::-webkit-scrollbar-thumb {
  background: var(--lux-gold);
  border-radius: 8px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #e4d8bd;
}

/* --- MISC / HELPER CLASSES --- */
.text-center { text-align:center; }
.d-flex { display:flex; }
.align-center { align-items:center; }
.justify-between { justify-content:space-between; }
.flex-wrap { flex-wrap:wrap; }
.gap-20 { gap: 20px; }

/* --- LUXURY-INSPIRED ACCENTS --- */
hr {
  height: 2px;
  border: none;
  background: var(--lux-gold-light);
  margin: 30px 0;
}

/* --- FOCUS OUTLINES FOR ACCESSIBILITY --- */
a:focus, .cta-button:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-modal .close-modal:focus {
  outline: 2px solid var(--lux-gold);
  outline-offset: 1px;
}

/* Hide visually for accessibility */
.sr-only {
  border: 0 !important;
  clip: rect(1px,1px,1px,1px) !important;
  height: 1px !important; width: 1px !important;
  margin: -1px !important; overflow: hidden !important; padding: 0 !important;
  position: absolute !important; white-space: nowrap !important;
}