﻿/* =========================================================
   KOYEL TRIPATHI
   UPCOMING SHOW POPUP
   COMPLETE CSS
   ========================================================= */


/* =========================================================
   FULL SCREEN OVERLAY
   ========================================================= */

#ktPopupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999999;
}


/* =========================================================
   POPUP BOX
   ========================================================= */

#ktPopupBox {
    position: relative;
    width: 760px;
    height: 430px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    overflow: hidden;
    background: linear-gradient( 135deg, #210638, #090014 );
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 20px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.85), 0 0 50px rgba(150,50,255,0.35);
}


/* =========================================================
   LEFT IMAGE
   ========================================================= */

#ktPopupImage {
    width: 50%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}


    #ktPopupImage img {
        display: block;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        border: 0;
        object-fit: cover;
        object-position: center center;
    }


    /* Image gradient */

    #ktPopupImage::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100px;
        background: linear-gradient( 90deg, transparent, rgba(20,3,35,0.95) );
        pointer-events: none;
    }


/* =========================================================
   RIGHT CONTENT
   ========================================================= */

#ktPopupContent {
    width: 50%;
    height: 100%;
    margin: 0;
    padding: 40px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

#ktPopupClose {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: normal;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0.75;
    transition: opacity 0.3s ease, transform 0.3s ease;
}


    #ktPopupClose:hover {
        opacity: 1;
        transform: rotate(90deg);
    }


/* =========================================================
   UPCOMING SHOW LABEL
   ========================================================= */

#ktPopupLabel {
    margin: 0 0 18px 0;
    padding: 0;
    color: #ff3cac;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 4px;
    line-height: 1.4;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255,60,172,0.8);
}


/* =========================================================
   NAME
   ========================================================= */

#ktPopupContent h2 {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: normal;
    line-height: 1.2;
    text-align: center;
}


/* =========================================================
   CONCERT TITLE
   ========================================================= */

#ktPopupContent h3 {
    margin: 8px 0 25px 0;
    padding: 0;
    color: #c98cff;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: normal;
    letter-spacing: 4px;
    line-height: 1.4;
    text-align: center;
}


/* =========================================================
   DATE
   ========================================================= */

#ktPopupDate {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.4;
    text-align: center;
}


/* =========================================================
   TIME
   ========================================================= */

#ktPopupTime {
    margin: 8px 0 0 0;
    padding: 0;
    color: #ff4db8;
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.4;
    text-align: center;
}


/* =========================================================
   VENUE
   ========================================================= */

#ktPopupVenue {
    margin: 20px 0 28px 0;
    padding: 0;
    color: #d0d0d0;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
}


/* =========================================================
   SHOW DETAILS BUTTON
   ========================================================= */

#ktPopupButton {
    display: inline-block;
    margin: 0;
    padding: 14px 28px;
    color: #ffffff;
    background: linear-gradient( 90deg, #8e2de2, #ff3cac );
    border: none;
    border-radius: 30px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.3;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255,60,172,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


    #ktPopupButton:hover {
        color: #ffffff;
        text-decoration: none;
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(255,60,172,0.60);
    }


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 700px) {

    #ktPopupBox {
        width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
        height: auto;
        max-height: calc(100vh - 30px);
        flex-direction: column;
        overflow-y: auto;
    }


    #ktPopupImage {
        width: 100%;
        height: 210px;
        flex-shrink: 0;
    }


        #ktPopupImage::after {
            top: auto;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 70px;
            background: linear-gradient( transparent, rgba(20,3,35,0.95) );
        }


    #ktPopupContent {
        width: 100%;
        height: auto;
        padding: 30px 20px 35px;
    }


        #ktPopupContent h2 {
            font-size: 30px;
        }


        #ktPopupContent h3 {
            font-size: 14px;
            letter-spacing: 3px;
        }


    #ktPopupDate {
        font-size: 18px;
    }


    #ktPopupTime {
        font-size: 16px;
    }


    #ktPopupVenue {
        font-size: 14px;
        margin: 18px 0 22px;
    }
}

#ktPopupButton {

    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 25px !important;

    color: #ffffff !important;

    background: #f84464 !important;

    border-radius: 8px !important;

    font-family: Arial, sans-serif;

    font-size: 13px !important;

    font-weight: bold !important;

    letter-spacing: 1px;

    text-decoration: none !important;

    box-shadow:
        0 8px 25px rgba(248, 68, 100, 0.35);

    transition: all 0.3s ease;
}


#ktPopupButton:hover {

    color: #ffffff !important;

    background: #e93658 !important;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(248, 68, 100, 0.55);
}


.bms-ticket-icon {

    font-size: 20px;

    line-height: 1;
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 400px) {

    #ktPopupBox {
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
    }


    #ktPopupImage {
        height: 180px;
    }


    #ktPopupContent h2 {
        font-size: 27px;
    }
}
