:root{
  /* Farben aus Canva */
  --bg: #fff6ed;
  --ink: #1a1a1a;
  --muted: rgba(26,26,26,0.72);
  --border: rgba(26,26,26,0.14);

  --red: #9f1b1f;
  --teal: #01738e;

  --card: rgba(255,255,255,0.72);
  --shadow: 0 12px 28px rgba(0,0,0,0.10);

  /* goldene Notenlinien-Farbe (Flyer) */
  --gold: #cb9221;
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }

body{
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
}

/* Layout */
.container{
  width: min(980px, 92vw);
  margin: 0 auto;
}

.main{
  padding: 10px 0 54px;
}

/* HEADER: Papier + Notenlinien (dezent) */
.header{
  padding: 18px 0 14px;

  background-color: var(--bg);
  background-image: url("/notenlinien.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  opacity: 1;
  position: relative;

  border-bottom: 1px solid rgba(26,26,26,0.12);
}

/* Papier-Schleier über den Linien => macht sie dezent, ohne Farbverfälschung */
.header::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,246,237,0.8); /* <-- 0.92 = stärker gedämpft */
  pointer-events:none;
}
.header > .container{
  position: relative;
  z-index: 1;
}

/* Brand / Logo */
.brand{
  text-align: center;
}

.logo-full{
  width: min(400px, 50vw);
  height: auto;
  display: block;
  margin: 0 auto 6px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.12));
}

/* Tickets-Header: Orchestername */
.brand-title{
  margin: 0;
  text-align: center;

  font-family: "Cinzel", ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.04em;

  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

/* Tickets-Header: Untertitel */
.brand-subtitle{
  margin: 4px 0 0;
  text-align: center;

  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1rem;
  color: var(--muted);
}


/* Navigation */
.nav{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav a{
  color: var(--ink);
  text-decoration: none;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(6px);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.nav a:hover{
  background: rgba(255,255,255,0.80);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* HERO */
.hero{
  margin-top: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.80), rgba(255,255,255,0.62));
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 20px 18px;
  overflow: hidden;
}

.hero .kicker{
  margin: 0;
  text-align: center;
  font-family: "Cinzel", ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing: 0.06em;
}

.hero .headline{
  margin: 10px 0 0;
  text-align: center;
  font-family: "Cinzel", ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3.3vw, 2.3rem);
  line-height: 1.15;
}

.hero .headline .red{ color: var(--red); }
.hero .headline .teal{ color: var(--teal); }

.hero .subline{
  margin: 12px auto 0;
  max-width: 50ch;
  text-align: center;
  color: var(--muted);
}

/* Info-Pills */
.pills{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.pill{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.68);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.95rem;
}

.pill strong{ font-weight: 700; }

/* Buttons */
.button-row{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button{
  display: inline-block;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.90);
  color: var(--ink);
  transition: transform 120ms ease, filter 120ms ease, box-shadow 120ms ease;
}

.button.primary{
  background: var(--red);
  color: white;
  border-color: rgba(0,0,0,0.12);
}

.button:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

.button.primary:hover{ filter: brightness(1.03); }

/* Grid + Cards */
.grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
}

.card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.72);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px 18px;
}

.card h2{
  margin: 0 0 10px;
  font-family: "Cinzel", ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing: 0.02em;
}

/* Text helpers */
.hint{
  color: var(--muted);
}

.list{
  margin: 0;
  padding-left: 18px;
}

/* Ticket iFrame wrapper */
.iframe-wrap{
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
}

.iframe-wrap iframe{
  width: 100%;
  border: 0;
  display: block;
}

/* Footer */
.footer{
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
}

.footer a{
  color: var(--ink);
}

.pill a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pill a:hover{
  text-decoration-thickness: 2px;
}

.footer-links{
  margin-bottom: 6px;
}

.footer-social{
  margin-top: 4px;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.social-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.social-link:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.social-icon{
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.75;
  transform: translateY(1px);
}

.social-sep{
  opacity: 0.5;
}

.follow{
  margin-top: 14px;
}

.follow p{
  max-width: 70ch;
}

.follow-actions{
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.follow-hint{
  margin-top: 12px;
}

/* Instagram-Icon in Buttons */
.insta-icon{
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.8;
}
.button{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

