/* general */

:root {
    --t: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0 !important;
    padding-top: 110px;
    background-color: rgba(235, 235, 235, .8);
}

.page-block {
    margin: 0 auto;
    width: 1250px;
}

h1, h2, h3, h4 {
    color: var(--ws-main-color-1-dark);
    font-weight: bold;
}
h1 {
    margin-top: 0;
    margin-bottom: 15px;
    color: white;
    font-size: 2rem;
    line-height: 2.2rem;
}
h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.7rem;
    line-height: 1.8rem;
}
h3 {
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 1.35rem;
    line-height: 1.45rem;
}
h2 + h3 {
    margin-top: 15px;
    margin-bottom: 10px;
}
h4 {
    margin-top: 25px;
    margin-bottom: 5px;
    font-size: 1.1rem;
    line-height: 1.2rem;
}
@media only screen and (max-width: 1536px) {
    .page-block {
        width: 1150px;
    }
}
@media only screen and (max-width: 1280px) {
    .page-block {
        width: 90%;
    }
    h1 {
        font-size: calc(1.3rem + 1.2vw);
        line-height: calc(1.4rem + 1.4vw);
    }
    h2 {
        font-size: calc(1.2rem + 1.1vw);
        line-height: calc(1.6rem + 1.3vw);
    }
    h3 {
        font-size: calc(1rem + .5vw);
        line-height: calc(1.1rem + .6vw);
    }
    h4 {
        font-size: calc(.9rem + .3vw);
        line-height: calc(.95rem + .4vw);
    }
}
@media only screen and (max-width: 1024px) {

}
@media only screen and (max-width: 800px) {
    body {
        padding-top: 80px;
    }
}
@media only screen and (max-width: 576px) {
    
}
@media only screen and (max-width: 480px) {

}


/* bread-nav */

.bread-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2px 5px;
    padding-top: 10px;
}
.bread-nav a {
    background-image: linear-gradient(var(--ws-main-color-1-light), var(--ws-main-color-1-light));
    color: var(--ws-main-color-1-light);
    font-size: .9rem;
    text-decoration: none;
}
.bread-nav a:hover {
    color: var(--ws-main-color-1-light);
    background-size: 100% 1px;
}
.bread-nav span {
    color: var(--ws-main-color-1-light);
}


/* hero */

.hero {
    position: relative;
    margin-top: 15px;
    margin-bottom: 50px;
    padding: 75px 45px 90px;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--ws-main-color-1-dark) 0%, var(--ws-main-color-1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1,
.hero-content p {
    max-width: 550px;
}
.hero-content p {
    font-size: 16px;
    color: var(--ws-main-color-1-extra-lighter);
    line-height: 1.65;
}

.search-bar {
    z-index: 5;
    position: absolute;
    left: -3px;
    right: -3px;
    bottom: -3px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    box-shadow: 0 12px 40px rgba(53,40,78,0.10);
    border-radius: 14px;
    border: 1.5px solid transparent;
    background: white;
    transition: border-color var(--t), box-shadow var(--t);
}
.search-bar:focus-within {
    border-color: var(--ws-main-color-2-vivid);
    box-shadow: 0 12px 40px rgba(53,40,78,0.10), 0 0 0 3px rgba(232, 115, 74, 0.08);
}

.search-bar svg {
    display: flex;
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    margin: 0 12px;
    color: var(--ws-main-color-1-lightest);
}
.search-bar input {
    flex: 1;
    padding: 18px 0;
    border: none;
    outline: none;
    background: transparent;
    color: var(--ws-main-color-1-dark);
    font-size: 15px;
}
.search-bar input::placeholder {
    color: var(--ws-main-color-1-light);
}
.search-bar .clear {
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin: 0 12px;
    border-radius: 50%;
    border: none;
    background: var(--ws-main-color-1-extra-lighter);
    color: var(--ws-main-color-1-light);
    font-size: 13px;
    cursor: pointer;
    transition: background .2s ease;
}
.search-bar .clear:hover {
    background: var(--ws-main-color-1-lightest);
}
.search-bar .clear svg {
    width: 16px;
    height: 16px;
    color: var(--ws-main-color-1);
}
.search-bar .on {
    display: flex;
}

@media only screen and (max-width: 1536px) {
    
}
@media only screen and (max-width: 1280px) {
    
}
@media only screen and (max-width: 1024px) {
    
}
@media only screen and (max-width: 768px) {
    
}
@media only screen and (max-width: 576px) {
    
}
@media only screen and (max-width: 480px) {
    
}


/* popular */

.featured-destinations {
    display: none;
}
.featured-destinations:has(.featured-destination) {
    display: block;
}

.featured-destinations .grid {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}

.featured-destination {
    position: relative;
    display: flex;
    overflow: hidden;
    height: 180px;
    border-radius: 14px;
    color: white;
    text-decoration: none;
    transition: transform var(--t), box-shadow var(--t);
}
.featured-destination:hover {
    box-shadow: 0 12px 40px rgba(53,40,78,0.10);
}
.featured-destination img {
    z-index: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.featured-destination:hover img {
    transform: scale(1.04);
}
.featured-destination .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(30, 21, 48, 0.85) 0%, rgba(30, 21, 48, 0.25) 50%, rgba(30, 21, 48, 0.1) 100%);
}
.featured-destination .content {
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
}
.featured-destination .content .name {
    margin-bottom: 2px;
    font-size: 20px;
    font-weight: 800;
}
.featured-destination .content .meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--ws-grey-light);
}
.featured-destination .content .meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--ws-grey-light);
}

