/* --- STYLES-MOBILE.CSS (PHONES < 768px) --- */

/* Hide Desktop Elements */
.desktop-only,
.hide-on-mobile {
    display: none !important;
}

/* Utilities */
.mobile-only {
    display: block !important;
}

.container {
    padding: 0 15px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
}

/* Header */
header {
    height: 60px;
    background: rgba(0, 0, 0, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
}

.logo span {
    color: var(--neon-green);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    border-radius: 5px;
    padding: 0 10px;
    cursor: pointer;
}

/* Mobile Nav Links (Slide Out) */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 2000;
    gap: 30px;
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    font-size: 2rem;
    font-weight: bold;
}

/* Layout */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Strictly 1 column */
.card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.hero {
    min-height: 60vh;
    padding-top: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 2.5rem;
}

.section-header-container {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    display: inline-block;
    border-bottom: 3px solid var(--neon-green);
    padding-bottom: 10px;
}