body {
    margin: 0;
    background-color: black;
    color: white;
    font-family: "Segoe UI", sans-serif;
}

.projects-section {
    padding: 60px 20px;
    text-align: center;
    min-height: 100vh;
}

.projects-section h1 {
    font-size: 2.5rem;
    color: red;
    margin-bottom: 40px;
}

.project-card {
    background-color: #111;
    border: 1px solid red;
    border-radius: 10px;
    padding: 25px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.project-card h2 {
    color: red;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-card p {
    color: white;
    font-size: 1rem;
    margin-bottom: 15px;
}

.project-card a {
    text-decoration: none;
    background-color: red;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s ease;
}

.project-card a:hover {
    background-color: #cc0000;
}

.back-link {
    text-align: center;
    margin-top: 40px;
}

.back-link a {
    color: white;
    background-color: orangered;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s ease;
}

.back-link a:hover {
    background-color: crimson;
    color: #fff;
}

.hamburger {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* Mobile Nav */
#myLinks {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    #myLinks {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: black;
        padding: 20px;
        border: 1px solid red;
        width: 200px;
        z-index: 999;
    }

    #myLinks.show {
        display: flex;
    }

    nav {
        position: relative;
    }

    nav ul li {
        margin: 10px 0;
    }
}