/* --- CSS RESET & NORMALIZATION --- */
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;
}
body {
  background: #FAFAFA;
  color: #212623;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* --- LUXURY PREMIUM COLORS & FONTS --- */
:root {
  --primary: #235128;
  --secondary: #B2D2A4;
  --background: #FAFAFA;
  --content-bg: #FFFFFF;
  --accent: #F5E9CD;
  --premium-gold: #B6954D;
  --text-dark: #212623;
  --text-body: #2B2B2B;
  --text-light: #FFFFFF;
  --muted: #787A65;
  --shadow-lg: 0 6px 32px 0 rgba(47, 60, 38, 0.10);
  --shadow-md: 0 2px 10px 0 rgba(47, 60, 38, 0.07);
  --shadow-hover: 0 2px 16px 0 rgba(47, 60, 38, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --transition: all 0.22s cubic-bezier(.4,0,.2,1);
  --ff-display: 'Merriweather', serif;
  --ff-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --header-height: 88px;
}

/* --- TYPOGRAPHY SCALE --- */
h1 {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--primary);
  margin-bottom: 20px;
}
h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.7px;
  color: var(--primary);
  margin-bottom: 18px;
}
h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--primary);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--primary);
}
.subheadline {
  font-size: 1.2rem;
  font-style: italic;
  font-family: var(--ff-body);
  color: var(--muted);
  margin-bottom: 24px;
}
p, li, dd {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 8px;
}
strong {
  color: var(--primary);
  font-weight: 600;
}

/* --- LAYOUT CONTAINERS & SPACING PATTERNS --- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--content-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* --- CARD CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--content-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.17s linear, transform 0.17s linear;
}
.card:hover, .service-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.02);
  z-index: 1;
}

/* --- FEATURE LAYOUTS --- */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.feature, .service-item {
  background: var(--background);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 28px 20px 22px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border-top: 4px solid var(--premium-gold);
}
.feature img,
.service-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0 1px 3px rgba(182,149,77,0.2));
}

.usp-list, .features ul, .about-short ul, .about-detailed ul, .membership-features ul, .activity-highlights ul {
  list-style: disc inside;
  margin-left: 1.8em;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--primary);
  font-family: var(--ff-body);
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.usp-list li,
.features ul li,
.membership-features ul li,
.activity-highlights ul li {
  margin-bottom: 10px;
}

