h1,
h2,
h3 {
  font-family: "Bungee", cursive;
  color: #fff;
  font-weight: normal;
  position: relative;
  transition: color 0.3s ease;
  margin-bottom: 20px;
}

h5,
h6 {
  font-family: "Arial Black", cursive;
  color: #fff;
  font-weight: normal;
  position: relative;
  transition: color 0.3s ease;
  margin-bottom: 5px;
}

h1:not(.zethnos-title)::after,
h2::after,
h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #00ff00;
}
.zethnos-card h1.zethnos-title {
  font-size: 3rem;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.social-logos {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 0.5rem;
  width: fit-content;
  margin-bottom: 2rem;
}
.social-logos img {
  width: 32px;
  height: 32px;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 2rem;
  background-color: #111;
  color: #fff;
}
nav {
  background-color: transparent;
}
.navbar-nav {
  font-family: "Bungee", sans-serif;
}
.navbar-nav .nav-link {
  color: #d3d3d3;
  position: relative;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #ffffff;
}
.navbar-nav .nav-link.active {
  color: #ffffff;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  width: calc(100% - 0.5em);
  height: 2px;
  bottom: 0;
  left: 0.25em;
  background-color: #ff6200;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0.25em;
  background-color: #ff6200;
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::before {
  width: calc(100% - 0.5em);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.card {
  background-color: #222;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  margin: 1rem auto;
  max-width: 600px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
}

.business a {
  color: #ff6200;
}
.business a:hover {
  color: #e03a00;
}
.zethnos-card,
.logo-card,
.minor-card {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 2rem;
  margin: 1rem auto;
  max-width: 600px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
}
.zethnos-card {
  text-align: left;
}
.zethnos-card a {
  display: block;
  margin: 0.5rem auto;
  width: fit-content;
}
.card img,
.zethnos-card img,
.logo-card img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .card-container {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
  .zethnos-card,
  .logo-card {
    max-width: 50vw;
    width: 50%;
    box-sizing: border-box;
  }
  .minor-card {
    max-width: 33vw;
    width: 33%;
    box-sizing: border-box;
    height: 100%;
  }
}
.btn-custom {
  background-color: #222;
  color: #fff;
  border-width: 3px;
  border-color: #fe5b16;
  width: 100%;
  margin-bottom: 10px;
}
.btn-custom:hover {
  background-color: #e03a00;
}
.card-title,
.btn-custom {
  font-family: "Bungee", cursive;
  color: #fff;
}
.text-center-all * {
  text-align: center;
}

.d-grid {
  padding-top: 20px;
}

.header-img {
  max-width: 200px;
  margin-bottom: 20px;
}

.gallery-container {
  padding: 50px 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.05);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-overlay span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}
#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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: 10px;
}
#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 1.5rem; /* Reduced from 3rem */
  cursor: pointer;
  user-select: none;
  padding: 10px;
}
#lightbox-prev {
  left: 10px;
}
#lightbox-next {
  right: 10px;
}
#lightbox-prev:hover,
#lightbox-next:hover {
  color: #ccc;
}

/* =========================
   STREAM SCHEDULE CARD
   ========================= */

#stream-schedule {
  max-width: 600px;
  margin: 1rem auto;
}

/* Card styling aligned with site cards */
#stream-schedule .card {
  background-color: #222;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: none;
  color: #fff;
}

/* Title uses Bungee like site headers */
#stream-schedule .card-title {
  font-family: "Arial Black", cursive;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

/* Green underline accent */
#stream-schedule .card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: #00ff00;
}

/* Next stream label */
#next-stream {
  letter-spacing: 0.05em;
  padding-top: 10px;
}

/* Countdown accent */
#countdown {
  color: #ff6200;
  font-size: 1.1rem;
}

#schedule-list .list-group-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

/* LIVE row emphasis */
#schedule-list .list-group-item.live a {
  color: #00ff00;
  font-weight: 600;
}

/* LIVE row emphasis */
#schedule-list .list-group-item.live a:hover {
  color: #009800;
  font-weight: 600;
}

/* LIVE badge styling */
#schedule-list .badge {
  font-family: "Arial Black", cursive;
  background-color: #ff6200;
  color: #fff;
  font-size: 0.65rem;
  padding: 0.35em 0.5em;
}

/* Pulse the LIVE badge next to link */
#schedule-list .list-group-item.live .badge {
  animation: pulse 1s infinite;
  margin-left: 0.5rem;
}
/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile tweaks */
@media (max-width: 576px) {
  #stream-schedule .card {
    padding: 1.25rem;
  }

  #stream-schedule .card-title {
    font-size: 1.3rem;
  }

  #countdown {
    font-size: 1rem;
  }
}
