:root {
  --main-color: #c62929;
  --text-color: #15e7ae;
  --text-color2: white;
  --hover-color: white;
}
body {
  background-color: var(--main-color);
  color: var(--text-color);

  color: white;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.offen {
  font-size: 28px;
}

h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 64px;
  color: var(--text-color);
}

.radio {
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--text-color);
  margin: 0px !important;
}

h2 {
  font-size: 31px;
  letter-spacing: 4px;
  margin-bottom: 0px;
  color: var(--text-color);
}

h3 {
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--text-color);
}
address {
  margin-bottom: 100px;
}
address p {
  line-height: 0px !important;
}

p {
  line-height: 25px;
  font-weight: 200;
  color: var(--text-color);
  font-size: 20px;
}

h1 a,
h2 a,
h3 a,
p a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

h1 a:hover,
h3 a:hover,
p a:hover {
  color: var(--hover-color);
}

.dates {
  font-size: 17px;
  font-weight: 100;
}

hr {
  border: none;
  height: 1px;
  background-color: currentColor;
  color: var(--text-color);
}

.footer {
  margin-top: 100px;

  width: 100%;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, 200px); /* fixed size columns */
  justify-content: left; /* optional: center the grid */
}

.gallery img {
  margin-top: 30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 0px;
}

.mailform {
  margin-bottom: 30px;
}

.input {
  font-family: "Inter", sans-serif;
}

.status-message {
  margin-bottom: 10px;
}

#listenButton {
  background-color: white;
  color: var(--main-color);
  
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  margin-bottom:30px;
}

#listenButton:hover {
  background-color: var(--text-color);
  color: var(--main-color);
  border-color: var(--main-color);
  box-shadow: 0 5px 12px rgba(198, 41, 41, 0.7);
}


#status {
  font-weight: normal;
  letter-spacing: 0.05em; /* subtle letter spacing for Radio KVR */
}

#status .on-air {
  font-weight: bold;
  color: white;
  animation: pulseGlow 1.5s infinite ease-in-out;
}

#status .off-air {
  font-weight: bold;
  color: #888888; /* soft grey */
  
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.5),
      0 0 6px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.8),
      0 0 12px rgba(255, 255, 255, 0.5);
  }
}






