/* Grundlayout */
body {
  margin: 15px 15px 20px 15px;
  font-family: 'Cal Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  background-color: #232323;
  color: #eee6da;
  -webkit-font-smoothing: subpixel-antialiased;
  filter: url(#ink-bleed);
}


/* Typografie */
h1, .city-venue, .navbar a {
  font-size: 85px;
  line-height: 0.85;
  margin: 0 8px 10px 0;
  font-weight: 400;
}

h3 {
  font-size: 85px;
  line-height: 0.85;
  margin: 0 0 -10px 0;
  font-weight: 400;
  text-align: center;
}

.date, .country, p, .ticket {
  font-size: 40px;
  letter-spacing: 0.025em;
  line-height: 1.15;
  font-weight: 400;
  margin: -2px 0 0 0;
}

h4 {
  color: #eee6da;
  letter-spacing: 0.05em;
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 10px 0;
  font-weight: 400;
}

a {
  color: #eee6da;
  text-decoration: none;
  transition: color 0.5s ease;
  font-weight: 400;
}

a:hover {
  color: #918c87;
  animation-fill-mode: both;
}

.block {
  position: relative;
  width: 100%;
}

.velcros-word {
  font-size: 150px;
  line-height: 0.8;
  white-space: nowrap;
  display: block;
  letter-spacing: 0;
  overflow: hidden;
  padding-right: 0;
  text-align: left;
  transition: letter-spacing 0.4s ease;
  font-family: 'Cal Sans', Helvetica, Arial, sans-serif;
  margin-bottom: 10px;
}

/* Layout */
.container {
  display: flex;
  flex-direction: none;
  gap: 20px;
}

.block {
  flex: 1;
}

/* Shows */
.shows {
  margin-top: 30px;
}

.show {
  display: flex;
  align-items: flex-start;
  gap: 0px;
  justify-content: space-between;
  border-top: 5px solid #eee6da;
  padding: 8px 0 7px 0;
  flex-wrap: wrap;
  flex-direction: column;
}

.show-past {
  color:#5e5c5a;
  display: flex;
  gap: 0px;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 5px solid #5e5c5a;
  padding: 8px 0 7px 0;
  flex-wrap: wrap;
  flex-direction: column;
}

#past-shows-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin: 20px 0;
  user-select: none;
}

#arrow {
  font-size: 30px;
  margin: 0 0 0 5px;
  text-align: center;
}

#past-shows-toggle:hover #arrow {
  text-align: left;
}

.date {
  width: 210px; /* feste Breite für Datum */
  flex-shrink: 0;
  min-width: 100px;
  padding: 0 40px 0 0;
}

.info {
  flex: 1;
  margin-left: 0px;
}

.country {
  margin: 0 0 0 0;
}

.ticket {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #eee6da;
  margin: 5px 0 8px 0;
  color: #232323;
  padding: 5px 15px;
  border-radius: 20px;
  transition: background 0.2s;
}

.ticket:hover {
  background-color: #918c87;
  color: #232323;
}

.ticket-inactive {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #5e5c5a;
  margin: 5px 0 8px 0;
  color: #232323;
  padding: 5px 15px;
  border-radius: 20px;
}

.ticket-inactive:hover {
  color: #232323;
}

.video {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #eee6da;
  color: #232323;
  padding: 2px 7px;
  border-radius: 7px;
  transition: background 0.2s;
}

.video:hover {
  background-color: #918c87;
  color: #232323;
}

/* Responsive: Spalten auf kleineren Screens */
@media screen and (min-width: 600px) {
  .container {
    flex-direction: row;
  }

  .block {
    flex: 1;
  }
}

/* Responsive: Spalten auf größeren Screens */
@media screen and (min-width: 1024px) {

  .show {    
    flex-direction: row;
  }

  .show-past {    
    flex-direction: row;
  }
}

/* Für Bildschirme bis 600px Breite */
@media (max-width: 600px) {
  h1, h3, .city-venue, .navbar {
    font-size: 55px; 
  }
}

@media (max-width: 600px) {
  h4 {
    font-size: 20px; 
  }
}

@media (max-width: 600px) {
  .date, .country {
    font-size: 25px; 
  }
}

@media (max-width: 600px) {
  .velcros-word {
    font-size: 80px; 
  }
}

@media (max-width: 600px) {
  .video {
    font-size: 12px; 
  }
}


.ticker-bar {
  width: 100%;
  background: #eee6da;
  overflow: hidden;
  padding: 0;
  margin-top: 5px;
  position: relative;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-loop 16s linear infinite;
  font-family: 'Cal Sans', sans-serif;
  font-size: 30px;
  color: #232323;
  word-spacing: 0.1em;
  letter-spacing: 0.01em;
  padding-left: 100%;
}

.ticker a {
  color:  #5e5c5a;;
}

.ticker a:hover {
  color:  ##232323;
}

@keyframes ticker-loop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); } /* '50%' bedeutet, dass der Text sich innerhalb von 100% der Breite vollständig bewegt */
}

.ticker-bar:hover .ticker {
  animation-play-state: paused;
}

