@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
/* ===================================================
HEADER
=================================================== */

.rt-header {
  position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    transition: .35s ease;
}

.rt-header-container {
    max-width: 1320px;
    height: 82px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================
LOGO
========================== */

.rt-logo img {
    height: 52px;
    width: auto;
    display: block;
}

/* ==========================
NAVIGATION
========================== */

.rt-nav-menu {
  display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rt-nav-menu a {
  color: #fff;
    text-decoration: none;
    font-family: "Audiowide", sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: .3s;
}

.rt-nav-menu a:hover {
    color: #E30613;
}

/* ==========================
RIGHT SIDE
========================== */

.rt-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ==========================
LOGIN BUTTON
========================== */

.rt-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 44px;
    background: #E30613;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    transition: .3s;
}

.rt-login-btn:hover {
    background: #c40512;
}

/* ==========================
HAMBURGER
========================== */

.rt-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    cursor: pointer;
}

.rt-menu-btn span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    transition: .3s ease;
}

/* ==========================
MOBILE
========================== */

@media (max-width:1024px){

    .rt-nav {
        display: none;
    }

    .rt-menu-btn {
        display: flex;
    }

    .rt-logo img {
        height: 44px;
    }

    .rt-login-btn {
        width: 96px;
        height: 40px;
        font-size: 14px;
    }

    .rt-header-container {
        height: 74px;
        padding: 0 16px;
    }
}

/* ==========================
MOBILE MENU
========================== */

.rt-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .35s ease;
    z-index: 998;
}

.rt-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.rt-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80%;
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 30px rgba(0,0,0,.15);
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 999;
    padding: 100px 30px 30px;
}

.rt-mobile-menu.active {
    transform: translateX(0);
}

.rt-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rt-mobile-menu li {
    margin-bottom: 22px;
}

.rt-mobile-menu a {
  text-decoration: none;
    font-family: "Audiowide", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #111;
}

.rt-mobile-menu a:hover {
    color: #E30613;
}

/* ==========================
HAMBURGER ANIMATION
========================== */

.rt-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px,6px);
}

.rt-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.rt-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}

/* ==========================
SCROLL EFFECT
========================== */

.rt-header.scrolled {
   background: rgba(0,0,0,.75);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ==========================
GLOBAL SAFETY (NO SCROLL BREAK)
========================== */

html, body {
    overflow-x: hidden;
    overflow-y: auto;
}