* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #0a0e27;
    color: #2d333a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/artifacts/images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.1);
    pointer-events: none;
    z-index: 1;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo {
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: #2d333a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #3b82f6;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 8px 0;
    margin-top: 8px;
    min-width: 180px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #2d333a;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #f7f7f8;
    color: #2563eb;
}

/* Project/Resume Page Styles */
.project-page, .resume-page {
    flex: 1;
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

.project-page .container, .resume-page .container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.project-page h1, .resume-page h1 {
    font-size: 32px;
    font-weight: 600;
    color: #2d333a;
    margin-bottom: 16px;
}

.coming-soon {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 24px;
}

.project-page p, .resume-page p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.back-link {
    display: inline-block;
    margin-top: 24px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #60a5fa;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 255, 255, 0.4);
    padding: 24px;
    margin-top: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
    }

    .nav-menu {
        gap: 16px;
    }

    .project-page, .resume-page {
        padding: 24px 16px;
    }

    .project-page .container, .resume-page .container {
        padding: 24px;
    }

    .project-page h1, .resume-page h1 {
        font-size: 24px;
    }
}
