/* =========================================
   TOURS PAGE
========================================= */


/* =========================================
   HERO
========================================= */

.tour {
    position: relative;

    width: 100%;

    text-align: center;
    color: white;

    overflow: hidden;
}


.tour-us-img {
    display: block;

    width: 100%;
    height: 600px;

    object-fit: cover;
    object-position: center;
}


/* Centered hero text */

.tour-us-text {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 900px;

    text-align: center;
}


/* Hero title */

.title-tour {
    font-size: 5rem;
    line-height: 1.1;

    text-shadow: 2px 2px 4px #000000;
}


/* Hero subtitle */

.under-title-tour {
    margin-top: 10px;

    font-size: 2rem;
    line-height: 1.4;

    text-shadow: 2px 2px 4px #000000;
}


/* =========================================
   TOURS GRID
========================================= */

.tours-grid {
    width: 100%;

    padding-bottom: 40px;
}


.tours-grid-inside {
    display: flex;
    flex-direction: column;

    width: 100%;
}


/* Rows containing tour cards */

.tours-grid-inside-second,
.tours-grid-inside-first {
    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: stretch;

    gap: 40px;

    width: 92%;
    max-width: 1380px;

    margin-left: auto;
    margin-right: auto;
}


/* Main section title */

.tours-grid-title {
    text-align: center;

    font-size: 3rem;
    line-height: 1.2;

    margin-top: 50px;
}


/* Section subtitle */

.tours-grid-under-tite {
    width: 90%;
    max-width: 800px;

    text-align: center;

    margin: 10px auto 60px;

    font-size: 1.2rem;
    line-height: 1.6;
}


/* =========================================
   TOUR CARDS
========================================= */

.inside-card {
    min-height: 800px;

    width: 100%;
    max-width: 650px;

    background-color: #fff;

    /* Fixed typo from padding: 10x */
    padding: 10px 10px 25px;

    margin-bottom: 30px;

    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 4px 8px 0 rgba(0, 0, 0, 0.2),
        0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


/* =========================================
   CARD IMAGE
========================================= */

.inside-card-img {
    position: relative;

    width: 100%;
}


.inside-card-img-tour {
    display: block;

    height: 400px;
    width: 100%;

    object-fit: cover;

    border-radius: 10px;
}


/* =========================================
   PRICE BADGE
========================================= */

.Price {
    position: absolute;

    top: 40px;
    right: 10px;

    border-radius: 20px;

    background: #03273F;

    color: white;

    padding: 6px 30px;

    font-size: 1rem;
    font-weight: bold;

    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);

    z-index: 10;

    display: inline-block;

    pointer-events: none;
}


/* =========================================
   CARD TITLE
========================================= */

.inside-card-title {
    margin: 20px 30px 10px;

    font-size: 1.6rem;
    line-height: 1.3;
}


/* =========================================
   CARD INFORMATION
========================================= */

.inside-card-content-top {
    margin-top: 20px;

    display: flex;
    flex-direction: row;

    justify-content: space-between;
    align-items: flex-start;

    gap: 30px;

    padding: 0 30px;
}


/* Support both possible column class names */

.inside-card-content-first,
.inside-card-content-second {
    display: flex;
    flex-direction: column;

    gap: 12px;
}


.content-first {
    display: flex;
    flex-direction: row;

    align-items: center;

    gap: 10px;

    margin: 0;
}


.content-first p {
    margin: 0;

    font-size: 1rem;
    line-height: 1.5;
}


/* Small icons */

.miniature {
    height: 20px;
    width: 20px;

    flex-shrink: 0;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.highlights,
.inside-card-content {
    margin-left: 30px;
    margin-right: 30px;
}


.highlights {
    margin-top: 20px;
}


.highlights-title {
    font-size: 1.4rem;
    line-height: 1.3;
}


.li-highlights {
    margin-top: 8px;
    margin-left: 15px;

    font-size: 1rem;
    line-height: 1.5;
}


/* =========================================
   BOOK TOUR BUTTON
========================================= */

.book-tour {
    display: flex;

    align-items: center;
    justify-content: center;

    width: calc(100% - 60px);
    max-width: 500px;

    min-height: 45px;

    margin: 25px auto 0;

    padding: 10px 20px;

    background-color: #03273F;

    color: #fff;

    font-size: 1rem;

    border-radius: 10px;
    border: none;

    cursor: pointer;

    text-decoration: none;
    text-align: center;

    transition: background-color 0.3s ease;
}


#btn-tour-first {
    margin-top: 20px;
}