/* --- FLEXBOX SPACING PATTERNS --- */
.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: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 20px;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-size: 1.1rem;
  position: relative;
  border-left: 4px solid var(--premium-gold);
}
.testimonial-card .author {
  font-size: 0.97rem;
  font-style: italic;
  color: var(--muted);
  font-family: var(--ff-body);
  margin-left: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- SECTION SPECIFIC STYLES --- */
.hero {
  background: linear-gradient(120deg, #FFFCEE 80%, var(--accent) 100%);
  padding: 60px 0 36px 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 8px 40px 0 rgba(182,149,77,0.08);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-block, .thank-you-section {
  background: var(--primary);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
}
.cta-block h2, .thank-you-section h1 {
  color: var(--accent);
}
.cta-block .cta-btn, .thank-you-section .cta-btn {
  background: var(--premium-gold);
  color: var(--primary);
}

.contact-details, .location-description {
  margin-bottom: 24px;
}

/* --- FAQ Section --- */
.faq dl {
  margin-top: 18px;
}
.faq dt {
  font-weight: 600;
  color: var(--primary);
  margin-top: 12px;
  margin-bottom: 3px;
  font-size: 1.08rem;
}
.faq dd {
  margin-left: 0.7em;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 10px;
}

/* --- PRICING NOTE --- */
.pricing-note {
  margin-top: 22px;
  display: block;
  color: var(--premium-gold);
  font-weight: 600;
  font-size: 1.12rem;
  font-family: var(--ff-display);
  text-shadow: 0 1px 2px #F5E9CD60;
}

/* --- BUTTONS & CTAS --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--premium-gold);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 12px 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px 0 rgba(182,149,77,0.12);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.cta-btn::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: border 0.14s linear;
  z-index: -1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--premium-gold);
  box-shadow: 0 4px 22px 0 rgba(182,149,77,0.18);
}
.cta-btn:hover::after, .cta-btn:focus::after {
  border-color: var(--premium-gold);
}
button, .button {
  cursor: pointer;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  background: var(--premium-gold);
  color: var(--primary);
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  box-shadow: 0 1px 6px 0 rgba(182,149,77,0.07);
  transition: var(--transition);
}
button:hover, .button:hover, button:focus, .button:focus {
  background: var(--primary);
  color: var(--premium-gold);
  outline: none;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(47, 60, 38, 0.04);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
  padding: 0 0;
}
.site-logo {
  display: flex;
  align-items: center;
  margin-left: 22px;
  padding: 14px 0;
}
.site-logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 40px;
}
.main-nav a {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
  font-size: 1.07rem;
  padding: 8px 0;
  position: relative;
  transition: color 0.16s;
}
.main-nav a::after {
  content: '';
  height: 2px;
  width: 0%;
  background: var(--premium-gold);
  display: block;
  transition: width 0.23s;
  border-radius: 2px;
  margin-top: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--premium-gold);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 90%;
}
header .cta-btn {
  margin-left: auto;
  margin-right: 20px;
  height: 48px;
  line-height: 22px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--primary);
  background: var(--accent);
  border-radius: var(--radius-md);
  border: none;
  margin-left: 14px;
  padding: 6px 16px;
  transition: background 0.15s;
  z-index: 320;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--premium-gold);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 32px 2px rgba(47, 60, 38, 0.10);
  z-index: 9999;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(.49,.16,.38,.94), opacity 0.35s linear;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--primary);
  background: var(--accent);
  align-self: flex-end;
  margin: 24px 24px 14px 0;
  border: none;
  border-radius: var(--radius-md);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--premium-gold);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 36px 0 32px;
}
.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--accent);
  transition: color 0.17s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--premium-gold);
  color: var(--primary);
  border-radius: var(--radius-sm);
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 40px 0 20px 0;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--accent);
  font-family: var(--ff-display);
  font-size: 1.01rem;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--premium-gold);
  text-decoration: underline;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  text-align: center;
}
.footer-info img {
  height: 32px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  width: 100%;
  background: var(--content-bg);
  box-shadow: 0 0 24px 4px rgba(47, 60, 38, 0.061);
  padding: 26px 20px 18px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  animation: cookie-banner-in 0.6s cubic-bezier(.22,.68,.27,1.32);
}
@keyframes cookie-banner-in {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 180px;
  color: var(--primary);
  font-size: 1.05rem;
  font-family: var(--ff-body);
  margin-bottom: 2px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cookie-banner__btn {
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--ff-display);
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner__btn.accept {
  background: var(--premium-gold);
  color: var(--primary);
}
.cookie-banner__btn.reject {
  background: #ede5d0;
  color: var(--muted);
}
.cookie-banner__btn.settings {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--premium-gold);
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: var(--primary);
  color: var(--premium-gold);
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40, 56, 32, 0.21);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadein-modal 0.25s cubic-bezier(.22,.68,.27,1.32);
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 320px;
  max-width: 420px;
  padding: 34px 28px 18px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-pop 0.24s cubic-bezier(.22,.68,.27,1.32);
}
@keyframes modal-pop {
  from { transform: translateY(32px) scale(0.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  color: var(--primary);
  background: var(--accent);
  border-radius: var(--radius-sm);
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: background 0.11s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover {
  background: var(--premium-gold);
  color: var(--primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--primary);
  width: 22px;
  height: 22px;
}
.cookie-category label {
  font-family: var(--ff-body);
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 600;
}
.cookie-category.essential label::after {
  content: '(immer aktiviert)';
  color: var(--muted);
  font-weight: 400;
  margin-left: 12px;
  font-size: 0.9rem;
}

/* --- ANIMATION UTILS --- */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.7s forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1150px) {
  .container {
    padding: 0 9px;
    max-width: 96vw;
  }
  .main-nav {
    gap: 20px;
    margin-left: 18px;
  }
  header .cta-btn {
    margin-right: 10px;
  }
}
@media (max-width: 950px) {
  .main-nav {
    gap: 13px;
    font-size: 0.95rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .cta-btn {
    display: none;
  }
}
@media (max-width: 850px) {
  .feature-grid,.service-list {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.3rem; }
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .section,
  .cta-block,
  .thank-you-section {
    padding: 25px 5px;
    margin-bottom: 38px;
    border-radius: var(--radius-md);
  }
  .about-short,
  .about-detailed,
  .privacy-policy,
  .terms-service,
  .cookie-policy {
    padding: 18px 0;
    border-radius: var(--radius-sm);
  }
  .content-wrapper { gap: 12px; }
  .card, .feature, .service-item { padding: 17px 10px 12px 10px; }
}
@media (max-width: 768px) {
  .text-image-section, .feature-grid, .service-list, .content-grid, .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .testimonial-card {
    font-size: 1rem;
    gap: 10px;
    padding: 12px;
  }
  .about-short ul, .about-detailed ul {
    margin-left: 1em;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    text-align: left;
    padding: 22px 10px 12px 10px;
    font-size: 0.96rem;
  }
  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}
@media (max-width: 490px) {
  .footer-nav {
    gap: 14px;
    font-size: 0.91rem;
    flex-direction: column;
    align-items: center;
  }
  h1 { font-size: 1.17rem; }
  h2 { font-size: 1rem; }
  .hero {
    padding: 33px 0 16px 0;
  }
  .site-logo img { height: 34px; }
}

/* --- UTILS & MICRO-INTERACTIONS --- */
::-webkit-scrollbar { width: 8px; background: var(--accent); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 6px; }
::-webkit-input-placeholder {color: var(--muted);opacity:1;}
::-moz-placeholder {color: var(--muted);opacity:1;}
:-ms-input-placeholder {color: var(--muted);opacity:1;}
::placeholder {color: var(--muted);opacity:1;}

/* --- ACCESSIBILITY HIGHLIGHTS --- */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--premium-gold);
  outline-offset: 2px;
  box-shadow: 0 1px 7px 0 rgba(182,149,77,0.14);
}

/* --- UNIQUE PAGE ELEMENTS OVERRIDES (for Above HTML) --- */
.event-list ul.events {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.event-list ul.events li {
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 10px;
  box-shadow: var(--shadow-md);
}

.location-description h2 {
  margin-top: 0;
  color: var(--primary);
}

/* --- FONTS (web-safe) --- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@400;600;700&display=swap');

/* END OF LUXURY PREMIUM FLEXBOX CSS FOR GRÜNHERZ GEMEINSCHAFT */