@media only screen and (max-width: 1536px) {
    
}
@media only screen and (max-width: 1280px) {
    
}
@media only screen and (max-width: 1024px) {
    
}
@media only screen and (max-width: 768px) {
    
}
@media only screen and (max-width: 576px) {
    
}
@media only screen and (max-width: 480px) {
    
}


/* all destination */

.all-destinations .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

.normal-destination {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: calc(33.3% - 10px);
    border-radius: 10px;
    border: 1.5px solid var(--ws-grey-lighter);
    transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.normal-destination:has(.city:hover) {
    border-color: var(--ws-main-color-2-vivid);
    box-shadow: 0 1px 4px rgba(53,40,78,0.06);
}

.normal-destination .city {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    background: white;
    color: inherit;
    text-decoration: none;
}
.normal-destination.has-airports .city {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: var(--ws-grey-lightest);
}

.normal-destination .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
}
.normal-destination .content .name span {
    overflow: hidden;
    white-space: normal;
    margin-right: 5px;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.3rem;
    color: var(--ws-main-color-1-dark);
}
.normal-destination .content .meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .85rem;
    color: var(--ws-grey-medium);
}
.normal-destination .content .meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--ws-grey-medium);
}
.normal-destination .arrow {
    flex-shrink: 0;
    opacity: 0;
    font-size: 16px;
    color: var(--ws-grey-light);
    transition: color var(--t), transform var(--t);
}
.normal-destination .city:hover .arrow {
    opacity: 1;
    color: var(--ws-main-color-2-vivid);
}

.normal-destination.airport-only .city {
    background: white;
}
.normal-destination.airport-only .city .airport-label {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
    white-space: nowrap;
    margin: -15px 0;
    padding: 3px 9px;
    border-radius: 5px;
    background: #eef3ff;
    color: #4a7cff;
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.1rem;
    transition: background var(--t), color var(--t);
}
.normal-destination.airport-only .city .airport-label svg {
    width: 11px;
    height: 11px;
    fill: #4a7cff;
    transition: fill var(--t);
}
.normal-destination.airport-only .city .airport-label:hover svg {
    fill: #3360cc;
}

.normal-destination .airports {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border: none;
    background: var(--ws-grey-lightest);
}
.normal-destination .airports-label {
    margin-right: 2px;
    white-space: nowrap;
    font-size: .85rem;
    color: var(--ws-grey-medium);
    font-weight: 500;
}
.normal-destination .airport-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 9px;
    border-radius: 5px;
    background: #eef3ff;
    color: #4a7cff;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--t), color var(--t);
}
.normal-destination .airport-link:hover {
    background: #d5e1ff;
    color: #3360cc;
}
.normal-destination .airport-link svg {
    width: 11px;
    height: 11px;
    fill: #4a7cff;
    transition: fill var(--t);
}
.normal-destination .airport-link:hover svg {
    fill: #3360cc;
}

.no-res {
    display: none;
    padding: 5px 0 25px;
}
.no-res.on {
    display: block;
}

.no-res-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 35px;
    border: 1.5px solid var(--ws-grey-lighter);
    background: white;
    border-radius: 14px;
    text-align: center;
}
.no-res-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    background: var(--ws-main-color-1-extra-lightest);
    border-radius: 50%;
}
.no-res-icon svg {
    width: 21px;
    height: 21px;
    fill: var(--ws-main-color-1-lighter);
}
.no-res-title {
    margin-bottom: 7px;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4rem;
    color: var(--ws-main-color-1-dark);
}
.no-res-text {
    max-width: 400px;
    font-size: .95rem;
    line-height: 1.4rem;
    color: var(--ws-grey-dark);
}
.no-res-text a {
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    color: var(--ws-main-color-1-vivid);
    transition: color var(--t);
}
.no-res-text a:hover {
    color: var(--ws-main-color-1-light);
}

