:root {
    --background: #0d0d0d;
    --background-card: #171717;
    --background-hover: #222222;

    --sidebar-width: 240px;
    --header-height: 72px;

    --border: #292929;
    --border-light: #353535;

    --text: #ffffff;
    --text-soft: #b5b5b5;
    --text-muted: #808080;

    --accent: #ffd400;

    --radius-small: 8px;
    --radius-medium: 12px;
    --radius-large: 18px;

    --shadow: 0 16px 45px rgba(0, 0, 0, 0.38);
}


/* RESET */

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


html {
    scroll-behavior: smooth;
}


body {
    min-width: 0;
    min-height: 100vh;

    overflow-x: hidden;

    background: var(--background);
    color: var(--text);

    font-family:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.5;
}


body::-webkit-scrollbar {
    width: 9px;
}


body::-webkit-scrollbar-track {
    background: #0d0d0d;
}


body::-webkit-scrollbar-thumb {
    background: #343434;
    border-radius: 20px;
}


img {
    display: block;
    width: 100%;
}


button,
input,
select {
    font: inherit;
}


button {
    border: 0;
}


a {
    color: inherit;
    text-decoration: none;
}


/* STRUCTURE */

.site-shell {
    width: 100%;
    min-height: 100vh;
}


.main-area {
    width: calc(100% - var(--sidebar-width));
    min-width: 0;

    margin-left: var(--sidebar-width);
}


/* SIDEBAR */

.sidebar {
    position: fixed;

    top: 0;
    left: 0;

    width: var(--sidebar-width);
    height: 100vh;

    background: #0f0f0f;

    border-right: 1px solid var(--border);

    overflow-y: auto;
    overflow-x: hidden;

    z-index: 1000;
}


.sidebar-header {
    height: var(--header-height);

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 0 16px;

    border-bottom: 1px solid var(--border);
}


