/*====================================
=========== GLOBAL ===================
====================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#edf1f7;
    font-family:'Poppins',sans-serif;
    display:flex;
    justify-content:center;
}

.wrapper{
    width:100%;
    max-width:500px;
    min-height:100vh;
    position:relative;
    overflow:hidden;
    background:#171B1C;
}


/*====================================
=========== HERO =====================
====================================*/

.tour-hero{

    position:fixed;
    top:0;

    width:100%;
    max-width:500px;

    height:360px;

    overflow:hidden;

    z-index:10;

    background:#000;

}

.tour-hero img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    user-select:none;

}

/*.tour-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.20),
        rgba(0,0,0,.45)
    );

}*/


/*====================================
=========== NAVBAR ===================
====================================*/

.tour-navbar{

    position:absolute;

    top:15px;
    left:15px;
    right:15px;

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.nav-btn{

    width:45px;
    height:45px;

    border:none;
    border-radius:14px;

    background:#00000047;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    font-size:18px;
    
    text-decoration: none;


}


/*====================================
=========== CONTENT ==================
====================================*/

.tour-content{
    position:relative;
    z-index:99;
    margin-top:300px;
    background:#171B1C;
    border-radius:35px 35px 0 0;
    padding:25px 15px 140px;
    min-height:100vh;

}

.drag-line{
    width:80px;
    height:6px;
    background:#dddddd69;
    border-radius:20px;
    margin:0 auto 25px;
}


/*====================================
=========== TITLE ====================
====================================*/

.tour-title{
    color:#fff;
    font-size:25px;
    font-weight:700;
    line-height:1.4;

}

.tour-rating{
    margin-top:10px;
    color:#FFD54A;
    font-size:18px;
}

.tour-rating i{
    margin-right:3px;

}

.tour-person{
    margin-top:10px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:13px;
}

.tour-person i{
    color:#FF0000;

}


/*====================================
=========== CARD =====================
====================================*/

.tour-card{
    margin-top:28px;
    background:rgba(255,255,255,.05);
    border-radius:22px;
    border:1px solid rgba(255,255,255,.08);
    padding:18px;
}

.tour-card-title{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:16px;
    font-weight:700;
}

.tour-card-title i{
    color:#FF0000;

}

.tour-divider{

    height:1px;

    background:rgba(255,255,255,.15);

    margin:18px 0;

}

.tour-description{

    color:#fff;

    font-size:12px;

    line-height:20px;

}

.tour-description p{

    margin-bottom:18px;

}


/*====================================
=========== VIEWER ===================
====================================*/

.tour-viewer{

    background:rgba(255,255,255,.05);

    border-radius:17px;

    border:1px solid rgba(255,255,255,.08);

    padding:25px;

    display:flex;

    justify-content:center;

    gap:14px;

    color:#fff;

    margin-top:25px;

    font-size:14px;

}

.tour-viewer i{

    color:#FF0000;

    font-size:17px;

    margin-top:2px;

}


/*====================================
=========== BOTTOM ===================
====================================*/

.tour-bottom{
    position:fixed;
    bottom:0;

    width:100%;
    max-width:500px;

    background:rgba(23,27,28,.75);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    padding:10px 18px 10px;

    border-radius:30px 30px 0 0;

    border-top:1px solid rgba(255,255,255,.08);

    box-shadow:0 -5px 20px rgba(0,0,0,.08);

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:0;

    z-index:999;
}

.tour-price small{

    color:#fff;

    font-size:12px;

}

.tour-price h2{

    color:#FF0000;

    font-size:20px;

    margin-top:2px;

}

.tour-btn{

    height:50px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#7d0202,#FF0000);

    color:#fff;

    padding:0 25px;

    font-size:15px;

    font-weight:600;

    font-family:'Poppins',sans-serif;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    cursor:pointer;

}

.tour-btn i{

    font-size:18px;

}


/*====================================
=========== MOBILE ===================
====================================*/

@media(max-width:500px){

    .tour-hero{

        height:320px;

    }

    .tour-content{

        margin-top:283px;

    }

    .tour-title{

        font-size:20px;

    }

    .tour-btn{

        padding:0 20px;

        font-size:14px;

    }

}

/* =========================
   RATING + SHARE
========================= */

.tour-rating-row{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;

}

.share-btn{

    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.1);

    color:#fff;

    cursor:pointer;

    transition:.25s;

}

.share-btn:hover{

    background:#ff0000;

    transform:scale(1.05);

}

.share-btn i{

    font-size:16px;

}