#portfolio {
    padding: 6rem 0;
}

#portfolio h2 {
    font-family: 'Futura', sans-serif;
    color: #d4af37;
    margin-bottom: 2rem;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
    color: #e0e0e0;
    padding: 1.5rem;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.portfolio-item p {
    font-family: 'Playfair Display', serif;
}