@media only screen and (max-width: 1536px) {
    
}
@media only screen and (max-width: 1280px) {
    
}
@media only screen and (max-width: 900px) {
    .normal-destination {
        width: calc(50% - 7.5px);
    }
}
@media only screen and (max-width: 768px) {
    
}
@media only screen and (max-width: 576px) {
    .normal-destination {
        width: 100%;
    }
    .no-res-card {
        padding: 32px 22px;
    }
}
@media only screen and (max-width: 480px) {
    
}


/* cluster links */

.cluster-links {
    margin-top: 50px;
    margin-bottom: 80px;
}

.cluster-links .line {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--ws-grey-light) 20%, var(--ws-grey-light) 80%, transparent 100%);
    margin-bottom: 40px;
}

.cluster-links .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
    margin: 10px 0;
    width: 100%;
}

.cluster-links a {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px 0;
    width: calc(20% - 12px);
    padding: 15px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--ws-grey-lighter);
    background: white;
    color: inherit;
    text-decoration: none;
    transition: border-color var(--t);
}
.cluster-links a:hover {
    border-color: var(--ws-main-color-2-vivid);
    box-shadow: 0 1px 4px rgba(53,40,78,0.06);
}

.cluster-links .title-holder {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 5px 10px;
    width: 100%;
}
.cluster-links .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--ws-main-color-1);
}
.cluster-links .icon svg {
    width: 26px;
    height: 26px;
    fill: white;
    stroke: white;
}
.cluster-links .title {
    color: var(--ws-main-color-1-dark);
    font-size: .95rem;
    line-height: 1.3rem;
    font-weight: 600;
}
.cluster-links .subtitle {
    width: 100%;
    height: 100%;
    color: var(--ws-grey-dark);
    font-size: .85rem;
    line-height: 1.15rem;
}

@media only screen and (max-width: 1536px) {
    .cluster-links a {
        width: calc(20% - 12px);
    }
}
@media only screen and (max-width: 1280px) {
    .cluster-links a {
        width: calc(25% - 12px);
    }
}
@media only screen and (max-width: 1024px) {
    .cluster-links a {
        width: calc(33.3% - 10px);
    }
}
@media only screen and (max-width: 768px) {
    .cluster-links a {
        width: calc(50% - 7.5px);
    }
}
@media only screen and (max-width: 576px) {
    .cluster-links a {
        width: 100%;
    }
}
@media only screen and (max-width: 480px) {
    
}


/* cta */

.cta-block p {
    margin-bottom: 15px;
    box-sizing: border-box;
    color: var(--ws-main-color-1-dark);
    font-size: .95rem;
    line-height: 1.35rem;
}

.cta.button-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 40px;
}
@property --cta-button-centered-c1 { syntax: '<color>'; inherits: false; initial-value: #000; }
@property --cta-button-centered-c2 { syntax: '<color>'; inherits: false; initial-value: #000; }
.cta.button-centered .button {
    --cta-button-centered-c1: var(--ws-main-color-3);
    --cta-button-centered-c2: var(--ws-main-color-3-dark);
    padding: 10px 25px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--cta-button-centered-c1), var(--cta-button-centered-c2));
    color: white;
    font-size: 1.15rem;
    line-height: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: --cta-button-centered-c1 .25s ease,--cta-button-centered-c2 .25s ease;
}
.cta.button-centered .button:hover {
    --cta-button-centered-c1: var(--ws-main-color-3-light);
    --cta-button-centered-c2: var(--ws-main-color-3);
}

@media only screen and (max-width: 1536px) {
    
}
@media only screen and (max-width: 1280px) {
    
}
@media only screen and (max-width: 1024px) {
    
}
@media only screen and (max-width: 768px) {
    
}
@media only screen and (max-width: 576px) {
    
}
@media only screen and (max-width: 480px) {
    
}


/* animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-destination {
    animation: fadeUp 0.35s ease both;
}
.featured-destination:nth-child(2) {
    animation-delay: 0.05s;
}
.featured-destination:nth-child(3) {
    animation-delay: 0.1s;
}
.featured-destination:nth-child(4) {
    animation-delay: 0.15s;
}
