:root {
    --primary: #FAB23B;
    --primary-hover: #fab13bbe;
}

body {
    font-family: "Lexend", sans-serif;
}

nav {
    transition: 0.3s ease;
}

.hero-content {
    top: 30vh;
    left: 0;
}

.signin-btn {
    color: var(--primary);
}

.signin-btn:hover {
    color: var(--primary-hover);
}

.bg-overlay {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.category-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card h5 {
    color: var(--primary);
}

.category-card:hover {
    transform: translateY(-5%);
}

.footer-link {
    font-weight: 200;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary) !important;
}

@media only screen and (max-width: 768px) {
    .slider-text {
        width: 100%;
    }

    .slider-text p {
        font-size: medium;
    }

    .logo-img[width="120"] {
        width: 80px;
    }
}

.book-now-btn {
    background-color: var(--primary);
    border: none;
}

.book-now-btn:hover {
    background-color: var(--primary-hover);
}


.filter-btn {
    transition: transform 0.1s ease;
}

.filter-btn-clicked {
    transform: scale(0.95);
}

.filter-btn:active {
    transform: scale(0.95);
}



html,
body {
    position: relative;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Styling for Swiper Buttons */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    /* Adjust size as needed */
    height: 40px;
    /* Adjust size as needed */
    margin-top: -20px;
    /* Half of height to center vertically */
    z-index: 10;
    cursor: pointer;
    background-color: white;
    /* Semi-transparent white background */
    border-radius: 50%;
    /* Circular buttons */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    /* Arrow color */
    font-weight: bold;
    transition: background-color 0.3s ease;
    /* Smooth hover effect */
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    /* Adjust arrow size */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.9);
    /* Slightly darker background on hover */
}

/* Styling for Swiper Pagination Dots  */
.swiper-pagination {
    position: absolute;
    text-align: center;
    bottom: 10px;
    /* Adjust distance from bottom */
    width: 100%;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddddddd5;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
}

.scrollable-content {
    height: calc(100vh - 175px);
    overflow: auto;
}

.card-carousel-indicators {
    flex: 1;
    display: flex;
    align-items: flex-end;
    z-index: 2;
    /* Makes sure it's above the images */
    position: relative;
}

.card{
    border: none;
    border-radius: 25px;
}

.card-carousel-indicators-span {
    height: 5px;
    width: 100%;
    background-color: #333333bd;
    /* background-color: white; */
    transition: background-color 0.3s;
    display: block;
    border-radius: 4px;
}

.card-carousel-indicators:hover .card-carousel-indicators-span {
    /* background-color: #333333bd; */
    background-color: white;
    cursor: pointer;
}


@keyframes shake-clock {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.flash-sale-clock {
    display: inline-block;
    animation: shake-clock 0.5s infinite ease-in-out;
    /* Now it works! */
    transform-origin: center bottom;
    margin-right: 5px;
}