@font-face {
    font-family: "Strong";
    src: url(Strong.ttf) format("truetype");
}

.site-video-bg { /* static background for video */
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: black;
    overflow: hidden;
    isolation: isolate;
}

.site-video-bg-video { /* video element */
    display: block;
    width: 100%;
    height: 100%;
    object-fit:contain;
    object-position: center top;
}

header {
    background: transparent;
    padding: 0px;
    border-bottom: none;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: auto;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 10px 30px;
    position: relative;
}

.menu-toggle {
    display: none;
    border: 1px solid rgb(0, 0, 0);
    background: transparent;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 12px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.header-right {
    display: flex;
    gap: 20px;
    margin-left: auto;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
}

.header-right a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 19px;
    font-family:'Times New Roman', Times, serif;
    -webkit-text-stroke: 1px black;
}

.header-left {
    gap: 0px;
    flex-wrap: nowrap;
}

.header-left a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: bold;
    font-family:'Times New Roman', Times, serif;
    -webkit-text-stroke: 2px black;
}

.header-right a:hover {
    color: black;
}

.header-left a:hover {
    color: black;
}

@media (max-width: 1024px) { /* For mobile devices */
    .header-content {
        gap: 10px;
        align-items: center;
        padding: 14px 90px 8px 16px;
    }

    .header-left {
        flex: 0 0 auto;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 18px;
        right: 16px;
        z-index: 1200;
    }

    .header-right {
        display: none;
        position: absolute;
        top: calc(100% + 6px);
        right: 16px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
        flex-wrap: nowrap;
        background: rgba(0, 0, 0, 0.75);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 12px 14px;
        z-index: 1100;
        min-width: 220px;
    }

    .header-content.menu-open .header-right {
        display: flex;
    }

    .header-right a {
        font-size: 14px;
        outline: none;
        border: none;
        box-shadow: none;
        -webkit-text-stroke: 0;
        text-shadow: none;
    }

    .header-right a:focus {
        outline: none;
        border: none;
        box-shadow: none;
        -webkit-text-stroke: 0;
        text-shadow: none;
    }
}

/* Hide entire video background on mobile */
@media (max-width: 768px) {
    html,
    body {
        background: #000;
        background-color: #000;
    }

    .site-video-bg {
        display: none;
    }
}
