/* --- STYLES-DESKTOP.CSS (> 1024px) --- */

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

.container {
    max-width: 1400px;
}

/* Typography */
h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.5rem;
}

/* Header */
header {
    background: rgba(5, 5, 5, 0.95);
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
}

.logo span {
    color: var(--neon-green);
}

/* Full Horizontal Menu */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

/* Search & Actions */
.search-container,
.desktop-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-container {
    margin-right: 20px;
    position: relative;
}

.search-box {
    position: absolute;
    right: 40px;
    width: 0;
    overflow: hidden;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.9);
}

.search-container.active .search-box {
    width: 250px;
    border: 1px solid var(--neon-green);
}

.search-box input {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: none;
    color: white;
    outline: none;
}

.search-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.search-toggle:hover {
    color: var(--neon-green);
    transform: scale(1.1);
}

/* Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 3 Columns */

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: glitch 3s infinite;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-container {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
}