.menu-button {
    width: 36px;
    height: 36px;

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

    flex-shrink: 0;

    border-radius: 8px;

    background: transparent;

    color: #ffffff;

    cursor: pointer;

    font-size: 18px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.menu-button:hover {
    background: #222222;
    color: var(--accent);
}


/* BRAND */

.brand {
    display: inline-flex;
    align-items: center;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 0.7px;
}


.brand-free {
    padding: 8px 10px;

    background: var(--accent);
    color: #111111;

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


.brand-walk {
    padding: 8px 10px;

    background: #ffffff;
    color: #111111;

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


/* NAVIGATION */

.sidebar-navigation {
    padding: 14px 10px 30px;
}


.nav-item {
    min-height: 48px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 0 14px;

    margin-bottom: 5px;

    color: #cccccc;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 500;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.nav-item i {
    width: 22px;

    flex-shrink: 0;

    text-align: center;
}


.nav-item:hover {
    background: #202020;
    color: #ffffff;
}


.nav-item.active {
    background: #2a2a2a;
    color: #ffffff;

    font-weight: 700;
}


.nav-item.active i {
    color: var(--accent);
}


.nav-divider {
    height: 1px;

    margin: 17px 6px;

    background: var(--border);
}


.nav-section-title {
    padding: 0 14px 9px;

    color: #686868;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;
}


/* LANGUAGE */

.language-wrapper {
    position: relative;

    display: flex;
    align-items: center;

    height: 44px;

    margin: 0 5px;

    border: 1px solid var(--border-light);
    border-radius: 8px;

    background: #171717;
}


.language-wrapper i {
    position: absolute;

    left: 13px;

    color: var(--accent);

    pointer-events: none;
}


.language-select {
    width: 100%;
    height: 100%;

    padding: 0 34px 0 39px;

    border: 0;

    appearance: none;

    background: transparent;

    color: var(--accent);

    outline: none;

    cursor: pointer;

    font-size: 13px;
    font-weight: 700;
}


/* HEADER */

.top-header {
    position: sticky;

    top: 0;

    width: 100%;
    height: var(--header-height);

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 0 28px;

    background: rgba(13, 13, 13, 0.94);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid var(--border);

    z-index: 800;
}


.mobile-brand {
    display: none;
}


/* SEARCH */

.global-search {
    position: relative;

    width: min(650px, 100%);

    display: flex;
    align-items: center;
}


.search-icon {
    position: absolute;

    left: 17px;

    color: #777777;

    pointer-events: none;
}


.global-search input {
    width: 100%;
    height: 44px;

    padding: 0 56px 0 44px;

    border: 1px solid #303030;
    border-radius: 24px;

    background: #161616;

    color: #ffffff;

    outline: none;

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}


.global-search input::placeholder {
    color: #757575;
}


.global-search input:focus {
    border-color: #505050;
    background: #191919;
}


.search-submit {
    position: absolute;

    right: 5px;

    width: 34px;
    height: 34px;

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

    border-radius: 50%;

    background: #292929;

    color: #ffffff;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.search-submit:hover {
    background: var(--accent);
    color: #111111;
}


/* CONTENT */

.page-content {
    width: 100%;

    max-width: 1600px;

    margin: 0 auto;

    padding: 24px 28px 60px;
}


/* CATEGORIES */

.category-bar {
    width: 100%;

    display: flex;

    gap: 10px;

    overflow-x: auto;

    padding-bottom: 8px;

    margin-bottom: 30px;

    scrollbar-width: none;
}


.category-bar::-webkit-scrollbar {
    display: none;
}


.category-button {
    flex-shrink: 0;

    min-height: 40px;

    padding: 0 17px;

    border-radius: 8px;

    background: #242424;

    color: #ffffff;

    cursor: pointer;

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.category-button:hover {
    background: #303030;
}


.category-button.active {
    background: #ffffff;
    color: #111111;
}


.category-button:active {
    transform: scale(0.97);
}


/* SECTIONS */

.content-section {
    width: 100%;

    margin-bottom: 58px;

    scroll-margin-top: 90px;
}


.section-heading {
    width: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 24px;

    margin-bottom: 21px;
}


.section-heading h1,
.section-heading h2 {
    margin-top: 4px;

    color: #ffffff;

    font-size: clamp(24px, 2vw, 31px);

    line-height: 1.2;
}


.section-heading p {
    max-width: 690px;

    margin-top: 8px;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.65;
}


.section-eyebrow {
    display: block;

    color: var(--accent);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.section-link {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #dddddd;

    font-size: 13px;
    font-weight: 700;

    transition: color 0.2s ease;
}


.section-link:hover {
    color: var(--accent);
}


/* DESTINATIONS */

.destination-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 16px;
}


.destination-card {
    position: relative;

    min-width: 0;
    min-height: 330px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    background: #171717;

    box-shadow:
        0 8px 24px
        rgba(0, 0, 0, 0.2);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.destination-large {
    min-height: 380px;
}


.destination-card:hover {
    transform: translateY(-4px);

    border-color: #3d3d3d;

    box-shadow: var(--shadow);
}


.destination-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.destination-card:hover .destination-image {
    transform: scale(1.055);
}


.destination-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 24px;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.64) 35%,
            rgba(0, 0, 0, 0.08) 74%
        );
}


.destination-country {
    margin-bottom: 3px;

    color: #dddddd;

    font-size: 12px;
    font-weight: 600;
}


.destination-overlay h2 {
    color: #ffffff;

    font-size: 29px;
    line-height: 1.15;
}


.destination-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 16px;

    margin-top: 11px;

    color: #dddddd;

    font-size: 12px;
}


.destination-meta span {
    display: inline-flex;
    align-items: center;

    gap: 6px;
}


.destination-meta i {
    color: var(--accent);
}


/* VIDEOS */

.video-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px 18px;
}


.video-card {
    min-width: 0;
}


