/* Bootstrap 5 Custom Styles */
body {
    padding-top: 56px;
    background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.portfolio-item {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.work-image-container {
    padding: 2rem;
    background: #fff;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.work-image-container img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 0.25rem;
}

.work-title {
    margin-bottom: 2rem;
    padding-top: 1rem;
    font-size: 2.5rem;
    font-weight: 300;
}

footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-img-top {
        height: 150px;
    }
    
    .work-title {
        font-size: 2rem;
    }
}
