/* 
 * GH PREMIUM | Global Design System
 * Centralized static styles for the entire website.
 */

body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    scroll-behavior: smooth;
}

/* Common Layout Components */
.accent-line {
    width: 40px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.5s ease;
    opacity: 0.3;
}

.group:hover .accent-line {
    width: 80px;
    opacity: 1;
}

.logo-dark-to-white {
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

/* Navigation & Overlays */
#mobile-menu {
    background-color: #000000 !important;
    z-index: 2000;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #0c0c0c;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 1002;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    backdrop-filter: blur(10px);
}

.dropdown-content a {
    color: #ccc;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
}

.dropdown-content.show {
    display: block;
}

/* Sub-navigation bar */
#sub-nav-bar {
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 48;
    height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

#sub-nav-bar.active {
    height: 70px;
    opacity: 1;
    visibility: visible;
}

.sub-nav-container {
    display: none;
    align-items: center;
    height: 100%;
    gap: 40px;
    justify-content: center;
}

.sub-nav-container.active {
    display: flex;
}

.sub-nav-link {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: #888;
    transition: all 0.3s ease;
}

/* Nav Link Decorations */
.nav-main-link.active::after {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

/* Form Elements */
input, textarea {
    transition: all 0.3s ease;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #333;
}
