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

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

    --border: #292929;
    --border-light: #333333;

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

    --accent: #ffd400;
    --accent-dark: #d9b400;

    --success: #22c55e;

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

    --shadow:
        0 14px 40px rgba(0, 0, 0, 0.32);
}


/* =========================================
   RESET
========================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at top right,
            rgba(255, 212, 0, 0.035),
            transparent 32%
        ),
        var(--background);

    color: var(--text);

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

    line-height: 1.5;
}


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


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


body::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 10px;
}


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


button,
input,
select {
    font: inherit;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


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


/* =========================================
   SITE STRUCTURE
========================================= */

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


.main-area {
    min-height: 100vh;
    margin-left: var(--sidebar-width);
}


/* =========================================
   SIDEBAR
========================================= */

.sidebar {
    position: fixed;

    top: 0;
    left: 0;

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

    background: rgba(15, 15, 15, 0.98);

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

    z-index: 1000;

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


.sidebar::-webkit-scrollbar {
    width: 5px;
}


.sidebar::-webkit-scrollbar-thumb {
    background: #2c2c2c;
    border-radius: 10px;
}


.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: 0;
    border-radius: var(--radius-small);

    background: transparent;

    color: var(--text);

    font-size: 18px;

    cursor: pointer;

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


.menu-button:hover {
    background: var(--background-hover);
    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;
}


/* =========================================
   SIDEBAR 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,
        transform 0.2s ease;
}


.nav-item i {
    width: 22px;

    flex-shrink: 0;

    text-align: center;

    font-size: 16px;
}


.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: var(--radius-small);

    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;
}


/* =========================================
   TOP HEADER
========================================= */

.top-header {
    position: sticky;

    top: 0;

    height: var(--header-height);

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

    padding: 0 28px;

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

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

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

    z-index: 800;
}


.mobile-brand {
    display: none;
}


/* =========================================
   GLOBAL SEARCH
========================================= */

.global-search {
    position: relative;

    width: min(650px, 100%);

    display: flex;
    align-items: center;
}


.search-icon {
    position: absolute;

    left: 17px;

    color: #777777;

    font-size: 14px;

    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,
        box-shadow 0.2s ease;
}


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


.global-search input:focus {
    background: #191919;

    border-color: #4c4c4c;

    box-shadow:
        0 0 0 3px
        rgba(255, 212, 0, 0.04);
}


.search-submit {
    position: absolute;

    right: 5px;

    width: 34px;
    height: 34px;

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

    border: 0;
    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;
}


/* =========================================
   PAGE CONTENT
========================================= */

.page-content {
    width: 100%;

    max-width: 1580px;

    margin: 0 auto;

    padding:
        24px
        28px
        60px;
}


/* =========================================
   CATEGORY BAR
========================================= */

.category-bar {
    display: flex;

    gap: 10px;

    overflow-x: auto;

    padding:
        0
        0
        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: 1px solid transparent;
    border-radius: 8px;

    background: #242424;

    color: #ffffff;

    cursor: pointer;

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

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-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);
}


/* =========================================
   CONTENT SECTIONS
========================================= */

.content-section {
    margin-bottom: 58px;

    scroll-margin-top:
        calc(
            var(--header-height)
            +
            20px
        );
}


.section-heading {
    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 {
    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr;

    gap: 16px;
}


.destination-card {
    position: relative;

    min-height: 280px;

    overflow: hidden;

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

    background: var(--background-card);

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.18);

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


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

    border-color: #3a3a3a;

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


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


.destination-placeholder {
    position: absolute;

    inset: 0;

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

    background:
        radial-gradient(
            circle at top right,
            rgba(255, 212, 0, 0.22),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #292929,
            #151515
        );
}


.destination-placeholder span {
    color: rgba(255, 255, 255, 0.055);

    font-size: clamp(
        42px,
        7vw,
        105px
    );

    font-weight: 800;

    letter-spacing: -4px;
}


.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.92),
            rgba(0, 0, 0, 0.08)
        );
}


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

    color: #cccccc;

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


.destination-overlay h2 {
    font-size: 27px;
    line-height: 1.15;
}


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

    gap: 16px;

    margin-top: 11px;

    color: #c6c6c6;

    font-size: 12px;
}


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

    gap: 6px;
}


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


/* =========================================
   VIDEO GRID
========================================= */

.video-grid {
    display: grid;

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

    gap:
        28px
        18px;
}


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


.video-thumbnail {
    position: relative;

    display: block;

    aspect-ratio: 16 / 9;

    overflow: hidden;

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

    border-radius: var(--radius-medium);

    background: #171717;

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


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


.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.075);

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

    font-weight: 800;

    letter-spacing: -2px;
}


.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.83
    );

    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;

    font-size: 16px;

    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 {
    color: #ffffff;

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

    line-height: 1.45;

    margin-bottom: 6px;
}


.video-details p {
    color: #989898;

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


.video-meta {
    display: flex;

    gap: 12px;

    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);
}


/* =========================================
   HOTEL GRID
========================================= */

.hotel-grid {
    display: grid;

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

    gap: 18px;
}


.hotel-card {
    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;

    aspect-ratio: 16 / 9;

    overflow: hidden;
}


.hotel-placeholder {
    position: absolute;

    inset: 0;

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

    background:
        radial-gradient(
            circle at top right,
            rgba(255, 212, 0, 0.18),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #292929,
            #161616
        );

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

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

    font-weight: 800;

    letter-spacing: -2px;
}


.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 {
    font-size: 17px;

    margin-bottom: 7px;
}


.hotel-content p {
    min-height: 44px;

    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);
}


/* =========================================
   WORLD MAP
========================================= */

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

    display: grid;

    grid-template-columns:
        1.3fr
        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:
        transform 0.2s ease,
        background 0.2s ease;
}


.primary-button:hover {
    transform: translateY(-2px);
    background: var(--accent);
}


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

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

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

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


/* =========================================
   FOOTER
========================================= */

.site-footer {
    display: grid;

    grid-template-columns:
        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 STATES
========================================= */

.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;
}


body.sidebar-collapsed .nav-item i {
    width: auto;

    font-size: 18px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {

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


    .destination-card:last-child {
        grid-column: 1 / -1;

        min-height: 240px;
    }


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


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


    .hotel-card:last-child {
        grid-column: 1 / -1;
    }

}


/* =========================================
   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;
    }


    .nav-item i {
        width: auto;
        font-size: 18px;
    }


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


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


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


    .destination-card,
    .destination-large,
    .destination-card:last-child {
        grid-column: auto;

        min-height: 260px;
    }


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


    .hotel-card:last-child {
        grid-column: auto;
    }


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


    .map-visual {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 620px) {

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


    .sidebar {
        transform: translateX(-100%);

        width: 235px;

        transition: transform 0.25s ease;
    }


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


    .main-area {
        margin-left: 0;
    }


    .top-header {
        position: sticky;

        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: 235px;
    }


    .destination-overlay {
        padding: 19px;
    }


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

        gap: 26px;
    }


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


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


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

        padding:
            27px
            18px;
    }


    .footer-links {
        gap: 14px;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .mobile-brand {
        display: none;
    }


    .global-search input {
        font-size: 11px;
    }


    .destination-card {
        min-height: 215px;
    }

}