#hero-container {
    height: 100vh;
}

@media (max-width: 768px) {
    #about-section-button {
        display: flex;
        justify-content: center;
    }
}

#about-section {
    background-color: rgb(22, 0, 0);
}

#live-show {
    position: relative;
    border-radius: 5px;
    max-width: 90%;
    margin: 0 auto;
    background: #111517;
    z-index: 0; /* 👈 important */
    isolation: isolate; /* 👈 creates proper stacking context */
}

@media (min-width: 1024px) {
    #live-show {
        max-width: 70%;
    }
}

#live-show:hover {
    box-shadow:
        0 0 10px var(--color-primary),
        0 0 10px var(--color-primary),
        0 0 10px var(--color-primary);
}

.reviews > div {
    border: 1px solid #1e1e1e;
    border-radius: 5px;
}

.reviews > div:hover {
    border: 1px solid var(--color-primary);
    cursor: default;
}

.image-overlay {
    position: relative;
    overflow: hidden;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection,
p::selection {
    background: transparent;
    color: var(--color-primary);
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection,
p::-moz-selection {
    background: transparent;
    color: var(--color-primary);
}

.image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.rounded {
    border-radius: 10px;
}

/* Dark overlay */
.image-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* adjust darkness here */
    border-radius: 10px;
}

@media (max-width: 640px) {
    footer {
        text-align: center;
    }

    #footer-social-icons > ul > li > a {
        justify-content: center;
    }
}

@media (max-width: 639px) {
  #live-shows-container .lg\:col-span-1 {
    text-align: center;
  }

  #live-shows-container .sm\:flex {
    display: block !important;
    text-align: center;
  }

  #live-shows-container .sm\:flex > .flex {
    display: inline-flex !important;
    justify-content: center;
    margin: 0 auto;
  }

  #live-shows-container .sm\:flex > h3,
  #live-shows-container .sm\:flex > span.block {
    display: block;
    margin: 0 auto 0.75rem;
  }
}