:root{
  --ink: #111111;
  --accent: #FF8550;
  --paper: #F8F4F1;
  --white: #FFFFFF;

  --line: rgba(17,17,17,.12);
  --muted: rgba(17,17,17,.70);

  --radius: 18px;
  --shadow: 0 12px 30px rgba(17,17,17,.10);

  --serif: "calluna", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Reset */
*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
}

img{ max-width:100%; display:block; border-radius: var(--radius); }
a{ color: inherit; text-decoration: none; }

.container{
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

/* ---------------- HEADER ---------------- */

.site-header{
  position: sticky;
  top: 0;
  background: rgba(248,244,241,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand{
  display:flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title{
  font-family: var(--serif);
  font-weight: 1000;
  font-size: 24px;
  line-height: 1.1;
}

.brand-subtitle{
  font-size: 15px;
  color: var(--muted);
}

.nav{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-link{
  font-size: 14px;
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
}

.nav-link:hover{
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255,255,255,.55);
}

.nav-link.is-active{
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255,255,255,.70);
}

.nav-link-cta{
  border-color: rgba(255,133,80,.35);
  background: rgba(255,133,80,.14);
}

.nav-link-cta:hover{
  background: rgba(255,133,80,.20);
}

.nav-toggle{
  display:none;
}

/* ---------------- MOBILE MENU BUTTON ---------------- */

.nav-toggle{
  display:none;
}

@media (max-width: 860px){

  .nav-toggle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.65);
    font-family: var(--sans);
    font-size:14px;
    font-weight:500;
    cursor:pointer;
  }

  .nav-toggle:hover{
    background:rgba(255,255,255,.9);
  }

  .burger{
    width:18px;
    height:2px;
    background:var(--ink);
    position:relative;
  }

  .burger::before,
  .burger::after{
    content:"";
    position:absolute;
    width:18px;
    height:2px;
    background:var(--ink);
    left:0;
  }

  .burger::before{ top:-6px; }
  .burger::after{ top:6px; }
}

/* ---------------- HERO ---------------- */

.hero{
  padding: 42px 0 18px;
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: center;
}

.kicker{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
  margin-top: 20px
}

h1{
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  margin: 0 0 12px;
}

.lead{
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 54ch;
}

.actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn{
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,133,80,.45);
  background: rgba(255,133,80,.16);
  font-weight: 600;
}

.btn:hover{
  background: rgba(255,133,80,.22);
}

.btn-ghost{
  border-color: var(--line);
  background: rgba(255,255,255,.70);
}

.btn-ghost:hover{
  background: rgba(255,255,255,.92);
}

/* ----------- NÄCHSTER TERMIN ----------- */

.note{
  border-left: none;
  padding: 12px 14px;
  background: rgba(255,255,255,.65);
  border-radius: 12px;
  width: 100%;
}

.note--row{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  margin-top: 22px
}

.note__label{
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;

  background: rgba(255,133,80,.12);
  border: none;                 /* <- WICHTIG: kein doppelter Rand */
  padding: 6px 10px;
  border-radius: 999px;         /* <- wieder pill, aber ohne Rand */
  white-space: nowrap;
}

.note{ padding-left: 16px; }

.note__text{
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

/* ---------------- SECTIONS ---------------- */

.section{
  padding: 40px 0 60px;
}

.card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  border-radius: var(--radius);
  padding: 24px;              /* etwas mehr Innenabstand */
  box-shadow: var(--shadow);
  margin-bottom: 22px;        /* ← DAS ist der wichtige Teil */
}

.section-head h2{
  font-family: var(--serif);
  margin: 0 0 6px;
  font-size: 26px;
}

.section-head p{
  margin: 0 0 16px;
  color: var(--muted);
}

/* ---------------- TABLES ---------------- */

.table-card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  border-radius: var(--radius);
  overflow:hidden;
}

.events-table{
  width:100%;
  border-collapse: collapse;
  font-size:14px;
}

.events-table th{
  text-align:left;
  padding:12px;
  background: rgba(248,244,241,.9);
  border-bottom:1px solid var(--line);
}

.events-table td{
  padding:12px;
  border-bottom:1px solid var(--line);
  color:var(--muted);
}

.events-table tr:hover td{
  background: rgba(255,255,255,.85);
  color: var(--ink);
}

