body {
    margin: 0;
    font-family: 'Share Tech Mono', monospace;
    background: url('assets/grid-bg.png') repeat, radial-gradient(circle at top, #0a0a0a 0%, #000000 100%);
    background-size: cover;
    color: #e0e0e0;
    line-height: 1.6;
}

.hero {
    background: rgba(0,0,0,0.7);
    text-align: center;
    padding: 3rem 1rem;
    color: #fff;
}

.logo-container .logo {
    width: 120px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px #1affd5);
}

.pulse {
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { filter: drop-shadow(0 0 10px #1affd5); }
    50% { filter: drop-shadow(0 0 30px #1affd5); }
}

.site-title {
    font-size: 3rem;
    margin: 0;
    text-shadow: 0 0 15px #1affd5, 0 0 25px #1a75ff;
}

.tagline {
    font-size: 1.2rem;
    color: #cce7ff;
}

/* =================================
   NEW STYLES FOR NAVIGATION BAR
   ================================= */
nav {
    background-color: #0a0a0a;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #1affd5;
}

nav a {
    color: #e0e0e0;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #1affd5;
}

.projects {
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.projects h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 8px #1affd5;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: #111;
    border: 1px solid #1affd5;
    padding: 1.5rem;
    color: #e0e0e0;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #1affd5;
}

.about {
    padding: 3rem 1rem;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

footer {
    background: #000;
    color: #777;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

footer .social-links a {
    margin: 0 1rem;
    color: #1affd5;
    text-decoration: none;
}

footer .social-links a:hover {
    color: #1a75ff;
}

/* =================================
   NEW STYLES FOR CONTACT FORM
   ================================= */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

form label {
    font-size: 1.1em;
    text-align: left;
}

form input,
form textarea {
    background-color: #111;
    border: 1px solid #1affd5;
    color: #e0e0e0;
    padding: 10px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1em;
    border-radius: 5px;
}

form input:focus,
form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px #1affd5;
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

form button {
    background-color: #1affd5;
    color: #000;
    border: none;
    padding: 12px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

form button:hover {
    background-color: #fff;
    box-shadow: 0 0 15px #1affd5;
}
