:root {
  --bg: #0b0210;
  --bg-accent: linear-gradient(180deg, rgba(11,2,16,1) 0%, rgba(30,3,40,1) 100%);
  --text: #ffffff;
  --muted: #bfbfbf;
  --accent: #ff2da6;
  --gold: #ffd166;
  --bright: #7be0ff;
  --danger: #ff3b3b;
  --transparent-black: rgba(0,0,0,0.6);
}

/*********************/
/* Universalselektor */
/*********************/
* {
  font-family: 'Raleway', sans-serif;
  box-sizing: border-box;
}

/*****************/
/* Typselektoren */
/*****************/
html {
  background: var(--bg-accent);
  color: var(--text);
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding-top: 120px;
  padding-bottom: 20px;
  background: transparent;
}

/* Header / Footer */
header {
  background: linear-gradient(90deg, rgba(0,0,0,0.85), rgba(20,0,30,0.6));
  border-bottom: 2px solid rgba(255,45,166,0.12);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.95;
  font-weight: bolder;
  z-index: 1;
  color: var(--text);
  backdrop-filter: blur(4px);
}

footer {
  background: linear-gradient(90deg, rgba(0,0,0,0.85), rgba(10,0,20,0.6));
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.95;
  text-align: right;
  font-weight: 100;
  font-size: small;
  color: var(--muted);
  border-top: 1px solid rgba(255,209,102,0.06);
}

/* Headlines */
h1 {
  display: block;
  max-width: 100%;
  font-size: 5vw;
  font-family: 'Inter', 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  font-weight: 900;
  letter-spacing: 0.26em;
  line-height: 1.05;
  text-align: center;
  margin: 0;
  padding-top: 0;
  color: var(--accent);
  text-shadow: 0 6px 18px rgba(255,45,166,0.12), 0 1px 0 rgba(0,0,0,0.6);
}

h2 {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  font-size: x-large;
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  word-wrap: break-word;
}

h3 {
  text-decoration: none;
  font-size: large;
  font-weight: 700;
  line-height: 1.6;
  font-family: 'Raleway', sans-serif;
  color: var(--bright);
  margin-top: 0;
  margin-bottom: 0;
}

/* ===================== */
/* GLAM ROCK TABLE STYLE */
/* ===================== */

table {
  width: 100%;
  table-layout: fixed;

  /* mehr Abstand zwischen den Zellen */
  border-collapse: separate;
  border-spacing: 36px 30px;
}

/* Glam-Rock-Zellen */
td {
  padding: 16px;
  vertical-align: top;

  border: 2px solid rgba(255,45,166,0.35);
  border-radius: 14px;

  box-shadow:
    0 0 12px rgba(255,45,166,0.22),
    0 0 22px rgba(123,224,255,0.12);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

td:hover {
  transform: translateY(-4px);

  border-color: var(--gold);

  box-shadow:
    0 0 18px rgba(255,45,166,0.45),
    0 0 34px rgba(123,224,255,0.22);
}

/* Mobile */
@media screen and (max-width: 640px) {
  table {
    border-spacing: 16px 24px;
  }

/*
  td {
    display: block;
    width: 100%;
  }
*/  

  td:hover {
    transform: none;
  }
}



li {
  display: inline;
  padding: 10px 1vw;
}

/* Links */
a:link,
a:visited {
  color: var(--text);
  transition: color 0.18s ease, text-shadow 0.18s ease;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent);
  text-shadow: 0 4px 18px rgba(255,45,166,0.18);
}

a:active {
  color: var(--gold);
}

/* Navigation top items */
.top {
  border-bottom-color: rgba(255,45,166,0.18);
  display: inline;
  height: 100%;
  transition: all 0.3s;
  outline: 0;
  text-decoration: none;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  line-height: 130%;
  white-space: nowrap;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  visibility: inherit;
  text-align: center;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: var(--muted);
}

.top:hover {
  color: var(--text);
  border-bottom-color: var(--accent);
  transform: translateY(-2px);
}

/* Utility classes */
.invisible {
  color: transparent;
  text-shadow: none;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.bold {
  font-weight: bold;
}

/**********/
.logo-container {
    text-align: center;
}

.logo {
    width: 80%;
    max-width: 640px; /* for 1920x1080 display*/
    height: auto;
}

@media (max-width: 600px) {
    .logo {
        width: 95%;
    }
}

/***********/


/* Content blocks */
.event {
  max-width: 700px;
  margin: 0px auto;
  padding: 1.2rem;

  font-size: medium;
  line-height: 2;
  color: var(--muted);

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.02),
    rgba(0,0,0,0.02)
  );

  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  border: 1px solid rgba(123,224,255,0.04);
}


.disclaimer {
  font-size: smaller;
  font-weight: lighter;
  font-style: italic;
  color: rgba(191,191,191,0.9);
}

/* Images and media */
.foto {
  width: 100%;
  height: auto;
  border: 4px solid rgba(255,45,166,0.06);
  box-shadow: 0 12px 40px rgba(11,2,16,0.6);
  border-radius: 4px;
}

.photosheader {
  width: 82%;
}

.biographie {
  text-align: justify;
  padding: 10px;
  hyphens: auto;
  color: var(--muted);
}

/* Responsive video container */
.resp-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.resp-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(191,191,191,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border-radius: 6px;
}

/* Small tweaks */
hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,209,102,0.12), transparent);
  margin: 2rem auto;
}

/* Responsive: mobile stack (scoped) */
@media screen and (max-width: 640px) {
  h1 {
    font-size: 9vw;
    letter-spacing: 0.18em;
  }

  .top {
    padding: 8px 6px;
    font-size: 13px;
  }
}

