/* -------------------------------------------
  FROSTIGE BÜHNENKUNST – Monochrome Sophisticated
  CSS STYLE FOR ALL PAGES (Flexbox-Only, Responsive)
---------------------------------------------*/

/* RESET & BASELINE --------------------------*/
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;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #FAFAFA;
}
body {
  background: #FFFFFF;
  color: #181818;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #133974;
  text-decoration: none;
}
ul, ol {
  padding-left: 24px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.015em;
}
h1 { font-size: 2.7rem; line-height: 1.1; margin-bottom: 18px; }
h2 { font-size: 2rem; line-height: 1.20; margin-bottom: 14px; }
h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1.125rem; }
p { margin-bottom: 12px; }
strong { font-weight: 700; }

/* TYPOGRAPHY SCALE (Mobile-First) -------------*/
@media (min-width: 600px) {
  h1 { font-size: 3.3rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.5rem; }
}
@media (min-width: 992px) {
  h1 { font-size: 3.9rem; }
  h2 { font-size: 2.7rem; }
  h3 { font-size: 1.7rem; }
}

/* BRAND COLORS -------------------------------*/
:root {
  --color-primary: #133974;      /* deep blue */
  --color-secondary: #E0C68B;   /* gold sand */
  --color-accent: #FFFFFF;      /* white */
  --gray-100: #F6F6F6;
  --gray-200: #EFEFEF;
  --gray-300: #E1E1E1;
  --gray-500: #B2B6BD;
  --gray-700: #3E4145;
  --black: #181818;
  --shadow: 0px 4px 24px 0px rgba(32,32,32, 0.07);
  --border-radius: 14px;
  --transition: 0.15s cubic-bezier(.8,.18,.44,1);
}

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

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

@media (min-width: 768px) {
  .section {
    padding: 60px 0;
    margin-bottom: 90px;
  }
}

/* HEADER + LOGO NAV --------------------------*/
header {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 800;
  box-shadow: 0 4px 24px rgba(24,24,24, 0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 20px 18px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
}
header nav a:hover, header nav a:focus {
  background: var(--gray-200);
  color: var(--color-primary);
}
header img {
  height: 42px;
  width: auto;
  display: inline-block;
}
header .cta.primary {
  margin-left: 20px;
  font-size: 1rem;
  display: inline-flex;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2.1rem;
  padding: 7px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.11s;
  display: flex;
  align-items: center;
  margin-left: 12px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--gray-100);
}
@media (max-width: 980px) {
  header nav,
  header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu-toggle { display: none; }
}

/* MOBILE MENU (Hamburger Navigation) -----------*/
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 24, 24, 0.92);
  z-index: 2000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 0;
  transition: transform 0.33s cubic-bezier(.6,.07,.42,.98), opacity 0.2s;
  transform: translateX(100vw);
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--gray-300);
  font-size: 2.5rem;
  padding: 22px 28px 9px 0;
  margin-right: 10px;
  margin-top:10px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 3;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 0 38px 34px 32px;
}
.mobile-nav a {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 0 7px 0;
  border-radius: 6px;
  outline: 0;
  width: 100%;
  display: block;
  background: none;
  transition: color .11s, background .11s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--color-secondary);
  background: #23272F;
}
@media (min-width: 981px){.mobile-menu{display:none!important;}}

/* FLEX LAYOUTS (MANDATORY SPACING) -------------*/
.card-container, .feature-grid, .card-grid, .testimonial-slider, .testimonial-grid, .content-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card,
.feature-grid > div,
.card-grid > div {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 24px 23px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  flex: 1 1 240px;
  transition: box-shadow .14s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 6px 36px 0 rgba(24,24,24, 0.10),0 2px 8px 0 rgba(224, 198, 139, 0.13);
}
.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;
    gap: 20px;
    align-items: stretch;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  background: #FAFAFA;
  box-shadow: 0 3px 16px rgba(0,0,0,0.035);
  border-radius: 11px;
  min-width: 260px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  border: 1px solid var(--gray-200);
  transition: box-shadow .14s, border .13s;
  color: #111;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.09rem;
  font-style: italic;
  margin-bottom: 6px;
  line-height: 1.53;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: var(--gray-700);
}
.testimonial-slider, .testimonial-grid {
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.text-section {
  margin-bottom: 18px;
}
/* GENERAL SPACING FOR SECTION TO SECTION GAP */
section + section { margin-top: 34px; }
@media (min-width: 992px){
  section + section { margin-top: 55px; }
}

/* BUTTONS: cta.primary / cta.secondary ------*/
.cta, .cta.primary, .cta.secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  border-radius: 100px;
  padding: 12px 32px 12px 32px;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 18px;
  margin-bottom: 12px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(24,24,24,0.08);
  transition: background .15s, color .14s, box-shadow .17s;
  display: inline-block;
  background: var(--black);
  color: var(--color-accent);
}
.cta.primary {
  background: var(--color-primary);
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #0b2240;
  color: var(--color-secondary);
  box-shadow: 0 5px 18px rgba(24,24,24,0.14);
}
.cta.secondary {
  background: #fff;
  border: 1px solid var(--black);
  color: var(--black);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--gray-200);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* TABLES (Tickets/Preislisten) --------------*/
table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 3px 26px rgba(24,24,24,.06);
  font-size: 1.03rem;
}
thead {
  background: var(--gray-100);
}
th, td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--black);
  background: var(--gray-100);
}
tbody tr:last-child td {
  border-bottom: none;
}