.video-thumbnail {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: #171717;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}


.video-thumbnail:hover {
    transform: translateY(-2px);
    border-color: #3d3d3d;
}


.video-placeholder {
    position: absolute;

    inset: 0;

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

    background:
        radial-gradient(
            circle at center,
            #343434,
            #161616 70%
        );

    color: rgba(255, 255, 255, 0.07);

    font-size: clamp(34px, 5vw, 65px);

    font-weight: 800;
}


.video-quality {
    position: absolute;

    top: 10px;
    left: 10px;

    padding: 5px 8px;

    background: var(--accent);

    color: #111111;

    border-radius: 5px;

    font-size: 10px;
    font-weight: 800;
}


.video-duration {
    position: absolute;

    right: 8px;
    bottom: 8px;

    padding: 4px 6px;

    background: rgba(0, 0, 0, 0.84);

    color: #ffffff;

    border-radius: 4px;

    font-size: 10px;
    font-weight: 700;
}


.video-play {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 58px;
    height: 42px;

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

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

    border-radius: 10px;

    background: #ff0033;

    color: #ffffff;

    opacity: 0;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


.video-thumbnail:hover .video-play {
    opacity: 1;

    transform:
        translate(-50%, -50%)
        scale(1.06);
}


.video-details {
    padding: 12px 4px 0;
}


.video-details h3 {
    margin-bottom: 6px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.45;
}


.video-details p {
    color: #989898;

    font-size: 12px;
    line-height: 1.55;
}


.video-meta {
    margin-top: 9px;

    color: #858585;

    font-size: 11px;
}


.video-meta span {
    display: inline-flex;
    align-items: center;

    gap: 6px;
}


.video-meta i {
    color: var(--accent);
}


/* HOTELS */

.hotel-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


.hotel-card {
    min-width: 0;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    background: var(--background-card);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.hotel-card:hover {
    transform: translateY(-4px);

    border-color: #3a3a3a;

    box-shadow: var(--shadow);
}


.hotel-image {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #191919;
}


.hotel-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}


.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}


.hotel-rating {
    position: absolute;

    top: 10px;
    right: 10px;

    min-width: 40px;

    padding: 7px 8px;

    text-align: center;

    border-radius: 7px;

    background: #ffffff;

    color: #111111;

    font-size: 12px;
    font-weight: 800;
}


.hotel-content {
    padding: 17px;
}


.hotel-location {
    display: block;

    margin-bottom: 6px;

    color: var(--accent);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.7px;
}


.hotel-content h3 {
    margin-bottom: 7px;

    font-size: 17px;
}


.hotel-content p {
    color: #999999;

    font-size: 12px;
    line-height: 1.55;
}


.hotel-button {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: 15px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    transition: color 0.2s ease;
}


.hotel-button:hover {
    color: var(--accent);
}


/* MAP */

.map-preview {
    width: 100%;
    min-height: 290px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(260px, 0.7fr);

    align-items: center;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    background:
        radial-gradient(
            circle at right,
            rgba(255, 212, 0, 0.08),
            transparent 38%
        ),
        #151515;
}


.map-content {
    padding: 36px;
}


.map-content h2 {
    max-width: 570px;

    margin: 6px 0 11px;

    font-size: clamp(24px, 3vw, 36px);

    line-height: 1.2;
}


.map-content p {
    max-width: 660px;

    color: #a2a2a2;

    font-size: 14px;
    line-height: 1.65;
}


.primary-button {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 21px;

    padding: 12px 17px;

    border-radius: 8px;

    background: #ffffff;

    color: #111111;

    font-size: 13px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.primary-button:hover {
    background: var(--accent);

    transform: translateY(-2px);
}


.map-visual {
    min-height: 290px;

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

    color: rgba(255, 212, 0, 0.12);

    font-size: clamp(100px, 14vw, 210px);
}


/* FOOTER */

.site-footer {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 20px 40px;

    align-items: center;

    padding: 32px 28px;

    border-top: 1px solid var(--border);

    background: #101010;
}


.footer-brand p {
    margin-top: 10px;

    color: #777777;

    font-size: 12px;
}


.footer-links {
    display: flex;
    flex-wrap: wrap;

    gap: 20px;

    color: #aaaaaa;

    font-size: 12px;
}


.footer-links a:hover {
    color: var(--accent);
}


.footer-copy {
    grid-column: 1 / -1;

    padding-top: 17px;

    border-top: 1px solid #232323;

    color: #686868;

    font-size: 11px;
}


/* FILTER */

.video-card.hidden {
    display: none;
}


/* COLLAPSED SIDEBAR */

body.sidebar-collapsed {
    --sidebar-width: 76px;
}


body.sidebar-collapsed .sidebar-header {
    justify-content: center;

    padding: 0;
}


body.sidebar-collapsed .sidebar .brand {
    display: none;
}


body.sidebar-collapsed .nav-item {
    justify-content: center;

    padding: 0;
}


body.sidebar-collapsed .nav-item span {
    display: none;
}


body.sidebar-collapsed .nav-section-title,
body.sidebar-collapsed .language-wrapper {
    display: none;
}


/* TABLET */

@media (max-width: 1200px) {

    .destination-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .destination-large {
        grid-column: 1 / -1;

        min-height: 340px;
    }


    .video-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .hotel-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* SMALL TABLET */

@media (max-width: 850px) {

    :root {
        --sidebar-width: 76px;
    }


    .sidebar-header {
        justify-content: center;

        padding: 0;
    }


    .sidebar .brand {
        display: none;
    }


    .nav-item {
        justify-content: center;

        padding: 0;
    }


    .nav-item span {
        display: none;
    }


    .nav-section-title,
    .language-wrapper {
        display: none;
    }


    .top-header {
        padding: 0 16px;
    }


    .page-content {
        padding: 20px 16px 45px;
    }


    .destination-grid {
        grid-template-columns: 1fr;
    }


    .destination-large {
        grid-column: auto;
    }


    .destination-card,
    .destination-large {
        min-height: 280px;
    }


    .video-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .hotel-grid {
        grid-template-columns: 1fr;
    }


    .map-preview {
        grid-template-columns: 1fr;
    }


    .map-visual {
        display: none;
    }

}


/* MOBILE */

@media (max-width: 620px) {

    :root {
        --header-height: 64px;
    }


    .sidebar {
        width: 235px;

        transform: translateX(-100%);

        transition: transform 0.25s ease;
    }


    body.mobile-menu-open .sidebar {
        transform: translateX(0);
    }


    .main-area {
        width: 100%;

        margin-left: 0;
    }


    .top-header {
        justify-content: space-between;

        gap: 12px;

        padding: 0 12px;
    }


    .mobile-brand {
        display: inline-flex;

        flex-shrink: 0;

        font-size: 11px;
        font-weight: 800;
    }


    .mobile-brand .brand-free,
    .mobile-brand .brand-walk {
        padding: 7px 8px;
    }


    .global-search {
        width: 100%;
    }


    .global-search input {
        height: 40px;

        padding-left: 38px;

        font-size: 12px;
    }


    .search-icon {
        left: 14px;
    }


    .search-submit {
        width: 30px;
        height: 30px;
    }


    .page-content {
        padding: 18px 12px 40px;
    }


    .category-bar {
        margin-bottom: 25px;
    }


    .category-button {
        min-height: 37px;

        padding: 0 14px;

        font-size: 12px;
    }


    .content-section {
        margin-bottom: 44px;
    }


    .section-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 10px;
    }


    .section-heading h1,
    .section-heading h2 {
        font-size: 23px;
    }


    .section-link {
        font-size: 12px;
    }


    .destination-card,
    .destination-large {
        min-height: 240px;
    }


    .destination-overlay {
        padding: 19px;
    }


    .video-grid {
        grid-template-columns: 1fr;
    }


    .hotel-grid {
        grid-template-columns: 1fr;
    }


    .map-content {
        padding: 28px 22px;
    }


    .site-footer {
        grid-template-columns: 1fr;

        padding: 27px 18px;
    }

}


/* VERY SMALL MOBILE */

@media (max-width: 420px) {

    .mobile-brand {
        display: none;
    }


    .destination-card,
    .destination-large {
        min-height: 220px;
    }

}.video-thumbnail-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.video-thumbnail:hover .video-thumbnail-image {
    transform: scale(1.05);
}
