/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
body {
    /*width: 80%;*/
    margin: auto;
    padding: 50px 0;
    background: #FDFCF2;
    font-family: "Albert Sans", sans-serif;
}

.destinations-wrapper {
    /*max-width: 944px;*/
    width: 80%;
    margin: 30px auto;
}

.destination-form-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 16px 24px;
    border-radius: 4px;
}

.destination-form-inner > div {
    width: 50%;
}

.destination-available-btn button {
    width: 100%;
    background: #83230A;
    border: 1px solid #83230A;
    padding: 16px;
    color: #fff;
    font-family: "Albert Sans";
    font-size: 16px;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
}

select.destination-locations {
    width: 100%;
    border: none;
    color: #505968;
    font-size: 16px;
    font-family: 'Albert Sans';
    font-weight: 600;
}

select.destination-locations:focus {
    outline: none;
}

/*All trips css*/
.all-travel-types-main {
    width: 80%;
    margin: 30px auto;
}

.all-travel-types-list-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trip-featured-image img {
    width: 100%;
}

.all-travel-types-filter-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.all-travels-filter-button {
    max-width: 124px;
    width: 100%;
}

.all-travels-main-title {
    width: calc(100% - 124px);
    background: #FFFFFF;
    border: 1px solid #E9EAEC;
    border-radius: 2px;
    padding: 0 16px;
    height: 52px;
    display: flex;
    align-items: end;
    justify-content: start;
}

.all-travel-types-list-item {
    position: relative;
}

.trip-duration-price {
    background: rgba(22, 7, 3, 0.8);
    color: #FFFFFF;
    padding: 6px 10px;
    width: fit-content;
    border-radius: 0 5px 5px 0;
    position: absolute;
    top: 12px;
    font-family: 'Albert Sans';
}

p.trip-duration {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
}

p.trip-price {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
}

.travel-tag {
    background: #AF2F0D;
    color: #fff;
    padding: 6px 10px;
    width: fit-content;
    position: absolute;
    top: 12px;
    right: 8px;
    border-radius: 16px;
    font-family: 'Albert Sans';
    font-weight: 600;
}

.trip-featured-image {
    margin-bottom: 20px;
}

.trip-featured-image img {
    border-radius: 5px;
}

.trip-content .trip-title {
    color: #1D2635;
    margin: 0;
    margin-bottom: 20px;
    font-family: 'Albert Sans';
    font-weight: 700;
    font-size: 19px;
}

p.trip-description {
    margin: 0;
    margin-bottom: 10px;
    font-family: 'Albert Sans';
    font-size: 13px;
    font-weight: 400;
    color: #1D2635;
    line-height: 1.4;
}

.readmore-wrapper {
    text-align: right;
}

a.trip-read-more {
    color: #AF2F0D;
    font-size: 13px;
    font-family: 'Albert Sans';
    font-weight: 600;
    text-decoration: none;
}

.all-travel-types-pagination {
    margin-top: 40px;
}

.all-travel-types-pagination-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
}

a.all-travel-pagination-prev-btn, a.all-travel-pagination-next-btn {
    color: #334155;
    text-decoration: none;
    border: 1px solid #E2E8F0;
    background: #fff;
    border-radius: 42px;
    font-size: 16px;
    font-family: 'Albert Sans';
    font-weight: 600;
    padding: 16px 24px;
}

.all-travel-types-pagination-numbers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
    gap: 20px;
}

a.all-travel-pagination-number {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Albert Sans';
    color: #1D2635;
    text-decoration: none;
    background: transparent;
    border: 1px solid #E9EAEC;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.all-travel-pagination-number.active {
    background: #AF2F0D;
    color: #fff;
    border: none;
}

.all-travels-filter-button button {
    border: 1px solid #E9EAEC;
    background: #fff;
    border-radius: 2px;
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Albert Sans';
    color: #334155;
}

.all-travels-main-title h2 {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Albert Sans';
    color: #AF2F0D;
    display: inline-block;
    border-bottom: 3px solid #AF2F0D;
    margin: 0;
}

.all-travel-types-filter-nav-main {
    margin-bottom: 40px;
}

