/* CSS RESET & BASE TYPOGRAPHY
---------------------------------------- */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background-color: #fff;
  color: #212121;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
a {
  color: #3C2E13;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #000;
  text-decoration: none;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 6px;
}

/* BRAND FONTS
---------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Times New Roman', Times, serif;
  color: #181818;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 1.7rem;
  line-height: 1.22;
  margin-bottom: 15px;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, ul, ol, .text-section {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232323;
}
strong, b {
  font-weight: 700;
  color: #181818;
}

/* LAYOUT CONTAINERS
---------------------------------------- */
.container {
  width: 100%;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 15px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 18px 0 rgba(25,25,25,0.07);
  padding: 28px 22px 26px 22px;
  min-width: 250px;
  transition: box-shadow 0.32s cubic-bezier(0.4,0,0.2,1);
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 22px 0 rgba(20,20,20,0.18);
}
.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;
  background: #F5F5F5;
  border: 1px solid #DDD;
  border-radius: 11px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 7px 18px -5px rgba(120,120,120,0.04);
  min-width: 220px;
}
.testimonial-card p {
  font-style: italic;
  color: #232323;
  margin-bottom: 0;
  flex: 1;
}
.testimonial-card span {
  color: #3C2E13;
  font-size: 0.95em;
  font-family: 'Playfair Display', serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.services-list > div {
  background: #fff;
  border-radius: 10px;
  padding: 22px 18px 19px 18px;
  box-shadow: 0 3px 15px 0 rgba(18,18,18,0.06);
  flex: 1 1 235px;
  min-width: 230px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #E3E3E3;
  transition: box-shadow 0.26s, transform 0.18s;
}
.services-list > div:hover, .services-list > div:focus-within {
  box-shadow: 0 10px 26px 0 rgba(52, 44, 24, 0.12);
  transform: translateY(-2px) scale(1.015);
}

/* TABLES (for konzerte.html Preisübersicht) */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 22px;
  margin-top: 9px;
}
th, td {
  border: 1px solid #E0E0E0;
  padding: 10px 18px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #F5F5F5;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #232323;
}
tr:nth-child(even) td {
  background: #FAFAFA;
}

/* HERO AREA */
.hero {
  background: linear-gradient(90deg, #fff 70%, #F5F3EF 100%);
  border-bottom: 2px solid #E7E3DC;
  margin-bottom: 60px;
  padding: 40px 0 24px 0;
}
.hero h1 {
  font-size: 2.5rem;
  color: #111;
  font-family: 'Playfair Display', serif;
  text-shadow: 0px 2px 24px #eae7e2;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-top: 14px;
}


/* MAIN NAVIGATION (HEADER) */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #EBE3D5;
  box-shadow: 0 3px 14px 0 rgba(20,20,20,0.05);
  padding: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 60px;
}
.main-nav {
  display: flex;
  gap: 22px;
}
.main-nav a {
  font-family: 'Playfair Display', serif;
  color: #181818;
  font-size: 1.09rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #3C2E13;
}
.main-nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #3C2E13;
  transition: width .2s;
  margin: 0 auto;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 80%;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #181818;
  color: #fff !important;
  font-family: 'Playfair Display', serif;
  font-size: 1.11rem;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 27px;
  border: none;
  box-shadow: 0 3px 12px 0 rgba(60,46,19,0.06);
  cursor: pointer;
  text-decoration: none;
  margin-left: 18px;
  margin-right: 2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.13s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #3C2E13;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px 0 rgba(60,46,19,0.18);
}

/* HAMBURGER MENU (MOBILE) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #3C2E13;
  margin-left: 6px;
  cursor: pointer;
  z-index: 1051;
  line-height: 1;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  color: #000;
  outline: 2px solid #A8905F;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.97);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.8, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding-top: 0;
  box-shadow: 0 0 50px 0 rgba(0,0,0,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #3C2E13;
  position: absolute;
  top: 25px;
  right: 24px;
  cursor: pointer;
  z-index: 1110;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #000;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 70px;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  color: #181818;
  font-size: 1.33rem;
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.16s;
  min-width: 220px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #3C2E13;
}

/* FOOTER
---------------------------------------- */
footer {
  width: 100%;
  background: #111111;
  color: #fff;
  font-size: 1rem;
  border-top: 2px solid #1A1611;
  margin-top: 48px;
  letter-spacing: 0.02em;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 30px 18px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-bottom: 2px;
}
.footer-links a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  font-size: 1.07rem;
  opacity: 0.92;
  transition: color 0.17s, opacity 0.18s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #E6D3B3;
  opacity: 1;
}
.legal-links {
  font-size: 0.98em;
  color: #ccc;
  margin-top: 2px;
  letter-spacing: 0.03em;
}

