body { 
	background-image: url('Logo.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: auto 70%;
	background-position: center center; 
}

#timerbox {
	top: 50%;
}

#concertTimer {
	color: #000
}

#mailto {
	background-image: url('mail.png');
	background-repeat: no-repeat;			
	background-size: cover;
	width: 37px;
	height: 22px;
	border:none;
	outline:none;
}
	
th {
	background-image: url('counter_bg.png');
	background-repeat: no-repeat;			
	background-size: cover;
	width: 96px;
	height: 100px;
	font-family: Helvetica, sans-serif;
	font-size: 48;
}

td {
	text-align: center;
	font-family: Helvetica, sans-serif;
	font-size: 16;
}

.background-container {
  position: relative;
  height: 100%; /* Set the height of the background */
  background: url('your-image.jpg') no-repeat center center;
  background-size: cover;
}

.relative-box {
  position: relative;
  top: 55%; /* Position relative to the container's height */
  width: 100%;		  
  transform: translate(0%, 0%); /* Center the box */
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 8px;
}

.relative-boxBottom {
  position: relative;
  top: 45%; /* Position relative to the container's height */
  width: 100%;		  
  transform: translate(0%, 0%); /* Center the box */
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 8px;
}

.relative-boxAbout {
  position: relative;
  top: 15%; /* Position relative to the container's height */
  width: 100%;		  
  transform: translate(0%, 0%); /* Center the box */
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 8px;
}

.link_no_underline:hover {
  color: #32d3a4;
  background-color: transparent;
  text-decoration: none;
}

a:link {
  color: #a38f4a;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #a38f4a;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #32d3a4;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: #32d3a4;
  background-color: transparent;
  text-decoration: underline;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #b2222211;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
z-index: 10; /* höher als Canvas */
position: relative;
}

.topbar:hover {
  background-color: #8b1a1a33; /* dunkleres Rot beim Hover */
}

.topbar-left,
.topbar-center,
.topbar-right {
  text-align: center;
}

.topbar-left {
  text-align: left;
  width: 10vw;
}

.topbar-right {
  text-align: right;
  width: 10vw;
  margin-top: -10px;
}

.topbar-icon {
  height: 32px;
  vertical-align: middle;
}

.topbar-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
}

.burger-button {
  background: none;
  border: none;
  font-size: 1em;
  color: #fff;
  cursor: pointer;
}

.divider_ {
	height: 70px;
	width: auto;
}

/* Link oben */
#toggleAbout {
  display: inline-block;
  margin: 0px auto;
  padding: 0px 50px;
  cursor: pointer;
  font-weight: bold;
  color: #b22222; /* schönes Rot */
  text-decoration: none;
  text-align: center;
  margin-bottom: 10px;
}

.about-button {
  display: inline-block;
  padding: 0px 0px;
  background-color: #b2222255;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.about-button:hover {
  background-color: #8b1a1a99;
}

/* Versteckter Bereich */
#about {
  display: block;
  margin: 0px auto;
  
  max-height: 0;
  max-width: 800px;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  background: #f9f9f9;
  padding: 0px 10px;
  border-left: 3px solid #b22222;
}
#about h2 {
  color: #006699; /* Blau nur für die Überschrift */
  font-size: 18pt;
}

#about p {
  color: #444; /* dunkleres Grau für den Absatz */
  font-size: 12pt;
}

/* Sichtbar, wenn aktiv */
#about.open {
  max-height: 1000px; /* genug Platz für Text */
  max-width: 800px; /* genug Platz für Text */
  padding: 10px;
}

@media (max-width: 800px) {
	#about {
	  max-width: 600px;
	}

	#about.open {
	  max-width: 600px; /* genug Platz für Text */
	}
}

.close-btn {
  position: absolute;
  top: 5px;      /* Abstand von oben */
  right: 5px;    /* Abstand von rechts */
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;

  background-color: #b2222255;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.close-btn:hover {
  background-color: #8b1a1a99;
}

@media (max-width: 460px) {
	body { 
		background-position: center 28vw; 
	}

	#terumangaIcon {
		width: 100px;
		height: 100px;
	}
	
	th {
		width: 80px;
		height: 80px;
		font-size: 36;
	}

	td {
		font-size: 12;
	}

	#about {
	  max-width: 400px;
	}

	#about.open {
	  max-width: 400px; /* genug Platz für Text */
	}
}

@media (max-width: 390px) {
	th {
		width: 60px;
		height: 60px;
		font-size: 28;
	}

	td {
		font-size: 9;
	}

	#about h2 {
		font-size: 6vw;
	}

	#about p {
		font-size: 4vw;
	}
}

@media (max-width: 250px) {
	th {
		width: 50px;
		height: 50px;
		font-size: 20;
	}

	#terumangaIcon {
		width: 50px;
		height: 50px;
	}
	
	td {
		font-size: 8;
	}

	#about h2 {
		font-size: 10pt;
	}

	#about p {
		font-size: 8pt;
	}
}

.rounded-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin: 10px auto;
    width: fit-content;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.rounded-box2 {
    background: #ffffffaa;
    border-radius: 16px;
    padding: 20px;
    margin: 10px auto;
    width: fit-content;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

#string-header {
    width: 100%;
    height: 140px;
    background: linear-gradient(90deg, #8b5a2b, #a06b3b, #8b5a2b);
    background-size: 200% 200%;
    animation: woodgrain 8s linear infinite;
    position: relative;
}

@keyframes woodgrain {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

#fretboard {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    pointer-events: none;
}

.fret {
    position: absolute;
    top: 0;
    width: 4px;
    height: 140px;
    background: rgba(255,255,255,0.6);
    box-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.hover-image {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  padding: 8px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hover-info {
  position: relative;
  display: inline-block;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 30px;
  width: 150px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

@media (hover: hover) and (pointer: fine) {
  .hover-info:hover .hover-image {
    opacity: 1;
    pointer-events: auto;
  }
}

.hover-image {
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 999;
  max-width: 200px;
  border-radius: 6px;
}
.hover-info.open .hover-image {
  opacity: 1;
  pointer-events: auto;
}

.topbar-title img { width: 180px; height: auto; display: block; }