﻿body {
    background-color: #080808;
    color: #ffffff;
    font-family: "Helvetica", "Arial", sans-serif;
    
}

.top-bar {
    display: flex; /* Left + right on same line */
    justify-content: space-between; /* Push sides apart */
    align-items: flex-start; /* Align to top */
    padding: 20px; /* Space inside */
}

.left-text {
    text-align: left;
}

.mid-text {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.right-text {
    text-align: right;
    font-family: 'Georgia', serif; 
}

.big-text {
    font-size: 24px;
    font-weight: bold;
    margin: 0; /* Remove default paragraph spacing */
}

.contact-text {
    font-size: 20px;
    margin: 0;
}

.small-text {
    font-size: 16px;
    margin: 4px 0 0 0; /* Small gap on top */
}

.highlight {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.note {
    font-size: 14px;
    margin: 4px 0 0 0;
}

.grid-container {
    display: grid; 
    grid-template-columns: repeat(2, auto); 
    grid-template-rows: repeat(2, auto); 
    gap: 10px 100px; 
}

/* */

.subtitle {
    font-size: 18px;
    margin-top: 8px;
}

.contact {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

a {
    color: white;
    text-decoration: none;
}

.copy-icon {
    cursor: pointer;
    font-size: 20px;
    transition: transform 0.2s;
}

    .copy-icon:hover {
        transform: scale(1.2);
    }

/* icons */

.project-icons {
    display: flex;
    margin-left: 20px;
}

    .project-icons img {
        background-color: #2B2B2B;
        border-radius: 10px;
        padding: 10px;
        gap: 15px;
        margin: 0 0 0 15px;

        transform: translateY(15px);
        transition: transform 0.2s ease;

        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .project-icons img:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

.project-item p {
    margin: 40px 40px 90px 40px;
    font-size: 20px;
    background-color: #2B2B2B;
    border-radius: 10px;
    padding: 10px;
    gap: 15px;
}

.project-title {
    font-size: 36px;
}

.project-pictures img {
    width: 32.6%;
    height: auto;
}

.project-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    /* Visible (triggered) state */
    .project-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