/* SPACING & CARD ALIGNMENTS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* COOKIES CONSENT BANNER & MODAL
---------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  background: #1B1B1B;
  color: #fff;
  padding: 22px 22px 18px 22px;
  box-shadow: 0 -3px 16px 0 rgba(0,0,0,0.13);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.35s, opacity 0.28s;
  opacity: 0.98;
}
.cookie-banner__text {
  max-width: 640px;
  text-align: center;
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F9F9F9;
  margin-bottom: 4px;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 24px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 28px;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, transform 0.14s;
  box-shadow: 0 2px 6px 0 rgba(50,42,28,0.09);
  outline: none;
}
.cookie-btn.accept {
  background: #3C2E13;
  color: #fff;
  border: 1px solid #8C7537;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #181818;
  color: #F5F5F5;
}
.cookie-btn.reject {
  background: #fff;
  color: #181818;
  border: 1px solid #E6D3B3;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ECECEC;
  color: #1B1B1B;
}
.cookie-btn.settings {
  background: #8C7537;
  color: #fff;
  border: 1px solid #3C2E13;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #A8905F;
  color: #232323;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,34,34,0.70);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s cubic-bezier(.56,.06,.54,.92);
}
.cookie-modal__content {
  background: #fff;
  color: #181818;
  border-radius: 16px;
  padding: 38px 32px 32px 32px;
  min-width: 340px;
  max-width: 94vw;
  box-shadow: 0 9px 32px 0 rgba(55,44,25,0.15);
  display: flex;
  flex-direction: column;
  gap: 29px;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
}
.cookie-modal__header {
  font-family: 'Playfair Display', serif;
  font-size: 1.43rem;
  font-weight: 700;
  color: #3C2E13;
}
.cookie-modal__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  top: 13px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.53rem;
  color: #A8905F;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal__close:hover {
  color: #3C2E13;
}
.cookie-modal label {
  cursor: pointer;
  padding-left: 4px;
}
.cookie-switch {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #E6D3B3;
  border-radius: 10px;
  position: relative;
  vertical-align: middle;
  margin-right: 8px;
  transition: background 0.18s;
  outline: none;
}
.cookie-switch:checked {
  background: #8C7537;
}
.cookie-switch::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: 1px;
  left: 1px;
  background: #fff;
  transition: left 0.2s;
  box-shadow: 0 1px 5px 0 rgba(44,44,44,0.11);
}
.cookie-switch:checked::before {
  left: 17px;
}
.cookie-modal__desc {
  font-size: 1rem;
  color: #555;
  font-size: 0.99rem;
  margin-bottom: 4px;
}
.cookie-category {
  font-weight: 600;
  color: #111;
  font-family: 'Playfair Display', serif;
  font-size: 1.07em;
}


/* RESPONSIVENESS (MOBILE-FIRST) --------------------------------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
  }
  header img {
    height: 49px;
  }
}
@media (max-width: 900px) {
  .services-list > div {
    flex: 1 1 100%;
    min-width: 220px;
  }
}
@media (max-width: 800px) {
  section, .section {
    padding: 34px 8px;
    margin-bottom: 42px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 5px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta-btn {
    margin-left: 10px;
    font-size: 1rem;
    padding: 11px 19px;
  }
  .hero {
    margin-bottom: 38px;
    padding: 32px 0 19px 0;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
  .content-wrapper {
    gap: 16px;
  }
  .text-section {
    gap: 8px;
  }
  .card-container {
    gap: 12px;
  }
  .services-list {
    gap: 15px;
  }
  .testimonial-card {
    gap: 11px;
    flex-direction: column;
    padding: 16px;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  .footer-links {
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 540px) {
  .content-grid, .card-container, .services-list {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .hero {
    padding: 22px 0 14px 0;
  }
  .hero h1 {
    font-size: 1.18rem;
  }
  h2 {
    font-size: 1.07rem;
  }
  .testimonial-card {
    padding: 13px 8px;
  }
  footer .container {
    flex-direction: column;
    padding: 17px 7px;
  }
}
@media (max-width: 430px) {
  .cookie-modal__content {
    min-width: unset;
    width: 98vw;
    padding: 16px 4vw;
  }
  .hero, section, .section {
    padding: 11px 2vw;
  }
}
@media (max-width: 370px) {
  .cta-btn {
    font-size: 0.97rem;
    padding: 9px 12px;
  }
}

/* VISUAL HIERARCHY & MICRO-INTERACTIONS --------------------------------------- */
.card, .services-list > div, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.16s;
}
.card:hover, .services-list > div:hover {
  box-shadow: 0 10px 26px 0 rgba(52,44,24,0.17);
}
.cta-btn:active {
  background: #555;
  box-shadow: 0 2px 8px 0 rgba(55,34,12,0.08);
}
.card:active, .services-list > div:active {
  transform: scale(0.99);
}
input, select, textarea {
  border-radius: 7px;
  border: 1px solid #DDD;
  font-size: 1rem;
  font-family: inherit;
  padding: 6px 11px;
  background: #fafafa;
  color: #232323;
  margin-bottom: 11px;
  transition: border-color 0.17s;
}
input:focus, select:focus, textarea:focus {
  border-color: #A8905F;
  outline: 2px solid #E6D3B3;
}

/* ICONS IN FEATURE LISTS */
ul li img {
  height: 22px;
  width: 22px;
  margin-right: 9px;
  display: inline-block;
  vertical-align: middle;
}

/* Miscellaneous & Print Optimization */
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  section, .container {
    padding: 0 !important; margin: 0 !important;
  }
}

/* Hide cookie banner/modal by default (must be controlled via JS) */
.cookie-banner[aria-hidden="true"] {
  display: none !important;
}
.cookie-modal[aria-hidden="true"] {
  display: none !important;
}


/***** STYLE SUMMARY *****
- Color palette: monochrome, dramatic contrast, metallic golds as accents
- Fonts: Playfair Display (display), Roboto (body)
- Spacing scale: major units (8/12/16/24/32/40/60)
- Sophisticated monotone with subtle baroque elegance
- ONLY flexbox, no grid/columns/absolute position cheats
- All interactive elements styled & animated
- Readability/contrast guaranteed
- Mobile menu and cookie banner styled & fully responsive
**************************/
