/* Media Queries */
@media screen and (max-width: 1200px) {
    #desktop-nav {
        display: none;
    }
    #hamburger-nav {
        display: flex;
    }
    .nav-links {
        gap: 1.5rem;
        font-size: 1.1rem;
    }
    .menu-links {
        width: 200px;
        right: 0;
        text-align: center;
        background-color: rgba(6, 35, 60, 0.8);
        backdrop-filter: blur(5px);
        position: fixed;
        top: 10vh;
    }
    .menu-links li {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    .menu-links a {
        font-size: 1.2rem;
        padding: 15px 20px;
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .logo img {
        width: 3rem;
    }
    nav {
        height: 8vh;
        padding: 0 1.5rem;
    }
    .menu-links {
        width: 200px;
        right: 0;
        text-align: center;
        background-color: rgba(6, 35, 60, 0.8);
        backdrop-filter: blur(5px);
        position: fixed;
        top: 10vh;
    }
    .menu-links li {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    .menu-links a {
        font-size: 1.2rem;
        padding: 15px 20px;
        width: 100%;
        text-align: center;
    }
    .hero-content {
        padding-left: 2rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content h1 .gradient-text {
        font-size: 3.5rem;
    }
    .hero-content h1 .gradient-text::after {
        bottom: -8px;
        height: 2px;
    }
    .about-content h2 {
        font-size: 2rem;
    }
    .about-content > p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    .about-features {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    .projects-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    .project-card img {
        height: 180px;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        width: 2.8rem;
    }
    nav {
        height: 7vh;
        padding: 0 1rem;
    }
    .menu-links {
        top: 10vh;
        width: 200px;
    }
    .menu-links li {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    .hamburger-icon {
        height: 20px;
        width: 25px;
    }
    .menu-links a {
        font-size: 1.1rem;
        padding: 12px 15px;
        text-align: center;
    }
    .hero-content {
        padding-left: 1.5rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content h1 .gradient-text {
        font-size: 3rem;
    }
    .hero-content h1 .gradient-text::after {
        bottom: -6px;
        height: 2px;
    }
    .about-content h2 {
        font-size: 1.8rem;
    }
    .feature {
        padding: 1.5rem;
    }
    .project-card img {
        height: 160px;
    }
    .project-info {
        padding: 1rem;
    }
}
