.main-event {
    color: white;
    font-family: 'Futura Book';
    max-width: 80%;
    margin: 0 auto;
}

.event-header {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.back-arrow {
    cursor: pointer;
    margin-right: 10px;
}

.event-title {
    text-transform: uppercase;
    font-size: 2rem;
    cursor: pointer;
}

.main-title {
    color: #b15be4;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
}

.description {
    font-size: 1.5rem;
    margin: 10px 0;
}

.highlight-desc {
    font-weight: normal;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.media {
    display: flex;
    flex-direction: column;
}

.media h3 {
    margin-top: 30px;
    font-size: 3rem;
}

.media span {
    font-style: italic;
}


/* Overlay */
#overlay-container {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 1030;
}

#overlay-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}


@media (min-width: 768px) {
    .description {
        font-size: 2rem;
    }

    .gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}