* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1;
    overflow-x: hidden;
}



.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 40px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(3px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
    text-decoration: none;
}

.brand-title {
    font-size: 12px;
    font-weight: 400;
    color: #888888;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    margin-top: 10px;
}

.nav-item {
    color: #888888;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #F1A04B;
}





.portfolio-section {
    background-color: #060606;
    padding: 80px 0;
    min-height: 100vh;
    padding-top: 100px;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.portfolio-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: center;
}

.images-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.image-item {
    position: relative;
    width: 300px;
    height: 800px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    position: relative;
}

.image-1 {
    background-image: url(images/graphic1.png);
    background-size: cover;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0;
            transform: translateY(-100px);
            animation: slideInFromAbove 3s ease-out 0.5s forwards;
}

.image-2 {
    background-color: #888;
    background-image: url(images/graphic2.png);
    background-size: cover;
    opacity: 0;
            transform: translateY(-100px);
            animation: slideInFromAbove 2s ease-out 0.5s forwards;
}

.image-3 {
    background-image: url(images/graphic3.png);
    background-size: cover;
    opacity: 0;
            transform: translateY(-100px);
            animation: slideInFromAbove 1.5s ease-out 0.5s forwards;
}

    @keyframes slideInFromAbove {
            from {
                opacity: 0;
                transform: translateY(-100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(-90deg);
    white-space: nowrap;
}

.image-item:hover .image-placeholder {
    filter: grayscale(100%) contrast(1.2) brightness(0.8);
    transform: scale(1.05);
}

.image-item:hover .overlay {
    opacity: 1;
}

.image-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-content {
    max-width: 800px;
    padding-left: 160px;
    justify-content: flex-end;
    text-align: right;
    align-items: flex-end;
}

.portfolio-title {
    font-size: 4.5rem;
    font-weight: bold;
    color: #a27c53;
    margin-bottom: 30px;
    letter-spacing: 2px;
    line-height: 1.1;
}

.portfolio-subtitle {
    font-family: "Texturina", serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-style: italic;
    letter-spacing: 1px;
}

.portfolio-description {
    font-size: 14px;
    line-height: 1.8;
    color: #cccccc;
    text-align: right;
}

.footer {
    padding: 40px;
    background-color: #000000;
    border-top: 1px solid #222222;
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 11px;
    color: #666666;
    font-weight: 300;
}

.footer-right {
    display: flex;
    gap: 35px;
}

.footer-link {
    color: #888888;
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}
