html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

* {
    font-family: 'El Messiri', sans-serif;
}

a {
    color: var(--links-color);
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

a {
    text-decoration: none;
}
/* Top Bar */
.top-bar {
    background-color: #fff;
}

    .top-bar img {
        max-height: 80px;
    }

    .top-bar a img {
        max-height: 100px;
        margin: 0 10px;
        padding: 10px;
    }
/* Navbar */
.navbar {
    background-color: #f4f5f4;
    border-top: 1px solid grey;
    box-shadow: inset 0 8px 10px -10px rgba(0, 0, 0, 0.5);
}

    .navbar a {
        color: var(--nav-color);
        font-weight: bold;
    }

.navbar-toggler {
    border: none;
    background-color: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(153,195,135)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
    border: 2px solid rgb(153,195,135)
}

/* First Container */
.first-container {
    background-color: #f4f5f4;
    padding: 0 0 30px 0;
}

/* Colored Bar */
.colored-bar {
    background-color: var(--main-color);
    padding: 10px 0;
}

    .colored-bar h4 {
        margin: 0;
        text-align: center;
        color: #fff;
    }

/* Best Trips */
h2 {
    margin-top: 30px;
    text-align: right;
    font-weight: bold;
}

.card {
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 10px;
}

.card-text {
    text-align: center;
    margin: 0;
    font-weight: bold;
}

/* Buttons */
.button-container .btn {
    display: block;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: var(--main-color);
    border: none;
    color: inherit;
    cursor: pointer;
    border-radius: 20px;
    font-weight: bold;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: var(--footer-color);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: var(--footer-font-color);
}

    footer .social-icons {
        align-items: center;
        justify-content: center;
        display: flex;
    }

    footer h4 {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    footer a {
        /* margin: 25px 25px; */
        font-size: large;
    }

    footer .footer-links {
        margin: 25px 25px;
        justify-content: center;
        display: grid;
    }

    footer p {
        margin: 0 0;
    }

.logo-img {
    width: 200px;
    height: auto;
}

/* Slider */
/* .carousel {
    width: 100%;
    height: auto
    overflow: hidden;
  } */


/* First Cards */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-img {
    width: 100%;
    height: auto;
}

.card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    text-align: center;
    width: 80%;
}

.card-word {
    color: #fff;
    font-size: 36px;
    -webkit-text-stroke: 1px rgb(255, 255, 255);
}


/* Second Cards */

.card {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
}

    .card img {
        width: 100%;
        height: auto;
    }

.card-name {
    margin-top: 10px;
}

.rating {
    display: flex;
    justify-content: center;
}

.star {
    width: 20px;
    height: 20px;
    background: url('~/assets/Icons/icons8-star-48 (2).png') no-repeat center;
    background-size: cover;
    margin-right: 5px;
}

/* Responsive Styles */

/* Small devices (up to 576px) */
@media (max-width: 576px) {
    /* Navbar */
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .top-bar a img {
        /* max-height: 20px; */
        margin-left: 5px;
    }

    /* Best Trips */
    h2 {
        text-align: center;
    }

    /* First Cards */
    .card {
        width: 100%;
    }

    .card-overlay {
        width: 100%;
    }
    /* 
  .carousel {
    height: 150px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  } */
}

/* Medium devices (up to 768px) */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    /* Slider */
    .slider {
        height: 400px;
    }

    /* First Cards */
    .card {
        width: 100%;
    }

        .card img {
            width: 100%;
            height: auto;
        }
}

/* Large devices (up to 992px) */
@media (max-width: 992px) {
    /* Navbar */
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
    }

    .nav-item {
        margin-bottom: 10px;
    }

    .top-bar a img {
        /* max-height: 30px; */
        margin-left: 10px;
    }

    /* Best Trips */
    h2 {
        text-align: center;
    }

    /* First Container */
    .first-container {
        padding: 20px 0;
    }

    /* Slider */
    .slider {
        height: 500px;
    }
}

/* Extra-large devices (up to 1200px) */
@media (max-width: 1200px) {
    /* Navbar */
    .navbar {
        flex-direction: column;
        align-items: center;
    }
}


.copy-right {
    text-align: center;
    padding: 0 0;
    margin: 0 0;
    background-color: #f2f2f2;
}

.w-35 {
    width: 35%;
}


.image-collage img {
    width: -webkit-fill-available;
}


/*
#carouselExampleAutoplaying img {
    height: 100vh;
}

*/
#loading {
    display: none;
    width: 100%;
    height: 100vh;
    background-color: #00000057;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99999999;
}

    #loading .inner {
        display: flex;
        justify-content: center;
        align-items: center;
    }

.payment-icons div {
    width: 54px;
    height: 36px;
    padding: 2px;
}

    .payment-icons div img {
        width: 100%;
        height: 100%;
        background-color: #fffefe;
        border-radius: 5px;
    }


.details-table2 {
    display: none;
}

@media (max-width: 767px) {
    .details-table1 {
        display: none;
    }

    .details-table2 {
        display: grid;
        padding: 25px 0 25px 0;
        background-color: antiquewhite;
        align-items: center;
        justify-content: center;
        border: solid 0.5px lightgray;
    }

        .details-table2 div {
            width: 100%;
            display: grid;
            text-align: center;
            justify-content: center;
            padding: 5px;
        }

    .hotel-stars-details {
        display: grid;
        justify-content: center;
        align-items: center;
    }
}


.contact-us-text {
    margin-top: 20px;
}

.contact-us-btn {
    margin-top: 20px;
}
