* {
    box-sizing: border-box;
}

body, html {
    background-color: darkslateblue;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Navigation Menu */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1000;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 60px;
}

.image-container {
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

.content {
    max-width: 1200px;
    width: 100%;
    color: white;
    font-family: Arial, sans-serif;
    padding-left: 2rem;
    padding-right: 2rem;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

footer a {
    color: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.7;
}

/* Projects Page Specific Styles */
.projects-main {
    align-items: flex-start;
    padding-top: 100px;
}

.projects-title {
    margin-top: 0;
    margin-bottom: 3rem;
}

.project {
    margin-bottom: 3rem;
}

.firefox-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.firefox-button:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }

    .logo-link img {
        height: 40px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 14px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content h2 {
        font-size: 1.3rem;
    }
}
