/* Portfolio Page Hero */
.portfolio-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.portfolio-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.portfolio-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 2rem;
    opacity: 0.95;
}

.portfolio-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Portfolio Gallery */
.portfolio-gallery {
    padding: 60px 0;
}

.gallery-grid {
    margin: 0 -12px;
}

.portfolio-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 1;
    text-decoration: none;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.08);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .portfolio-hero-title {
        font-size: 2rem;
    }

    .portfolio-hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .portfolio-hero {
        height: 300px;
    }

    .portfolio-hero-title {
        font-size: 1.5rem;
    }

    .portfolio-gallery {
        padding: 40px 0;
    }
}

/* Lightbox customization */
.lightbox-image {
    margin-bottom: 0;
}

.lb-outerContainer {
    background-color: rgba(0, 0, 0, 0.95);
}

.lb-caption {
    color: #fff;
    font-size: 14px;
    margin-top: 8px;
}