#btn-tour-second {
    margin-top: 40px;
}


.book-tour:hover {
    background-color: #07476d;
}


/* =========================================
   CUSTOM EXPEDITIONS
========================================= */

.custom-expeditions {
    background-color: #03273F;

    color: #fff;

    width: 90%;
    max-width: 1200px;

    min-height: 300px;

    margin: 60px auto 70px;

    padding: 45px 30px;

    border-radius: 30px;

    text-align: center;
}


/* Custom expedition title */

.custom-expeditions-title {
    margin: 15px 0 20px;

    font-size: 2rem;
    line-height: 1.3;
}


/* Custom expedition text */

.custom-expeditions-text {
    width: 90%;
    max-width: 800px;

    margin: 0 auto;

    font-size: 1.2rem;
    line-height: 1.6;
}


/* Custom expedition button */

.custom-expeditions-btn {
    width: 320px;
    max-width: 90%;

    min-height: 55px;

    border-radius: 10px;

    margin: 30px auto 0;

    padding: 12px 20px;

    font-size: 1rem;

    background-color: #e6e6e6;

    color: #000000;

    border: none;

    cursor: pointer;

    text-align: center;

    text-decoration: none;

    display: flex;

    align-items: center;
    justify-content: center;

    transition: background-color 0.3s ease;
}


.custom-expeditions-btn:hover {
    background-color: #07476d;
    color: #fff;
}


/* =========================================
   TABLET / MOBILE ≤900px
========================================= */

