/* ============================================
   Gallery Section - معرض الأعمال
   ============================================ */

.gallery {
    padding: var(--spacing-xl) 2rem;
    background: var(--white);
}

.gallery-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--dark-blue);
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26, 42, 78, 0.9) 100%);
    transition: all var(--transition-normal);
}

.gallery-item:hover::after {
    background: linear-gradient(to bottom, rgba(201, 169, 97, 0.3) 0%, rgba(26, 42, 78, 0.95) 100%);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: linear-gradient(135deg, rgba(201,169,97,0.2), rgba(26,42,78,0.8));
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1.5rem;
    color: var(--white);
    z-index: 10;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    font-size: 0.9rem;
    color: var(--light-gray);
}
