/* --- SBARC CYMRU: GLOBAL THEME --- */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@500;700&display=swap');

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ff3c00;
    --font-main: 'Rubik', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.raw-theme {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    text-transform: uppercase;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    z-index: 2100;
}

.logo {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
}

    .logo .bold {
        font-weight: 700;
        font-size: 1.3rem;
    }

    .logo .regular {
        font-weight: 500;
        font-size: 1.3rem;
        margin-left: 6px;
        opacity: 0.85;
        text-transform: none;
    }

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    z-index: 2101;
    color: #fff;
    font-weight: 500;
    font-size: 0.75rem;
}

.hamburger {
    width: 22px;
    height: 12px;
    position: relative;
}

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        transition: 0.3s;
    }

        .hamburger span:nth-child(1) {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            bottom: 0;
        }

body.menu-open .hamburger span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
}

/* --- HERO SECTION WITH VIDEO --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: 0;
    object-fit: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- MENU OVERLAY --- */
.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    height: 100vh;
    background: #0a0a0a;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    transform: translateX(100%);
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

    .menu-overlay.active {
        transform: translateX(0);
    }

.menu-links {
    list-style: none;
}

    .menu-links a {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
    }
