* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body, html {
    height: 100%;
    background-color: #000;
    color: #fff;
    overflow: hidden; 
}

.hero-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    position: relative;
    background: radial-gradient(circle at center, #420404 0%, #000000 85%);
    padding-top: 100px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.nav-logo {
    position: absolute;
    left: 40px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.nav-logo img {
    height: 35px;
    width: auto;
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 50px;
}

.navbar a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.navbar a:hover, 
.active-link {
    color: #fff !important;
}

.main-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-link {
    text-decoration: none !important;
    color: #ffffff !important;
    display: block;
    cursor: pointer;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 25px;
    animation: fadeIn 1.5s ease-out;
}

.logo-icon {
    width: 100px;
    height: auto;
    display: block;
}

.skylarlogo {
    font-size: 80px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .project-item, .project-item.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .nav-logo { left: 20px; }
    .navbar ul { gap: 20px; }
    .project-image {
        aspect-ratio: 4 / 3;
    }
    .project { font-size: 20px; }
}