@import url("https://fonts.googleapis.com/css?family=Overpass+Mono:400,700");

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

/* ==========================================================================
   Particles background (behind all page content)
   ========================================================================== */

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   Base page styles
   ========================================================================== */

body {
    background: #0c0c0c;
    color: #fff;
    font-family: "Overpass Mono", monospace;
    font-size: 20px;
    position: relative;
    margin: 0;

    -khtml-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.interactive {
    pointer-events: all;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ==========================================================================
   Navbar — floating pill, pinned to the LEFT (not centered)
   ========================================================================== */

.navbar {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 100 !important;
    width: auto !important;
    max-width: fit-content !important;
    background: transparent !important;
    border: none !important;
    padding: 10px 20px !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.navbar:hover {
    background: transparent;
}

.navbar-expand-lg {
    flex-wrap: wrap !important;
}

.navbar-collapse {
    width: auto !important;
}

.navbar .nav-link {
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #64b5f6, #81d4fa);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover {
    color: #64b5f6;
    text-decoration: none;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.navbar .navbar-brand {
    display: none !important;
}

.navbar-toggler {
    background-color: #ffffff00;
    border: none;
}

.navbar-toggler-icon {
    background-image: url('/assets/global/images/menubar.png');
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    background-color: #81818180;
}

/* ==========================================================================
   Shared components (profile pic, social icons)
   ========================================================================== */

.profile {
    height: 200px;
    width: 200px;
    border-radius: 50%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(100, 181, 246, 0.3);
    border-color: rgba(100, 181, 246, 0.5);
    color: #64b5f6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(100, 181, 246, 0.3);
    text-decoration: none;
}

.btn-outline-secondary {
    color: #fff;
}
