/* -----------------------------
   RESPONSIVE STYLES
----------------------------- */

/* General responsive adjustments */
@media screen and (max-width: 1024px) {
    .hero-section {
        height: auto;
        padding: 3rem 2rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .hero-buttons a {
        margin: 0.5rem 0.3rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Tablet and small screens */
@media screen and (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        background-color: #0d0d0d;
        padding: 1rem;
        border-top: 1px solid #00ff41;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .labs-list, .services-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .terminal-section {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
}

/* Mobile screens */
@media screen and (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 0.95rem;
    }

    .hero-buttons a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    footer {
        font-size: 0.8rem;
        padding: 1.5rem 1rem;
    }
}
