@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&family=Permanent+Marker&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=Tiny5&display=swap');

body{
    background-color:rgb(15, 15, 15);
    user-select: none;
}
.font-heading{
    font-family: "Orbitron", sans-serif;
    font-weight: 800;
}

.fs-small{
    font-size: 12px;
}

.glass-card{
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-color: rgba(169, 169, 169, 0.3);
    border-radius: 1.8rem;
    border: 1.6px solid rgba(255, 255, 255, 0.125);
    box-shadow: 0 0 2rem rgba(224, 224, 224, 0.2);
}

.main-container {
    background: linear-gradient(to bottom right, 
        rgba(113, 0, 135, 0.7) 0%,
        rgba(70, 0, 70, 0.6) 15%,
        rgb(15, 15, 15) 35%,
        rgb(15, 15,15) 65%, 
        rgba(80, 50, 0, 0.5) 85%, 
        rgba(121, 76, 0, 0.7) 100%
    );
    color: #fff;
    min-height: 800px;
}

.glass-navbar{
    margin-top: 2rem;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-color: rgba(169, 169, 169, 0.3);
    border-radius: 1.8rem;
    border: 1.6px solid rgba(255, 255, 255, 0.125);
    padding: 1rem 3rem;
    display: flex;
    gap:3rem;
    box-shadow: 0 0 2rem rgba(224, 224, 224, 0.2);
}
.glass-navbar a {
    color: rgb(239, 239, 239);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
    display: inline-block;
}

.glass-login{
    margin-top: 2rem;
    margin-left: 1rem;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-color: rgba(169, 169, 169, 0.3);
    border-radius: 1.2rem;
    border: 1.6px solid rgba(255, 255, 255, 0.125);
    padding: 1rem 1rem;
    display: flex;
    font-size: small;
    gap:3rem;
    box-shadow: 0 0 2rem rgba(224, 224, 224, 0.2);
}
.glass-login a {
    color: rgb(239, 239, 239);
    text-decoration: none;
    font-weight: 500;
    font-size: small;
    transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
    display: inline-block;
}

.glass-navbar a:hover {
    transform: scale(1.1);
}

.page-hero-text-container{
    display: flex;
    flex-direction: column;
    height:600px;
    align-items: center;
    justify-content: center;
}

.page-hero-text{
    font-family: "Orbitron", sans-serif;
    display: inline-block;
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin: 0px;
    line-height: 42px;
    width:750px;
    text-align: center;
}

.page-hero-text-gradient{
    font-family: "Orbitron", sans-serif;
    display: inline-block;
    background: linear-gradient(to right, #E73694 20%, #F2F677 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% 100%;
    font-size: 92px;
    font-weight: 900;
    margin: 0px;
    margin-top: 4px;
    line-height: 92px;
    margin-bottom:1.2rem;
}

.btn-white {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 0.8rem;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    font-weight: 500;
    font-size: small;

}

.btn-white:hover {
    background-color: #e8e8e8;
    color: #000000;
    border-color: #f8f9fa;
}

.btn-white-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 0.8rem;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    font-weight: 500;
    font-size: small;
}

.btn-cancel {
    background-color: #ff0000;
    color: #ffffff;
    border: 1px solid #ff0000;
    padding: 0.5rem 1.5rem;
    border-radius: 0.8rem;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
    font-weight: 500;
    font-size: small;
    box-shadow: 0 0 2.4rem rgba(255, 0, 0, 0.3);
}


.btn-white-outline:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.seats-booking-container{
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-color: rgba(169, 169, 169, 0.3);
    border-radius: 1.8rem;
    border: 1.6px solid rgba(255, 255, 255, 0.125);
    padding: 2.8rem 2.8rem; 
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 1.4rem rgba(224, 224, 224, 0.25);
}

.seats-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 26px;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    max-width:500px;
    max-height:300px;
    overflow-y: scroll;
}

.seat-icon i {
    font-size: 22px;
}

.seat-icon.white i {
    color: #ffffff;
}

.seat-icon.gray i {
    color: #5a5a5a;
}

.select-white-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 0.8rem;
    padding: 0.5rem 1.5rem;
    font-size: 12px;
    font-weight: 500;
    appearance: none;
    width: 100%;
    max-width: 300px;
    outline: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    padding-right: 2rem;
    position: relative;
}

.select-chevron {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    pointer-events: none;
    font-size: 0.9rem;
}

.select-white-outline:hover,
.select-white-outline:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.select-white-outline option {
    background-color: #020118;
    color: #ffffff;
    padding: 0.5rem;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Style for disabled button to keep it visually consistent */
#book-seat-button:disabled {
    background-color: #30be00;
    color: white;
    border: 1px solid #30be00;
    padding: 0.5rem 1.5rem;
    border-radius: 0.8rem;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    font-weight: 500;
    font-size: small;
}

.sample-ticket-container{
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-color: rgba(169, 169, 169, 0.3);
    border-radius: 1.8rem;
    border: 1.6px solid rgba(255, 255, 255, 0.3);
    width: fit-content;
    padding: 2rem 2.4rem;
    box-shadow: 0 0 2rem rgba(224, 224, 224, 0.2);
    margin-left: auto;
    margin-right: auto;
    margin-top:2rem;
}

.bookie-name{
    font-family: "Permanent Marker", cursive;
    font-size: 44px;
    line-height:46px;
    color: white;
    margin:0px;
}

.booking-details{
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    line-height:16px;
    color: white;
    margin:0px;
    margin-top:8px;
    font-weight: 800;
}

.page-footer{
    display: flex;
}

.footer-logo{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
}

.footer-logo  p{
    width:180px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    color: white;
    font-size: small;
    font-weight: 700;
    text-shadow:0 0 2rem rgba(224, 224, 224, 0.8);
}
.footer-logo div{
    margin-top: 2.8rem;
}

.footer-logo a {
    margin-left: 1rem;
    margin-right: 1rem;
    color: white;
    text-decoration: none;
    font-size: small;
    font-weight: 700;
    text-shadow: 0 0 2rem rgba(224, 224, 224, 0.75);
}

.footer-logo  img{
    width:100%;
}

.btn-success{
    background-color: #2fbc00;
    color: #ffffff;
    border: 1px solid #2fbc00;
    padding: 0.5rem 1.5rem;
    border-radius: 0.8rem;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
    font-weight: 500;
    font-size: small;
    box-shadow: 0 0 2.4rem rgba(106, 255, 0, 0.2);
}

.btn-warning{
    background-color: #f2d200;
    color: #ffffff;
    border: 1px solid #f2d200;
    padding: 0.5rem 1.5rem;
    border-radius: 0.8rem;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
    font-weight: 500;
    font-size: small;
    box-shadow: 0 0 2.4rem rgba(217, 255, 0, 0.2);
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@media (max-width: 760px){
    .page-hero-text{
        font-size: 28px;
        width:100%;
    }
    .page-hero-text-gradient{
        font-size:60px;
    }
    .page-hero-text-container{
        height:auto;
    }
    .main-container{
        min-height: 780px;
    }
    .seat-icon i {
        font-size: 18px;
    }
    .seats-container {
        margin-top:20px;
        gap:20px;
    }
    .glass-navbar{
        padding: 1rem 1.8rem;
    }

    .bookie-name{
        font-size:36px;
    }

    .sample-ticket-container{
        padding: 2rem 1.8rem;
    }

    .font-heading{
        font-family: "Orbitron", sans-serif;
        font-weight: 800;
        font-size:14px;
    }
}
