﻿@import url('satoshi.css');

.price-circle {
    width: 320px;
    height: 320px;
    background: #B38237;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
}

.price-main {
    font-size: 62px;
    /*font-weight: 600;*/
    letter-spacing: 2px;
    /*margin-bottom: 8px;*/
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: Satoshi-Bold;
}

    .price-main .rupee {
        font-size: 44px;
        font-weight: 400;
    }

.price-strike {
    color: #322611;
    font-size: 32px;
    /*margin-bottom: 14px;*/
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    font-family: satoshi-Bold;
}

.strike-amount {
    text-decoration: line-through;
    text-decoration-color:white;
    text-decoration-thickness:1px;
    font-weight: 500;
}


.validity {
    color: #212121;
    font-size: 18px;
    /*margin-top: 6px;*/
    letter-spacing: 0.5px;
    font-weight: 500;
}

.btn-gold {
    background: #B68130;
    color: white;
}

    .btn-gold:hover, .btn-gold:focus {
        background: #B68130;
        color: white;
    }



.accordion {
    font-family: Satoshi-Light;
    --bs-accordion-border-width: none;
}

.accordion-item {
    border: none;
    background-color: transparent !important;
    border-bottom: none;
}

/*Accordoin Buttons*/
.accordion-item, .accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: black;
    border-bottom: none;
}

.accordion-button {
    font-size: 42px !important;
    background-color: transparent !important;
}

.accordion-body {
    font-size: 18px !important;
    /*    padding-right:10%;
    padding-bottom:4%;*/
}

.accordion-button:not(.collapsed)::after {
    background-image: url("/website/assets/images/Dropdown.svg");
}

.accordion-button::after {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-left: auto;
    content: "";
    background-image: url("/website/assets/images/Dropdown.svg");
    background-repeat: no-repeat;
    background-size: 30px;
}

.accordion-button:focus,
.accordion-button:active {
    box-shadow: none;
    border-bottom: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
    outline: none;
}

.accordion-dotted {
    border-bottom: 2px dotted #ababab;
    height: 0;
    margin-left: 10%;
    margin-right: 1%;
}

.accordion-body ul {
    list-style-image: url("/website/assets/images/Bullet-point.svg");
}

.accordion-body li {
    margin: 10px 0;
}


/*Cards */
.card {
    border: none !important;
}

    .card:hover {
        color: black;
        cursor: pointer;
    }

.card-body {
    padding: 0px;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
}

.card-text {
    font-size: 16px;
    font-weight: normal;
}


.card-img-top {
    width: 100%;
    object-fit: cover;
    border-radius: 0px !important;
}

@media(max-width:992px){
    .card-title{
        font-size:20px;
    }
}
.icon-btn {
    width: 48px;
    /* height: 48px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #BE842C;
    border-radius: 50%;
    padding: 10px;
}
@media(max-width:576px){
    .icon-btn{
        width:37px;
        padding:7px
    }
}

.icon-custom-border {
    border: 1px solid #dcd6d1;
    border-radius: 50%;
    padding: 5px;
}




.card {
    border: none !important;
    position: relative;
    overflow: hidden;
}

.card-img-top {
    border-radius: 25px !important;
}

.card-title {
    font-family: Satoshi-Bold;
    color: black;
}

.event-amount {
    font-size: 30px;
    font-family: Satoshi-Bold;
    color: black;
}




.ticket-overlay {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%; /* relative to parent width → responsive */
    aspect-ratio: 1/1; /* always stays a perfect circle */

    background: #BE842C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.card:hover .ticket-overlay {
    opacity: 1;
    pointer-events: auto;
}

.card:hover .amount {
    color: #BE842C;
}

.ticket-text {
    color: #fff;
    font-family: Satoshi-Bold, sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.underline {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}


.event-carousel-nav .owl-prev, .event-carousel-nav .owl-next {
    width: 80px;
    height: 80px;
    margin: 0 5px;
    display: inline-flex;
    background: none;
    border: none;
}



@media(max-width:400px) {

    .ticket-overlay {
        position: absolute;
        top: 30%;
        left: 50%;
    }
}

@media(max-width:850px) {

    .ticket-overlay {
        width: 40%;
        top: 28%;
    }
}

@media(max-width:1280px) {

    .ticket-overlay {
        top: 32%;
    }
}

@media(max-width:620px) {
    .event-carousel-nav .owl-prev, .event-carousel-nav .owl-next {
        width: 60px;
        height: 60px;
    }

    .slider .owl-item.center .ticket-overlay {
        opacity: 1;
        pointer-events: auto;
    }
}


.btn-m-ticket {
    padding: 7px 10px;
    background: #ad7a2b;
    border-radius: 7px
}

    .btn-m-ticket .btn-text {
        color: white;
        font-size: 1rem
    }