/* ----- 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, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #23213B;
  color: #F5F3F0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}
img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B4975A;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover, a:focus {
  color: #F5F3F0;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
button, input, select, textarea {
  font-family: inherit;
  outline: none;
}
strong {
  font-weight: bold !important;
  color: #B4975A;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
  color: #F5F3F0;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
}
p, address {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: #F5F3F0;
}
address {
  font-style: normal;
  line-height: 1.7;
  color: #F5F3F0;
}

/* ----- LUXURY PREMIUM THEME COLORS ----- */
:root {
  --color-primary: #23213B;
  --color-secondary: #B4975A;
  --color-accent: #F5F3F0;
  --color-body: #F5F3F0;
  --color-heading: #F5F3F0;
  --color-footer-bg: #181828;
  --color-card-bg: #282642;
  --color-btn-text: #23213B;
  --color-dark: #191827;
}

/* ----- CONTAINER & LAYOUT ----- */
.container {
  max-width: 1120px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* Feature grid, cards, content flex spacing */
.feature-grid, .service-list ul, .testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(36,32,60,0.13), 0 1.5px 8px 0 rgba(50,32,64,0.07);
  padding: 28px 24px;
  border: 1px solid rgba(180,151,90,0.09);
  transition: transform 0.28s, box-shadow 0.28s;
}
.card:hover {
  box-shadow: 0 8px 48px 0 rgba(36,32,60,0.18);
  transform: translateY(-2px) scale(1.02);
  border-color: #B4975A11;
}
.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;
}

/* ----- HEADER & MAIN NAVIGATION ----- */
header {
  background: var(--color-dark);
  padding: 0 0 0 0;
  border-bottom: 1.5px solid #2c2b45;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 72px;
}
header a img {
  height: 42px;
  max-width: 128px;
  margin: 10px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #F5F3F0;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.28s, color 0.28s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #23213B;
  color: #B4975A;
}
.cta.primary {
  background: linear-gradient(90deg, #B4975A 0%, #F5F3F0 100%);
  color: #23213B;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 26px;
  padding: 10px 36px;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(180,151,90,0.10);
  transition: box-shadow 0.24s, color 0.18s, background 0.3s;
  outline: none;
  letter-spacing: 0.2px;
}
.cta.primary:hover, .cta.primary:focus {
  background: #B4975A;
  color: #23213B;
  box-shadow: 0 6px 32px 0 rgba(180,151,90,.16);
}

/* ----- MOBILE NAVIGATION ----- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #B4975A;
  font-size: 2rem;
  margin-left: auto;
  cursor: pointer;
  z-index: 150;
  position: relative;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 85vw;
  max-width: 375px;
  height: 100vh;
  background: #23213B;
  z-index: 200;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  transition: transform 320ms cubic-bezier(.45,.05,.55,.95);
  box-shadow: 8px 0 40px 0 rgba(32,19,54,.12);
  padding: 26px 22px 10px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 1.8rem;
  color: #B4975A;
  background: none;
  border: none;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.21s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F5F3F0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav a {
  color: #F5F3F0;
  font-size: 1.15rem;
  padding: 12px 0;
  font-family: 'Playfair Display', serif;
  border-bottom: 1px solid #39375A;
  transition: color 0.22s, background 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B4975A;
  background: #1b1a2f;
  border-radius: 4px;
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* DIM BACKGROUND for MOBILE MENU when open */
body.mobile-menu-open::before {
  content: '';
  display: block;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(35, 33, 59, 0.62);
  z-index: 120;
  pointer-events: all;
  transition: opacity 0.29s;
}
@media (min-width: 1024px) {
  body.mobile-menu-open::before { display: none; }
}


/* ----- HERO & FEATURES ----- */
.hero-subheadline {
  font-size: 1.35rem;
  font-family: 'Playfair Display', serif;
  color: #B4975A;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  font-weight: 400;
}
.feature-grid > div {
  flex: 1 1 230px;
  min-width: 210px;
  background: var(--color-card-bg);
  border-radius: 16px;
  border: 1px solid rgba(180,151,90,0.09);
  box-shadow: 0 2px 10px 0 rgba(36,32,60,0.08);
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.26s, transform 0.22s;
}
.feature-grid > div img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 30px 0 rgba(180,151,90,.15);
  border-color: #B4975A22;
  transform: translateY(-2px) scale(1.035);
}

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