.events-table tr.is-past td{
  color: rgba(17,17,17,.45);
}

/* ---------------- FOOTER ---------------- */

/* ---------------- FOOTER ---------------- */

.site-footer{
  margin-top: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.4);
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-title{
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-muted{
  font-size: 14px;
  color: var(--muted);
}

.footer-links{
  display: flex;
  flex-direction: column;
  gap: 10px;   /* ← macht sofort Ordnung */
}

.footer-links a{
  text-decoration: none;
  font-size: 14px;
  color: var(--ink);
  opacity: .7;
  transition: opacity .2s ease;
}

.footer-links a:hover{
  opacity: 1;
}


/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 860px){
  .hero-inner{ grid-template-columns:1fr; }
  .nav{ display:none; }
  .nav.is-open{ display:flex; }
  .nav-toggle{ display:inline-flex; }
}

@media (max-width: 520px){
  .note--row{
    flex-direction: column;
    align-items:flex-start;
  }
}

.playlist{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.track{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:14px;
  border-radius:14px;
  background: rgba(255,255,255,.6);
  border:1px solid var(--line);
}

.track span{
  font-family: var(--serif);
  font-size:18px;
}

/* --- PRO Sounds Player --- */

.playlist-pro{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.track-item{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.track-btn{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  text-align: left;
}

.track-title{
  font-family: var(--serif);
  font-size: 18px;
}

.track-meta{
  font-size: 12px;
  color: var(--muted);
}

.track-item:hover{
  background: rgba(255,255,255,.85);
}

.track-item.is-active{
  border-color: rgba(255,133,80,.35);
  background: rgba(255,133,80,.10);
}

.playerbar{
  position: sticky;
  bottom: 0;
  z-index: 20;
  border-top: 1px solid var(--line);
  background: rgba(248,244,241,.92);
  backdrop-filter: blur(10px);
}

.playerbar-inner{
  display: grid;
  grid-template-columns: 1.1fr .7fr 1.4fr .6fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
}

.player-now{
  min-width: 0;
}

.now-label{
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.now-title{
  font-family: var(--serif);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-controls{
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.pbtn{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 700;
}

.pbtn:hover{
  background: rgba(255,255,255,.92);
}

.pbtn-main{
  border-color: rgba(255,133,80,.35);
  background: rgba(255,133,80,.14);
}

.pbtn-main:hover{
  background: rgba(255,133,80,.20);
}

.player-progress{
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.time{
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.range{
  width: 100%;
  accent-color: var(--accent);
}

.player-volume{
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.vol-label{
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 860px){
  .playerbar-inner{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .player-controls{
    justify-content: flex-start;
  }
  .player-volume{
    justify-content: flex-start;
  }
}

/* ---------------- NEXT EVENTS (Cards) ---------------- */

.event-cards{
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.event-card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.event-type{
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
}

.event-location{
  color: var(--muted);
  font-size: 14px;
}

.event-datetime{
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.event-date{
  font-weight: 700;
  background: rgba(255,133,80,.12);
  padding: 5px 10px;
  border-radius: 999px;
}

.event-time{
  color: var(--muted);
  font-weight: 600;
}

.badge{
  margin-left: auto;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 999px;
}

/* falls du "muted" irgendwo brauchst */
.muted{ color: var(--muted); }

/* ---------------- VIDEOS ---------------- */

.video-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 860px){
  .video-grid{ grid-template-columns: 1fr; }
}

.video-card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-title{
  font-family: var(--serif);
  font-size: 18px;
  margin: 0;
  padding: 14px 14px 10px;
}

.video-embed{
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: rgba(248,244,241,.9);
}

.video-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-linkcard{
  padding: 0 14px 16px;
}

.video-muted{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

/* --- Besetzung Bild groß --- */

.besetzung-hero{
  margin: 0 0 32px;
}

.besetzung-hero img{
  width: 100%;
  border-radius: 3; /* kein kleines Karten-Gefühl */
}

.besetzung-hero .caption{
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

/* Instagram Embed – im Look deiner Cards, sauber zentriert & responsiv */
.insta-embed.card {
  padding: 18px;
}

.insta-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* Instagram setzt viele Inline-Styles -> wir überschreiben sauber */
.insta-wrapper .instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 auto !important;
}

