
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media (max-width: 799.9px) {
    .background {
        background-image: url(/skiguide/img/skibg.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
    }
}

header {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0px 5px 5px 0 rgba(0,0,0,.02);

    position: relative;
    z-index: 5;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo img {
    height: 36px;
    width: auto;
    display: block;
}

header .icon-btn {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e2e6eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .icon-btn.lang {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.02em;
}

header .icon-btn img {
    width: 25px;
    height: 25px;
    display: block;
    object-fit: contain;
}

.resort {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.resort h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}
.resort div {
    font-size: 13px;
    color: #717171;
    margin-top: 3px;
    line-height: 1.3;
}