@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500&display=swap');

body{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #000;
}
/*debut barre de scroll*/
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #101820; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #101820; 
}
/*fin barre de scroll*/
/*Nav debut*/
.nav-bar h1{
    margin: 0;
}
.nav-bar a{
    text-decoration: none;
    color: #000;
}
.nav-bar{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 50px 10px 50px;
    align-items: center;
    font-size: 18px;
}
.nav-bar .nav-links ul{
    display: flex;
    list-style-type: none;
    width: auto;
    justify-content: space-between;
}
.nav-links ul li a:hover{
    transition: 0.5s;
    color: #fff;
    padding: 8px 15px;
    background-color: #e77b15;
    border-radius: 20px;
}
.nav-links ul li{
    margin: 0 25px;
}
.nav-bar .menu i{
    font-size: 30px;
    position: absolute;
    top: 40px;
    right: 50px;
    cursor: pointer;
    color: #000;
}
.nav-bar .menu{
    display: none;
}
/*Nav fin*/

/*tools debut*/
.tool a{
    text-decoration: none;
    color: #000;
    padding: 14px 25px;
    border-radius: 25px;
}
.tool a:hover{
    border: 2px solid #2f4f4f;
    font-size: 17px;
    background-color: #2f4f4f7c;
    transition: 0.25s;
}
.tool .all-destinations{
    border: 2px solid #2f4f4f;
    font-size: 17px;
    background-color: #2f4f4f7c;
}
.tool{
    box-shadow: 2px 2px 2px rgb(204, 203, 203);
    border: 1px solid rgb(194, 192, 192);
    border-radius: 25px;
    width: 80vw;
    margin: 0 auto;
    height: 50px;
    font-size: 16px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.tool i{
    margin-right: 15px;
}
.dropbtn {
    box-shadow: 2px 2px 2px rgb(204, 203, 203);
    background: linear-gradient(90deg, #e2730a, #f1a706);
    color: #fff;
    padding: 16px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    width: 80vw;
    border-radius: 20px;
}
.dropdown {
    display: none;
    width: 80vw;
    margin-left: 10vw;
}
.dropdown-content {
    display: none;
    width: 80vw;
    position: absolute;
    background-color: #f9f9f9;
    z-index: 1;
    font-size: 16px;
    border-radius: 20px;
    box-shadow: 2px solid #f1f1f1;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 20px;
    text-align: center;
    border-bottom: 2px solid #f1f1f1;
}
.dropdown-content i{
    margin-right: 20px;
}
.dropdown-content a:hover {
    background-color: #f1f1f1;
}
.dropdown:hover .dropdown-content {
    display: block;
}

/*tools fin*/

/*Debut sites*/
.spots{
    margin: 20px 50px;
}
.spots .title{
    border-bottom: 3px solid #e77b15;
    width: fit-content;
    padding-right: 50px;
}
.cards{
    justify-content: space-around;
    display: flex;
    flex-wrap: wrap;
}
.cards .card{
    box-shadow: 2px 2px 2px rgb(204, 203, 203);
    border: 1px solid rgb(194, 192, 192);
    border-radius: 20px;
    background-color: #fff;
    font-size: 13px;
    width: fit-content;
    cursor: pointer;
    height: 320px;
    margin: 0 20px 20px 20px;
}
.cards .card .text p i{
    margin-right: 5px;
}
.cards img{
    border-radius: 20px 20px 0 0;
    width: 260px;
}
.cards .card .text{
    box-shadow: none;
    border: none;
    width: 90%;
    margin: auto;
}
.cards .card .hover{
    box-shadow: 2px 2px 2px rgb(204, 203, 203);
    border: 1px solid rgb(194, 192, 192);
    background-color: #fff;
    height: 400px;
    width: 260px;
    border-radius: 20px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cards .card .hover p i{
    margin-right: 5px;
}
.cards .card .hover .stars i{
    color: rgb(235, 194, 14);
}
.cards .card .hover iframe{
    margin-top: 10px;
}
.cards .card:hover{
    height: 400px;
}
.cards .card:hover .normal{
    position: absolute;
    z-index: 0;
    display: block;
    transition: all 0.5s ease;
}
.cards .card:hover .hover{
    display: flex;
}

/*Fin sites*/
@media screen and (max-width: 1050px){
    .nav-bar{
        padding: 0;
    }
    .nav-links{
        position: absolute;
        top: 0;
        left: 0;
        backdrop-filter: blur(5px);
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -100%;
        transition: all 0.5s ease;
    }
    .nav-links.mobile-menu{
        margin-left: 0;
    }
    .nav-bar .menu{
        display: block;
    }
    .nav-links ul{
        display: flex;
        flex-direction: column;
    }
    .nav-links ul li{
        margin: 25px 0;
        font-size: 1em;
    }
    .nav-bar button{
        width: 160px;
        height: 40px;
        font-size: 15px;
    }
    .nav-bar .logo{
        position: absolute;
        top: 40px;
        left: 50px;
    }
    .tools{
        margin-top: 100px;
        width: 90vw;
        font-size: 15px;
    }
    .tool{
        display: none;
    }
    .tools .dropdown{
        display: block;
    }

}