@import url('https://fonts.googleapis.com/css2?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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

.bebas-neue {
    font-family: "Bebas Neue";
    letter-spacing: 5px;
}
 

.heroSectionDiv {
    height: 25%;
}

.text-item {
    opacity: 0;
    font-size: 32px;
}
.text-ul-items {
    opacity: 0;
    font-size: 16px;
}
.marginContainer{
    margin-top: 100px;
}

.footerDesc{
    position: fixed;
    bottom: 10px;
    right: 0px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    padding: 12px;
}

.footerDesc a{
    color: #ffffff;
    text-decoration: underline;
}

.footerBtn{
    position: absolute;
    bottom: 30%;
    width: 100%;
}

@media (min-width: 992px) {
    .heroSectionDiv {
        height: 75%;
    }    
    .text-item {
        opacity: 0;
        font-size: 62px;
    }
    .text-ul-items {
        opacity: 0;
        font-size: 22px;
    }
    .marginContainer{
        margin-top: 0px;
    }    
    .footerDesc{
        right: 10px;
        bottom: 40px;
    }
    .slotItemBox{
        width: 200px;
    }
}


/* add new booking css */

.custom-radio {
    display: none;
}

.custom-radio-label {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-right: 10px;
    color: black;
    transition: all 0.3s ease;
}

.custom-radio:checked + .custom-radio-label {
    background-color: #ff6347;
    color: white;
}

.custom-radio-label:hover {
    background-color: #e0e0e0;
}

.custom-radio:not(:checked) + .custom-radio-label {
    color: black;
    border: 1px solid #D0D5DD;
}

.slotItemBox{
    padding: 12px;
    cursor: pointer;
    border: 1px solid #000;
    color: #000;
    width: 165px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    align-items: center;
    white-space: nowrap;
    text-wrap: nowrap;
    stroke: #1570EF !important;
}

.slotItemBox.active{
    border: 1.5px solid #1570EF !important;
    background: #1570EF !important;
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
}

.slotItemBox[readonly] {
    border-color: #D0D5DD !important;
    color: #D0D5DD !important;
    cursor: not-allowed !important;
    stroke: #D0D5DD !important;
}

.slotBookDesc{
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

#booknowBtn {
    transition: all 0.3s ease-in-out;
}

    .BookingDivCard{
        padding: 8px !important;
        border-radius: 6px !important;
        background: #121212; 
        background: linear-gradient(
            135deg,
            #121212 25%,
            #1a1a1a 25%,
            #1a1a1a 50%,
            #121212 50%,
            #121212 75%,
            #1a1a1a 75%,
            #1a1a1a
        );
        background-size: 40px 40px;
        animation: move 4s linear infinite;
    }
    
    .BookingDivCard::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px
          ),
          linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
        background-size: 20px 20px;
        pointer-events: none;
    }
    
    @keyframes move {
        0% {
        background-position: 0 0;
        }
        100% {
        background-position: 40px 40px;
        }
    }
  

    .BookingDivCardTitle{
        font-size: 15px;
        font-weight: 400;
        text-wrap: nowrap;
        display: flex;
        align-items: center;
        color: #FFFFFF;
    }

    .BookingDivCardDesc{
        font-size: 13px;
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: end;
        color: #FFFFFF;
    }

    .cookieCard {
        width: 300px;
        height: 200px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
        padding: 20px;
        position: relative;
        overflow: hidden;
    }
    .cookieCard::before {
        width: 150px;
        height: 150px;
        content: "";
        position: absolute;
        z-index: 1;
        border-radius: 50%;
        right: -25%;
        top: -25%;
    }

    .shadow_btn {
        padding: 10px 20px;
        border: none;
        font-size: 17px;
        color: #fff;
        border-radius: 7px;
        letter-spacing: 1px;
        font-weight: 700;
        text-transform: uppercase;
        transition: 0.5s;
        transition-property: box-shadow;
    }
    
    .shadow_btn {
        background: #12B76A;
        box-shadow: 0 0 25px #12B76A;
    }
    
    .shadow_btn:hover {
        box-shadow: 0 0 5px #12B76A,
                    0 0 25px #12B76A,
                    0 0 50px #12B76A,
                    0 0 100px #12B76A;
    }
        