@media only screen and (max-width: 768px) {
    header .navbar-brand {
        padding-left: 1rem;
    }
    .section-1 .row .col-md-6 .panel {
        position: initial;
        width: initial;
        height: initial;
    }
    .section-2 .cover {
        background-position: -25vmin -10vmin;
    }
    .numbers .rect {
        width: 10rem;
        height: 8rem;
    }
    .numbers .rect h1 {
        font-size: 2rem;
    }

    .section-3 {
        height: inherit;
        padding: 10vmin !important;
    }
    .section-3 .row h1 {
        padding: 6vmin 4vmin;
    }
    .section-3 .platform .col-md-6 {
        text-align: center !important;
    }
    .section-3 .desktop i {
        font-size: 8vmin;
    }
    .section-4 .carousel-item {
        padding-left: 0.6rem;
    }
    footer .row .col-md-2 {
        margin-top: 8vmin;
    }
}

/* screen size 375px */

@media only screen and (max-width: 375px) {
    .section-4 .card {
        width: 18em;
    }
}

@media only screen and (max-width: 320px) {
    .section-4 .carousel-inner {
        margin-left: -4vmin;
    }
}



.reservation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .reservation-item {
        flex-direction: column; /* Stack elements vertically */
        align-items: flex-start; /* Align content to the left */
    }

    .reservation-info {
        margin-bottom: 10px; /* Space between info and button */
    }

    .reservation-item a {
        width: 100%; /* Make button full width on small screens */
        text-align: center;
    }
}

:root {
    --bggradient-desktop: url("../background.png");
    --bggradient-mobile: linear-gradient(to bottom, #000000, #ffffff);
}


.mobile-version {
    display: none;
}

.desktop-version {
    display: block;
    
}


