/* ===========================
   TOUR DETAILS
=========================== */

.tour-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.tourDescription {
    text-align: justify;
    font-size: 1.15rem;
    line-height: 2;
    color: #475569;
    font-weight: 400;
}



/* ===========================
   SPECIFICATIONS
=========================== */

.specifications{
    margin-top: 30px;
}

.specifications h4{
    font-size: 20px;
    font-weight: 700;

    color: #0f172a;

    margin-bottom: 15px;
}





/* ===========================
   RESERVATION CARD
=========================== */

.reservation-details{
    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 20px;

    padding: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.reservation-details img{
    width: 100%;
    max-width: 120px;

    display: block;
    margin: 0 auto 20px;

    border-radius: 16px;

    box-shadow: 0 10px 25px rgba(179,134,69,.35);
}

.reservation-details h1{
    font-size: 28px;
    text-align: center;

    margin-bottom: 25px;
}

/* ===========================
   CONFIRMATION PANEL
=========================== */

#confirmationPanel{
    border: 1px solid #e2e8f0;

    border-radius: 16px;

    padding: 20px;

    background: #f8fafc;
}

#confirmationPanel h2{
    font-size: 22px;

    margin-bottom: 20px;
}

.confirmationPanelButtons{
    display: flex;
    gap: 15px;

    justify-content: center;

    margin-top: 20px;
}


/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .main-tour-image{
        height: 280px;
    }

    .reservation-details{
        padding: 20px;
    }

    .tour-info-grid{
        grid-template-columns: 1fr;
    }

    .price-item{
        min-width: 100%;
    }
}