﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('satoshi.css');


/*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;
    }
}



.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;
}





.icon-btn {
    width: 48px;
    /* height: 48px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #BE842C;
    border-radius: 50%;
    padding: 10px;
}
.icon-custom-border {
    border: 1px solid #dcd6d1;
    border-radius: 50%;
    padding: 5px;
}




.btn-book-ticket {
    background-color: #AD792A;
    color: #fff;
    font-family: 'Satoshi-Bold';
    padding: 15px 25px;

}
    .btn-book-ticket:hover {
        background-color: #AD792A;
        color: #fff;
    }
@media(max-width:576px){
    .btn-book-ticket{
        padding:10px 20px;
    }
}

.btn-book-ticket img{
    margin-left:13px;
}

.txt-roboto{
    font-family:Roboto;
    letter-spacing:1px;
}

.pink {
    color: #c3062e;
}

.event-name{
    font-size:30px !important;
    font-family:Satoshi-Bold;

}
.ticket-amount{
    font-size:35px;
}








.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
}