/* --- STYLES-TABLET.CSS (768px - 1024px) --- */

/* Shared Mobile/Tablet Logic */
.desktop-only {
    display: none !important;
}

.mobile-only {
    display: block !important;
}

/* Typography */
h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.2rem;
}

/* Header (Similar to Mobile but slightly larger) */
header {
    height: 70px;
    background: rgba(0, 0, 0, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
}

.logo span {
    color: var(--neon-green);
}

.mobile-menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    border-radius: 5px;
    padding: 2px 12px;
    cursor: pointer;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    /* Half width for tablet */
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 2000;
    gap: 30px;
    border-left: 1px solid #222;
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Layout */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* 2 Columns */
.container {
    max-width: 900px;
}

.hero {
    min-height: 50vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header-container {
    text-align: center;
    margin-bottom: 30px;
}