@media (max-width: 900px) {

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }


    html,
    body {
        width: 100%;
        max-width: 100%;

        overflow-x: hidden;
    }


    /* =========================================
       HERO
    ========================================= */

    .tour {
        width: 100%;

        overflow: hidden;
    }


    .tour-us-img {
        width: 100%;

        height: 320px;

        object-fit: cover;

        display: block;
    }


    .tour-us-text {
        width: 90%;

        top: 50%;
        left: 50%;

        text-align: center;
    }


    .title-tour {
        font-size: 3rem;
    }


    .under-title-tour {
        font-size: 1.4rem;
    }


    /* =========================================
       TOURS TITLE
    ========================================= */

    .tours-grid {
        width: 100%;

        padding: 0 15px 30px;
    }


    .tours-grid-title {
        font-size: 2rem;

        margin-top: 30px;
    }


    .tours-grid-under-tite {
        font-size: 1rem;

        margin-bottom: 40px;
    }


    /* =========================================
       CARD CONTAINERS
    ========================================= */

    .tours-grid-inside-first,
    .tours-grid-inside-second {
        width: 100%;

        margin: 0;

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 25px;
    }


    /* =========================================
       CARD
    ========================================= */

    .inside-card {
        width: 100%;
        max-width: 650px;

        height: auto;
        min-height: 650px;

        margin: 0 auto 25px;

        padding: 0 0 25px;

        overflow: hidden;
    }


    /* =========================================
       CARD IMAGE
    ========================================= */

    .inside-card-img {
        width: 100%;

        height: 240px;

        overflow: hidden;
    }


    .inside-card-img-tour {
        width: 100%;

        height: 240px;

        object-fit: cover;

        display: block;

        border-radius: 10px 10px 0 0;
    }


    /* =========================================
       PRICE
    ========================================= */

    .Price {
        top: 20px;
        right: 10px;

        padding: 5px 20px;

        font-size: 0.9rem;
    }


    /* =========================================
       CARD TITLE
    ========================================= */

    .inside-card-title {
        text-align: center;

        font-size: 1.4rem;

        margin: 15px 10px;
    }


    /* =========================================
       INFORMATION
    ========================================= */

    .inside-card-content-top {
        width: 100%;

        display: flex;
        flex-direction: row;

        justify-content: space-between;
        align-items: flex-start;

        padding: 0 25px;

        margin-top: 20px;

        gap: 10px;
    }


    .inside-card-content-first,
    .inside-card-content-second {
        width: 50%;

        display: flex;
        flex-direction: column;

        gap: 15px;
    }


    .content-first {
        display: flex;
        flex-direction: row;

        align-items: center;

        gap: 8px;

        margin: 0;
    }


    .content-first p {
        margin: 0;

        font-size: 0.95rem;
    }


    .miniature {
        width: 18px;
        height: 18px;

        flex-shrink: 0;
    }


    /* =========================================
       HIGHLIGHTS
    ========================================= */

    .highlights {
        margin: 20px 20px 0;
    }


    .highlights-title {
        font-size: 1.3rem;
    }


    .li-highlights {
        font-size: 0.95rem;

        margin-top: 8px;
    }


    /* =========================================
       BOOK BUTTON
    ========================================= */

    .book-tour {
        width: 85%;
        max-width: 500px;

        min-height: 45px;

        margin: 25px auto 0;

        display: flex;

        justify-content: center;
        align-items: center;

        padding: 10px 20px;

        font-size: 1rem;
    }


    #btn-tour-second {
        margin-top: 25px;
    }


    /* =========================================
       CUSTOM EXPEDITION
    ========================================= */

    .custom-expeditions {
        width: 90%;

        height: auto;

        margin: 50px auto;

        padding: 30px 20px;

        text-align: center;

        border-radius: 20px;
    }


    .custom-expeditions-title {
        margin: 10px 0;

        font-size: 1.8rem;
    }


    .custom-expeditions-text {
        width: 100%;

        margin: 15px 0;

        font-size: 1rem;
    }


    .custom-expeditions-btn {
        width: 85%;
        max-width: 280px;

        min-height: 45px;

        margin: 25px auto 0;

        display: flex;

        justify-content: center;
        align-items: center;

        padding: 10px 20px;

        font-size: 0.95rem;
    }
}


/* =========================================
   SMALL PHONES ≤500px
========================================= */

@media (max-width: 500px) {


    /* =========================================
       HERO
    ========================================= */

    .tour-us-img {
        height: 250px;
    }


    .title-tour {
        font-size: 2.2rem;
    }


    .under-title-tour {
        font-size: 1.1rem;
    }


    /* =========================================
       TITLES
    ========================================= */

    .tours-grid-title {
        font-size: 1.8rem;
    }


    .tours-grid-under-tite {
        font-size: 0.95rem;
    }


    /* =========================================
       CARD
    ========================================= */

    .inside-card {
        min-height: 620px;
    }


    .inside-card-img,
    .inside-card-img-tour {
        height: 200px;
    }


    .inside-card-title {
        font-size: 1.3rem;
    }


    /* =========================================
       CARD INFORMATION
    ========================================= */

    .inside-card-content-top {
        padding: 0 15px;
    }


    .content-first p {
        font-size: 0.85rem;
    }


    .miniature {
        width: 16px;
        height: 16px;
    }


    /* =========================================
       HIGHLIGHTS
    ========================================= */

    .highlights-title {
        font-size: 1.2rem;
    }


    .li-highlights {
        font-size: 0.9rem;
    }


    /* =========================================
       BOOK BUTTON
    ========================================= */

    .book-tour {
        min-height: 40px;

        font-size: 0.9rem;
    }


    /* =========================================
       CUSTOM EXPEDITION
    ========================================= */

    .custom-expeditions {
        width: 95%;

        padding: 25px 15px;
    }


    .custom-expeditions-title {
        font-size: 1.7rem;
    }


    .custom-expeditions-text {
        font-size: 0.95rem;
    }


    .custom-expeditions-btn {
        min-height: 42px;

        font-size: 0.9rem;
    }
}