/* Visit Struga utility header */
.main-header {
    height: 120px;
}

.main-header .header-inner {
    height: 80px;
}

#wrapper {
    padding-top: 120px;
}

.content.fs-slider-wrap {
    padding-top: 120px;
}

.visit-topbar {
    height: 40px;
    margin: 0 -50px;
    padding: 0 50px;
    color: #b9c6da;
    background: #16293d;
}

.visit-topbar__inner,
.visit-topbar__links,
.visit-topbar__tools {
    display: flex;
    align-items: center;
}

.visit-topbar__inner {
    width: 100%;
    max-width: 1820px;
    height: 100%;
    margin: 0 auto;
    justify-content: space-between;
    gap: 28px;
}

.visit-topbar__links {
    align-self: stretch;
    gap: 6px;
    white-space: nowrap;
}

.visit-topbar__tools {
    gap: 22px;
    white-space: nowrap;
}

.visit-topbar a,
.visit-topbar__weather {
    color: #b9c6da;
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: color 160ms ease, background-color 160ms ease;
}

.visit-topbar__links > a:hover,
.visit-topbar__links > a:focus-visible {
    color: #fff;
}

.visit-topbar__brand {
    display: flex;
    align-items: center;
    align-self: stretch;
    gap: 22px;
    padding: 0 20px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.visit-topbar__brand a {
    color: #000 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.visit-topbar__brand a:hover,
.visit-topbar__brand a:focus-visible {
    color: #4db7fe !important;
}

.visit-topbar__weather {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.visit-topbar__weather .fa-sun-o {
    color: #ffc94d;
    font-size: 14px;
}

.visit-topbar__weather strong {
    margin-left: 2px;
    color: #4db7fe;
    font-weight: 800;
}

/* Standalone photo gallery */
.visit-photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    margin-bottom: 40px;
}

.visit-photo-gallery__item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    background: #eef2f6;
}

.visit-photo-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.visit-photo-gallery__item::after {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(47, 59, 89, 0.35);
    content: '\f00e';
    font-family: FontAwesome;
    font-size: 24px;
    opacity: 0;
    transition: opacity 220ms ease;
}

.visit-photo-gallery__item:hover img,
.visit-photo-gallery__item:focus-visible img {
    transform: scale(1.045);
}

.visit-photo-gallery__item:hover::after,
.visit-photo-gallery__item:focus-visible::after {
    opacity: 1;
}

@media only screen and (max-width: 1480px) {
    .visit-topbar__inner,
    .visit-topbar__links,
    .visit-topbar__tools {
        gap: 18px;
    }

    .visit-topbar a,
    .visit-topbar__weather {
        font-size: 11px;
    }
}

@media only screen and (max-width: 1180px) {
    .visit-topbar__weather {
        display: none;
    }

    .visit-photo-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 820px) {
    .visit-topbar {
        overflow-x: auto;
        margin: 0 -20px;
        padding: 0 20px;
        scrollbar-width: none;
    }

    .visit-topbar::-webkit-scrollbar {
        display: none;
    }

    .visit-topbar__inner {
        width: max-content;
        min-width: 100%;
    }

    .visit-photo-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media only screen and (max-width: 540px) {
    .visit-topbar {
        margin: 0 -10px;
        padding: 0 12px;
    }

    .visit-topbar__links,
    .visit-topbar__tools,
    .visit-topbar__inner {
        gap: 16px;
    }

    .visit-photo-gallery {
        grid-template-columns: 1fr;
    }
}
