/* portfolio_style.css */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Fira Code', 'JetBrains Mono', 'Source Code Pro', monospace;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #f0f0f0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navigation Bar */
nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #111;
    display: flex;
    justify-content: center;
    gap: 40px;
    height: 50px;
    align-items: center;
    z-index: 1000;
}

nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #00d1b2; /* Neon-teal accent */
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #00d1b2;
}

/* Container */
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* Section */
.section {
    margin-bottom: 40px;
    background: rgba(30, 30, 50, 0.85);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.section h2 {
    color: #00d1b2;
    margin-bottom: 12px;
    border-bottom: 2px solid #00d1b2;
    padding-bottom: 4px;
    font-family: 'Fira Code', monospace;
}

.section p.desc {
    color: #ccc;
    margin-bottom: 15px;
    font-family: 'Fira Code', monospace;
}

.section a {
    color: #00d1b2;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Fira Code', monospace;
    transition: color 0.3s;
}

.section a:hover {
    text-decoration: underline;
    color: #00a68f;
}
/* Footer */
footer {
    text-align: center;
    color: #bbb;
    font-size: 12px;
    margin-top: 5px;
    font-family: 'Fira Code', monospace;
}
/* Responsive */
@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        height: auto;
        gap: 10px;
        padding: 10px 0;
    }

    .section {
        padding: 20px;
    }
}