/*Filter Modal css */
.filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.filter-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.filter-main-wrapper {
    position: relative;
    z-index: 10;
    max-width: 450px;
    width: 100%;
    background: #fff;
    padding: 32px 32px 44px 32px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.filter-apply-button button {
    width: 100%;
    background: #83230A;
    border: 1px solid #83230A;
    border-radius: 2px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
    margin-top: 16px;
}

/*Single Trip*/
.trip-details-single-main-wrapper{
    width: 80%;
    margin: 30px auto;
}
.trip-details-breadcrumbs a, .trip-details-breadcrumbs span {
    color: #505968;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Albert Sans';
    font-weight: 400;
}

.trip-details-title-social {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.trip-details-title-social h1 {
    color: #0E131A;
    font-size: 40px;
}

.trip-details-social-icons {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.trip-details-featured-image img {
    width: 100%;
    border-radius: 4px;
}

.trip-details-featured-image {
    overflow: hidden;
}

.trip-details-image-pricing-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.trip-details-pricing-inner {
    background: #FBF8DF;
    box-shadow: 0px 4px 0px 0px rgba(131, 35, 10, 1) inset;
    border: 1px solid #F3E99E;
    border-radius: 4px;
    padding: 24px;
}

.trip-details-pricing-inner button {
    background: #83230A;
    border: 1px solid #83230A;
    padding: 16px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 2px;
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
}

p.trip-details-duration {
    font-size: 13px;
}

p.trip-details-price {
    font-size: 16px;
}

p.trip-details-price span {
    color: #0E131A;
    font-size: 23px;
    font-weight: 700;
}

.trip-details-overview > * {
    margin: 0;
}

.trip-details-overview {
    border: 1px solid rgba(233, 234, 236, 1);
    background: #fff;
    border-radius: 2px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.trip-details-overview button {
    background: #AF2F0D;
    border: 1px solid #AF2F0D;
    color: #fff;
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 12px 30px;
}

/*COntact modal*/
.contact-suggestion-modal {
    display: none; /* hidden by default */
    position: fixed; /* fix it on screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* high enough to appear above everything */
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7); /* semi-transparent overlay */
    z-index: 1;
}

.contact-modal-content {
    position: relative;
    z-index: 2; /* above overlay */
    max-width: 600px;
    margin: 100px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}

.contact-form-main-wrapper {
            max-width: 800px;
            width: 100%;
            background: #fff
        }

        .title-close-button {
            border-bottom: 1px solid #E9EAEC;
            position: relative;
            text-align: center;
            padding: 14px;
        }

        span.close-button {
            position: absolute;
            right: 12px;
            top: 32%;
            transform: translateX(-50%);
        }

        .contact-form-main-elements {
            padding: 24px 32px 44px 32px;
        }

        .contact-form-title * {
            margin: 0;
        }
        .contact-form-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .contact-form-fields-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            border-bottom: 1px solid #E9EAEC;
            padding-bottom: 24px;
        }

        .contact-form-field-item > * {
            display: block;
        }

        .contact-form-field-item label {
            font-size: 16px;
            font-weight: 600;
            font-family: 'Albert Sans';
            color: #505968;
            margin-bottom: 10px;
        }

        .contact-form-field-item input {
            border: 1px solid #A7ACB3;
            border-radius: 6px;
            padding: 16px;
            width: 100%;
        }

        .form-selected-trip {
            background: #F8EEEE;
            padding: 24px;
            border-radius: 8px;
            color: #0E131A;
            font-family: 'Albert Sans';
        }

        .form-selected-trip > * {
            margin: 0;
        }

        .form-selected-trip h4 {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .form-selected-trip h3 {
            font-size: 32px;
            font-weight: 700;
        }

        .contact-form-submit-wrapper {
            padding: 14px 24px;
            box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-flow: row wrap;
            justify-content: space-between;
            align-items: center;
        }

        .contact-form-submit-btn button {
            background: #83230A;
            border: 1px solid #83230A;
            border-radius: 2px;
            padding: 16px 80px;
            color: #fff;
            font-family: 'Albert Sans';
            font-size: 16px;
            font-weight: 600;
        }