/********** Template CSS **********/
:root {
    --primary: #3e004c;
    --secondary: #191C24;
    --light: #6C7293;
    --lightlight: #bcbcbc;
    --dark: #000000;
    --ghost: #932aab;

}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner 
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

***/





/* Reservation popup Styles */


.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(25, 28, 36, 0.8); /* Dark with opacity */
    padding-top: 60px;
    transition: opacity .5s ease-out;
}

.modal-content {
    background-color: #191C24;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #6c6c6c;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
    border-radius: 8px;
    text-align: center;
    font-family: 'Oswald', sans-serif; /* Matching the site's font */
    color: var(--secondary);
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 20%;
    color: #fff;
}

.modal-content p {
    font-size: 18px;
    color: #fff;
}

.modal-content a {
    display: block;
    margin: 10px auto;
    width: 40%;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    
    margin-bottom: 20%;
}

.modal-content a:hover {
    text-decoration: underline;
}

.close {
    color: #6c6c6c;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 0%;
    left: 93%;

}

.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}


/* pop up end */






#spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(29, 29, 29); /* Semi-transparent background */
    z-index: 99999;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    opacity: 0;
    visibility: hidden;
}

#spinner.show {
    visibility: visible;
    opacity: 1;
    transition: opacity .5s ease-out, visibility 0s linear 0s;
}

.triangle {
    position: relative;
    width: 10%;
    height: 10%;
    animation: pulse 1.5s infinite;
}

.triangle::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -32px;
    width: 0;
    height: 0;
    border-left: 32px solid transparent;
    border-right: 32px solid transparent;
    border-bottom: 64px solid var(--ghost);
    opacity: 0;
    animation: ghost 1.5s infinite;
}


@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes ghost {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}



.image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 16:9 aspect ratio */
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover; /* This ensures the image covers the container without distortion */
    z-index: -1;
}






.owl-carousel .owl-dots .owl-dot span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem; /* Adjust the size as needed */
    width: 40px; /* Ensure the dot has a width to center the icon */
    height: 40px; /* Ensure the dot has a height to center the icon */
    margin: 0 5px; /* Space between dots */
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    font-size: 2rem; /* Larger size for active or hovered dots */
}





/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    height: 38px;
    width: 50%;
}

.btn-square2 {
    height: 38px;
    width: 38px;
}

.btn-sm-square {
    width: 50%;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.btn-square2,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 40px 0;
    color: var(--light);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FFFFFF;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.shadow-sm .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--light);
    }
}

@media (min-width: 992px) {
    .navbar.shadow-sm .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item .btn {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    color: #3e004c !important;
    background: #fff;
    opacity: 0;
}

.service-item:hover .btn {
    right: 0;
    bottom: 0;
    opacity: 1;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 3px;
    color: var(--primary);
    background: var(--dark);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}
.team-item .team-social2 .btn {
    display: none;
    padding-top: 10%;
    margin: 0 3px;
    color: #FFFFFF;
    background: var(--primary);
}

/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/* Footer Styles */
.footer {
    background-color: var(--secondary);
    color: var(--light);
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.footer .col{
    width: 35% !important;
}
.footer h4 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}


.footer .btn-link {
    color: var(--light);
    font-size: 1rem;
    text-transform: capitalize;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer .btn-link:hover {
    color: #fff;
}

.footer .btn-lg-square {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer .text-primary {
    color: var(--primary) !important;
}

.footer .copyright {
    border-top: 1px solid var(--light);
    padding-top: 1rem;
    margin-top: 1rem;
}

.footer .border-bottom {
    border-bottom: 2px solid var(--primary);
    text-decoration: none;
    padding-bottom: 2px;
}

.footer .border-bottom:hover {
    color: var(--primary);
}


/* .footer .col to responsive */

@media (max-width: 991.98px) {
    .footer .col {
        width: 100% !important;
    }
    .team-item .team-social2 .btn {
        display: inline-flex;
    }
}