/* ICONS IN CARDS/FEATURES --------------------*/
.feature-grid img, .card img {
  height: 44px;
  width: auto;
  margin-bottom: 10px;
  filter: grayscale(100%) brightness(68%) contrast(120%);
}

/* LISTS IN CONTENT----------------------------*/
ol, ul {
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1.04rem;
}
ul li strong, ol li strong {
  color: var(--color-primary);
}

/* FOOTER ------------------------------------*/
footer {
  background: #181818;
  color: #fff;
  padding: 40px 0 12px 0;
  border-top: 1px solid var(--gray-200);
}
footer .container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer img {
  height: 36px;
  margin-bottom: 13px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
footer nav a {
  color: #F3F3F3;
  text-decoration: none;
  font-size: 0.97rem;
  transition: color .13s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
}
footer p {
  font-size: 0.96rem;
  margin-top: 0px;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* COOKIE CONSENT BANNER ----------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2900;
  background: #181818;
  color: #fff;
  padding: 19px 12px 19px 12px;
  border-top: 1.5px solid var(--gray-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -3px 16px rgba(24,24,24,0.09);
  animation: cookieSlideIn 0.66s cubic-bezier(.53,.1,.39,1.4);
  font-family: 'Source Sans Pro', Arial, sans-serif;
  gap: 19px;
}
@keyframes cookieSlideIn {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  font-size: 1.02rem;
  text-align: center;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.44;
}

.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-btn.accept, .cookie-btn.reject, .cookie-btn.settings {
  border: none;
  border-radius: 100px;
  padding: 9px 26px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin: 0 0 3px 0;
  transition: background .15s, color .13s;
}
.cookie-btn.accept {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cookie-btn.reject {
  background: #fff;
  color: #181818;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--gray-200);
  color: var(--color-primary);
}
.cookie-btn.settings {
  background: none;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-secondary);
  color: #181818;
}
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 17px 8px 19px 8px;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}

/* COOKIE CONSENT MODAL ----------------------*/
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(18, 21, 22, 0.84);
  z-index: 2950;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.35s cubic-bezier(.44,1.53,.21,.97);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #181818;
  border-radius: 15px;
  padding: 32px 22px 28px 28px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 6px 36px 0 rgba(24,24,24, 0.17),0 2px 8px 0 rgba(224, 198, 139, 0.12);
  animation: popInModal .34s cubic-bezier(.53,.08,.38,1.23);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@keyframes popInModal {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 12px;
  font-size: 1.19rem;
  color: var(--color-primary);
}
.cookie-modal .cookie-pref-category {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.cookie-modal .cookie-pref-category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  appearance: none;
  width: 39px; height: 22px;
  background: var(--gray-300);
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .11s;
}
.cookie-toggle:checked {
  background: var(--color-primary);
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 2.5px; top: 2.5px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: left .12s;
}
.cookie-toggle:checked::after {
  left: 19px;
}
.cookie-modal .cookie-pref-desc {
  font-size: 0.96rem;
  color: #555;
  flex: 3 1 0;
}
.cookie-modal .cookie-pref-toggle {
  flex: 0 0 auto;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn { margin: 0; }

@media (max-width: 440px) {
  .cookie-modal {
    min-width: 0;
    padding: 19px 7px 13px 12px;
  }
}

/* ACCESSIBILITY & FOCUS STYLES ----------------*/
a, button, .cookie-btn, .cookie-toggle {
  outline: none;
}
a:focus, button:focus, .cta:focus {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

/* COMMON FORM & INTERACTIVES ------------------*/
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  border-radius: 6px;
  transition: border .12s, box-shadow .12s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 1px 8px rgba(19,57,116, 0.06);
}

/* RESPONSIVE & BREAKPOINTS --------------------*/
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .feature-grid, .card-container, .content-grid, .testimonial-slider, .testimonial-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card,
  .feature-grid > div, .testimonial-card, .card-grid > div {
    min-width: unset;
    width: 100%;
    padding: 20px 13px 18px 13px;
  }
  header .container {
    padding: 12px 10px;
    gap: 10px;
  }
}

/* MICRO-INTERACTIONS and HOVER EFFECTS --------*/
.feature-grid > div, .card, .testimonial-card {
  cursor: pointer;
  transition: box-shadow .18s, border-color .12s;
}
.feature-grid > div:hover, .card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 6px 32px 0 rgba(19,57,116, 0.10),0 3px 8px 0 rgba(224, 198, 139, 0.10);
}

/* Custom SLIDER for testimonials if needed -----*/
/* Fallback: simple flex scroll */
.testimonial-slider {
  overflow-x: auto;
  padding-bottom: 8px;
}

/* FAQ -----------------------------------------*/
ul li strong, ol li strong {
  display: inline-block;
  margin-right: 2px;
}

/* SCROLLBAR (Subtle for monochrome sophistication) */
::-webkit-scrollbar { width: 8px; background: #E1E1E1; }
::-webkit-scrollbar-thumb { background: #bfc3c7; border-radius: 7px; }

/* MISC ----------------------------------------*/
hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 35px 0 30px 0;
}

/* Hide skip-links visually but keep them accessible */
.skip-link { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: static; left: auto; width: auto; height: auto; background: var(--color-primary); color: #fff; z-index: 9999; }

/* ------------------- END ---------------------*/
