* {
    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; 
}

.container {
    display: flex;
    flex-direction: row;
    height: 100vh;
    width: 100%;
    position: relative;
    background: radial-gradient(circle at 75% 50%, #420404 0%, #000000 100%);
    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;
}


.portrait-side {
    flex: 1.1;
    background-image: url('../skylar_photo.png');
    background-size: cover;
    background-position: center;
}

.content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
}

.about-logo-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInMove 1.5s ease-out forwards;
}

.logo-icon {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.skylarlogo {
    font-size: 70px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    max-width: 420px;
    margin-bottom: 25px;
}

.past-work {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid #fff;
    padding-bottom: 3px;
    transition: 0.3s;
    display: inline-block;
}

.past-work:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

@keyframes fadeInMove {
    from { opacity: 0; transform: translateY(30px); }
    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; }
}