/* ----- TESTIMONIALS ----- */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F5F3F0;
  color: #23213B;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(180,151,90,.10);
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 280px;
  margin-bottom: 20px;
}
.testimonial-card span {
  color: #B4975A;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.testimonial-card p{
  color: #000;
}
.testimonial-author {
  font-size: 1.07rem;
  color: #23213B;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
}

/* ----- DATES & PRICES ----- */
.dates-prices ul {
  margin-bottom: 14px;
}
.dates-prices li {
  margin-bottom: 6px;
}


/* ----- BUTTONS & INTERACTIVES ----- */
button, .cta {
  transition: background 0.22s, color 0.22s, box-shadow 0.20s, border-color 0.20s;
  cursor: pointer;
}

.cta.primary {
  background: linear-gradient(90deg, #B4975A 0%, #F5F3F0 100%);
  color: #23213B;
}
.cta.primary:active {
  background: #B4975A;
  color: #23213B;
}


/* Service List (for Vorstellungen, Workshops) */
.service-list ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 18px;
  margin-bottom: 24px;
}
.service-list li {
  background: rgba(34,33,59,0.43);
  border-left: 3px solid #B4975A;
  padding: 9px 14px;
  border-radius: 7px;
  color: #F5F3F0;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0;
}

/* ----- TEXT SECTIONS ----- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.08rem;
  color: #F5F3F0;
}
.text-section h2, .text-section h3 {
  color: #B4975A;
  margin-bottom: 8px;
}
blockquote {
  color: #23213B;
  background: #F5F3F0;
  border-left: 3px solid #B4975A;
  border-radius: 7px;
  padding: 10px 18px 10px 18px;
  font-family: 'Playfair Display', serif;
  font-size: 1.04rem;
  margin-bottom: 16px;
  margin-top: 5px;
}
blockquote span {
  display: block;
  color: #7e7147;
  margin-top: 10px;
  font-size: 0.99em;
}

/* ----- FOOTER AREA ----- */
footer {
  background: var(--color-footer-bg);
  padding: 0;
  color: #F5F3F0;
  border-top: 1.5px solid #2c2b45;
}
footer .container {
  padding-top: 38px;
  padding-bottom: 38px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.footer-nav, .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
}
.footer-nav a, .footer-menu a {
  color: #B4975A;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  border-bottom: 1px dotted #B4975A;
  padding-bottom: 1.5px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-nav a:hover, .footer-menu a:hover {
  color: #F5F3F0;
  border-color: #F5F3F0;
}
.brand-tagline {
  font-family: 'Playfair Display', serif;
  color: #B4975A;
  font-size: 1.13rem;
  margin-bottom: 5px;
  font-weight: 600;
}
footer address {
  color: #dad6c7;
  font-style: normal;
  font-size: 0.97rem;
  margin-bottom: 0;
}

/* ----- RESPONSIVE BREAKPOINTS ----- */
@media (max-width: 900px) {
  .container { padding-left: 12px; padding-right: 12px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .feature-grid > div { min-width: 160px; padding: 20px 12px; }
}
@media (max-width: 768px) {
  .container { padding-left: 6px; padding-right: 6px; }
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.12rem; }
  .section { margin-bottom: 38px; padding: 24px 6px; }
  .content-wrapper { gap: 16px; }
  .feature-grid, .testimonials { gap: 14px; }
  .feature-grid > div { min-width: 98%; }
  .testimonial-card { min-width: 95%; max-width: 98%; }
  .footer-nav, .footer-menu { gap: 10px; font-size: 0.91rem; }
  footer .container { padding-top: 22px; padding-bottom: 22px; }
  .brand-tagline { font-size: 0.98rem; }
  .text-image-section { flex-direction: column; gap: 18px; }
}

/* EXPLICIT class-based responsive for .text-image-section */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column !important; }
}


