html {
    font-family: 'Belanosima', sans-serif;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease;
}

#loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

#loading-screen.fade-in {
    opacity: 1;
}

.loading {
    width: 300px;
}

body {
    margin: 0;

}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #800020;
    width: 100vw;
    padding: 10px 0;
    position: relative;
    bottom-padding:-10px;
}

.tabs {
    position: absolute;
    left: 20px;
    display: flex;
    gap: 20px;
}

.socials {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 20px;
}

.tabs a {
    color: white;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    display: inline-block;
}

.logo {
    width: 100px;
    height: 100px;
}

.pic img {
    margin-top: -50px;
    height: 1000px;
    display: block;
    object-fit: cover;
}

.info-text{
    padding: 50px;
    font-size: 30px;

}

.mheader {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background-color: #800020;
    width: 100vw;
    padding: 30px ;
    position: relative;
    bottom-padding:-10px;
    font-size: 50px;
}

.flics-container {
    overflow: hidden;
    width: 100vw;
    position: relative;
    margin: 0;
    padding: 0;
}

.flics {
    display: flex;
    width: max-content;
    animation: scrollLeft 40s linear infinite;
    position: relative;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.photo {
    width: 600px;
    height: 700px;
    flex-shrink: 0;
}

.popup {
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3); /* gray overlay */
    z-index: 10000;

}

.popup.show {
    display: flex;
    justify-content: center;
    align-items: center;
}



.selected {
    width: 400px;
    height: 480px;
}

.popup-inner {
  background-color: black;
  padding: 20px;
  max-width: 500px;
  width: 89%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.item{
    display: flex;
    align-items: center;
    flex-direction: column;
    border-style: solid;
    border-radius: 10px;
    padding: 50px;

}

.item:hover {
    background-color: black;
    color: white;

}


.merchh{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.tix h1{
font-size: 70px

}

.tix p{
font-size: 50px

}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 40px;
  justify-items: center;
}

.gallery-img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255,255,255,0.2);
}

.lightbox.show {
  display: flex;
}

.tix a{
    text-decoration: none;
    color: black;
}