/* rubik-glitch-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik Glitch';
    font-style: normal;
    font-weight: 400;
    src: url('./styles/rubik-glitch-v2-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* metal-mania-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Metal Mania';
    font-style: normal;
    font-weight: 400;
    src: url('./styles/metal-mania-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: radial-gradient(ellipse at center, #0a0a0f 0%, #000000 100%);
    font-family: Arial, sans-serif;
    color: white;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.logo {
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Rubik Glitch', 'Metal Mania', sans-serif;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 black, -2px -2px 0 red;
}

h1 {
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Rubik Glitch', 'Metal Mania', sans-serif;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 black, -2px -2px 0 red;
}

body {
    font-family: 'Metal Mania', sans-serif;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: -3px;
    left: 0;
    background: white;
    transition: 0.3s;
}

a:hover, a:visited, a:link, a:active {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 11;
}

.burger div {
    width: 25px;
    height: 2px;
    background: white;
}

.content-logo {
    height: 500px;
    /* height: 100%; */
    /* height: 1024px; */
    background: url(./Anything-in-Between.png) !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: 0.4s;
    z-index: 9;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 24px;
}

/* BACKGROUND */
.fancy-background {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* NEBULA */
.nebula {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 30% 40%, rgba(180, 80, 255, 0.15), transparent 40%), radial-gradient(circle at 70% 60%, rgba(255, 100, 200, 0.12), transparent 50%), radial-gradient(circle at 50% 50%, rgba(120, 50, 200, 0.1), transparent 60%);
    filter: blur(80px);
    animation: drift 60s linear infinite;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-5%, -5%) scale(1.1);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* STARS */
.stars {
    width: 100vw;
    height: 100vh;
    position: relative;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}

/* CONTENT (GLASS BOX) */
.content-wrapper {
    position: absolute;
    top: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    z-index: 5;
}

.content-box {
    width: 100%;
    max-width: 900px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(180, 80, 255, 0.15);
}

.burger {
    display: none;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .burger {
        display: flex !important;
        display: visible;
    }

    .content-box {
        padding: 20px;
    }

    .content-logo {
        background: url(./Anything-in-Between-mobile.png) !important;
        
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    }
}