
/* =========================================
   GALLERY – IMAGE CARDS ONLY
========================================= */
.gallery-wrapper {
    overflow: hidden;
}


/* كرت خاص بالمعرض فقط */
.gallery-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* حاوية الصورة بنسبة ثابتة */
.gallery-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1.5; /* مربع – ممتاز للستيكرات */
    background: #f8f9fa;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* الصورة */
.gallery-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* عرض كامل بدون قص */
    object-position: center;
    transition: transform 0.35s ease;
}

/* Hover effect */
.gallery-card:hover img {
    transform: scale(1.05);
}

/* جسم الكرت */
.gallery-card .card-body {
    text-align: center;
    padding: 0.75rem;
    margin-top: auto;
}

/* العنوان */
.gallery-card .card-title {
    font-size: 1.3rem;
    min-height: 20px;
}

.highlighted {
  animation: highlight-fade 2s ease-in-out;
  background-color: rgba(255, 230, 100, 0.6);
  border: 4px solid #ffb032;
  border-radius: 15px;
}
@keyframes highlight-fade {
  0% { background-color: rgba(255, 230, 100, 0.9); }
  100% { background-color: rgba(255, 230, 100, 0); }
}


/* تحسين الموبايل */
@media (max-width: 576px) {
    .gallery-card .card-title {
        font-size: 1rem;
    }
}