/* ----- COOKIE BANNER ----- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #23213B;
  color: #F5F3F0;
  border-top: 2px solid #B4975A;
  box-shadow: 0 -4px 22px 0 rgba(35,33,59, 0.14);
  z-index: 500;
  width: 100vw;
  display: flex;
  justify-content: center;
  pointer-events: all;
}
.cookie-banner-inner {
  max-width: 540px;
  width: 100%;
  padding: 22px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.cookie-banner-text {
  font-size: 0.98rem;
  color: #F5F3F0;
  margin-bottom: 8px;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #B4975A;
  color: #23213B;
  border: none;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  padding: 8px 22px;
  font-weight: 600;
  margin-bottom: 0;
  transition: background 0.22s, color 0.22s, box-shadow 0.15s;
  box-shadow: 0 3px 9px 0 #B4975A22;
}
.cookie-btn.settings {
  background: transparent;
  color: #B4975A;
  border: 1px solid #B4975A;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F5F3F0;
  color: #23213B;
  box-shadow: 0 6px 18px 0 #B4975A27;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #B4975A;
  color: #23213B;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -70%) scale(0.96);
  background: #23213B;
  color: #F5F3F0;
  border-radius: 17px;
  box-shadow: 0 8px 50px 0 rgba(35,33,59,0.23);
  z-index: 600;
  min-width: 320px;
  max-width: 90vw;
  width: 370px;
  padding: 30px 30px 20px 30px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s, transform 0.34s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.01);
}
.cookie-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.29rem;
  margin-bottom: 15px;
  color: #B4975A;
}
.cookie-modal-close {
  position: absolute;
  top: 9px;
  right: 10px;
  font-size: 1.7rem;
  color: #B4975A;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.22s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F5F3F0;
}
.cookie-categories-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 18px;
  margin-top: 5px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.99rem;
}
.cookie-toggle {
  width: 30px;
  height: 17px;
  border-radius: 20px;
  background: #39375a;
  position: relative;
  flex: 0 0 30px;
  cursor: pointer;
  transition: background 0.2s;
  border: 1.5px solid #B4975A33;
}
.cookie-toggle[aria-checked="true"] {
  background: #B4975A;
}
.cookie-toggle-knob {
  position: absolute;
  left: 2px; top: 2px;
  width: 13px; height: 13px;
  background: #F5F3F0;
  border-radius: 50%;
  transition: left 0.22s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-knob {
  left: 15px;
}
.cookie-category.disabled {
  opacity: 0.64;
}
.cookie-category[aria-disabled="true"] .cookie-toggle {
  filter: grayscale(100%);
  pointer-events: none;
}
.cookie-description {
  color: #bdb29b; font-size: 0.97em; margin-left: 5px;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

/* ----- MICRO INTERACTIONS / TRANSITIONS ----- */
.card, .feature-grid > div, .testimonial-card, .cta, .footer-nav a, .footer-menu a, .mobile-nav a, .main-nav a, .cookie-btn, .cookie-modal, .cookie-toggle {
  transition: box-shadow 0.24s, border-color 0.24s, background 0.24s, color 0.24s, transform 0.22s;
}

/* ----- ADDITIONAL ACCESSIBILITY ----- */
:focus {
  outline: 2px solid #B4975A;
  outline-offset: 2px;
}

/* ----- Z-INDEX MANAGEMENT ----- */
header, .mobile-menu, .cookie-banner, .cookie-modal { z-index: 200+; }

/* ----- SPACING & LAYOUT OVERRIDES ----- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container, .feature-grid, .content-grid, .testimonials {
  gap: 24px;
}
.card { margin-bottom: 20px; }
.content-grid { gap: 20px; }
.text-image-section { gap: 30px; }
.testimonial-card { gap: 20px; padding: 20px; }
.feature-item { gap: 15px; }

/* Prevent overlap */
.card, .feature-grid > div, .testimonial-card, .service-list ul li, .footer-nav a, .footer-menu a { margin-bottom: 20px; }

@media (max-width: 768px) {
  .section { margin-bottom: 38px; padding: 24px 6px; }
  .card, .feature-grid > div, .testimonial-card, .service-list ul li { margin-bottom: 16px; }
}

/* Hide scroll when modal/menu open */
body.mobile-menu-open, body.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  h1 { font-size: 1.06rem; }
  .testimonial-card, .feature-grid > div { padding: 13px 5px; }
  .cookie-modal { min-width: 98vw; padding: 20px 8px; }
}

/* ----- END OF STYLE.CSS ----- */
