.somali-showcase-container {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    overflow: hidden;
    position: relative;
    height: 500px;
}

.somali-showcase-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 20px;
}

.somali-image-item {
    background-size: cover;
    background-position: center;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.item-left {
    width: 20%;
    height: 70%;
    transform: perspective(1000px) rotateY(25deg);
    z-index: 1;
}

.item-center {
    width: 40%;
    height: 90%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-right {
    width: 20%;
    height: 70%;
    transform: perspective(1000px) rotateY(-25deg);
    z-index: 1;
}

.somali-image-item:hover {
    width: 45%;
    height: 100%;
    transform: perspective(1000px) rotateY(0deg);
    z-index: 3;
}

.somali-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.item-center .somali-overlay {
    opacity: 1;
}

.somali-overlay h2 {
    color: #fff;
    font-size: 2rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    font-family: 'Amiri', serif;
}

/* Responsive */
@media (max-width: 768px) {
    .somali-showcase-container {
        height: auto;
    }
    .somali-showcase-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    .somali-image-item {
        width: 90% !important;
        height: 250px !important;
        transform: none !important;
    }
}
