﻿.scroll-container {
    display: flex;
    overflow-x: auto; /* No scroll bar will show */
    scroll-behavior: smooth;
    padding: 10px;
}

    .scroll-container::-webkit-scrollbar {
        display: none; /* Hide the scrollbar */
    }

.imgCard {
    min-width: 300px; /* Fixing the width of each card */
    margin-right: 10px;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    color: white;
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

.scroll-wrapper {
    position: relative;
    overflow: hidden; /* This hides overflow on the container */
}

.card-body {
    text-align: start;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0px
}

.modal-footer {
    border-top: none;
}

.modal-body {
    padding-top: 0px
}

.paymentMethods {
    border: 1px solid var( --e-global-color-primary ) !important;
    border-radius: 5% !important;
    height: 32px !important;
    width: 100% !important;
}

.searchDiv {
    margin-top: 150px;
    margin-bottom: 30px
}

.searchParameter {
    background-color: var( --e-global-color-primary );
    border-radius: 2%;
    margin-top: 10%
}

.reserveParagraph {
    background-color: var( --e-global-color-secondary);
    width: 70%;
    margin: auto;
    display: flex;
    color: white;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0px 0px 5px 5px;
    text-align: center
}

.dateSelect {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 2.1;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    color: var( --e-global-color-primary )
}

.searchBtn {
    border-color: white;
    border-radius: 3%;
    margin-top: 20px;
    width: 100%;
}

.form-select {
    display: block;
    width: 100%;
}

.reserveText {
    margin-top: 12%;
    padding-inline-start: 2%;
    margin-bottom: 10%;
}

.imagesSection {
    margin-bottom: 100px;
    margin-top: 100px
}

.imagesDiv {
    background-color: whitesmoke;
    box-shadow: 0 4px 70px -2px lightgray;
}

.btn-secondary {
    background-color: var( --e-global-color-secondary) !important
}

    .btn-secondary:hover {
        background-color: black !important
    }

.searchBox {
    padding: 8% 10%
}

@media only screen and (max-width: 550px) {
    .hiddenDiv {
        display: none !important;
    }


    .paymentMethodImage {
        width: 50% !important;
        margin: auto;
        display: block;
    }

    .reserveText {
        margin: auto;
        display: block
    }
}

@media screen and (max-width: 1030px) {
    .bgimg {
        background-image: none !important;
    }

        .bgimg::before {
            background-image: none !important;
        }

    .reserveText {
        display: none !important;
    }
}

.paymentMethodsSection {
    margin-bottom: 50px;
    border-bottom: 15px solid var( --e-global-color-primary )
}

.paymentMethodImage {
    width: 100%
}

.travelLines {
    color: var( --e-global-color-black )
}

.icon-box-body {
    text-align: start
}
/* Black background for modal images */
.carousel-item {
    display: none;
    background-color: black;
    /* opacity: 0.9; */
    display: none !important;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full height of the viewport */
}

.active {
    display: block !important;
}

.carousel-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensures images fit properly */
}

/* Optional: Prevent images from stretching in smaller viewports */
.carousel-inner {
    height: 100%;
}

.scrolling-wrapper {
    overflow-x: hidden;
    white-space: nowrap;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

    .scrolling-wrapper.dragging {
        cursor: grabbing;
    }

.scroll-track {
    display: flex;
    gap: 1rem;
}

.card-item {
    flex: 0 0 450px; /* default desktop width */
}

@@media (max-width: 768px) {
    .card-item {
        flex: 0 0 100%; /* full width on mobile */
    }
}
