@import url("https://fonts.googleapis.com/css2?family=Play:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300..700&display=swap");

* {
    font-family: "poppins", "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
}

.nav-tabs {
    border-bottom: none;
    justify-content: center;
}

.nav-tabs .nav-link {
    border: none;
    color: #000;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0 15px;
}

.nav-tabs .nav-link.active {
    font-weight: 600;
    border-bottom: 3px solid #000;
    background-color: transparent;
}

.tab-content {
    padding: 20px;
    text-align: start;
}

.text-shadow {
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9);
}

.event-title {
    width: 60%;
    font-weight: 600;
    line-height: 1.5;
    font-size: 30px;
}

@media (max-width: 992px) {
    .event-title {
        width: 60%;
        font-size: 24px;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .event-title {
        width: 100%;
        font-size: 24px;
    }
}

.event-title-current {
    width: 60%;
    font-weight: 600;
    line-height: 1.5;
    font-size: 30px;
}

#mainImageCard {
    transition: background-image 0.3s ease-in-out;
    position: relative;
}

#mainImageCard::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
    border-radius: 30px;
}

#mainImageCard.fade::after {
    opacity: 0.3;
}

/* Thumbnails container */
.thumbnail-container {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .main-card {
        flex: 100% !important;
        height: 450px !important;
    }

    .thumbnail-container {
        max-width: 100% !important;
        overflow: hidden;
    }
}

.thumb-wrapper {
    flex: 1 1 120px;
    max-width: 110px;
    height: auto;
    aspect-ratio: 3 / 5;
    border-radius: 20px;
    overflow: hidden;
}

.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .thumb-wrapper {
        flex: 1 1 45%;
        max-width: 100%;
        height: 450px;
        aspect-ratio: 2 / 3;
    }

    .thumbnail-container {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .thumb-wrapper {
        flex: 1 1 100%;
        aspect-ratio: 3 / 4;
    }
}