.hidden {
    position: absolute;
    overflow: hidden;
    width: 0;
    height: 0;
    pointer-events: none;
}

.message {
    position: relative;
    z-index: 100;
    display: none;
    padding: 1em;
    text-align: center;
    color: var(--color-bg);
    background: var(--color-text);
}

.icon {
    display: block;
    width: 1.5em;
    height: 1.5em;
    margin: 0 auto;
    fill: currentColor;
}

.icon--keyboard {
    display: none;
}

.project-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.project-card:nth-child(even) {
    flex-direction: row-reverse;
}

.project-image {
    flex: 0 0 50%;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-content {
    flex: 0 0 50%;
    padding: 2rem;
}

.project-content h3 {
    color: #FFD700;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.project-content p {
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-links a {
    padding: 0.5rem 1.5rem;
    border: 1px solid #FFD700;
    border-radius: 4px;
    color: #FFD700;
    transition: all 0.3s ease;
}

.project-links a:hover {
    background: #FFD700;
    color: #000;
}