/* ==================== GALLERY ==================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(232, 240, 228, 0.3) 0%, rgba(212, 163, 115, 0.1) 100%);
    border-radius: var(--radius-lg);
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(45, 90, 39, 0.18);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.gallery img:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 25px 55px rgba(45, 90, 39, 0.25);
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
        margin: 50px 0;
    }
    .gallery img {
        height: 140px;
    }
}

@media (max-width: 640px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin: 40px 0;
    }
    .gallery img {
        height: 100px;
    }
}

/* Owner Gallery */
.owner-gallery {
    margin: 60px 0;
    padding: 50px;
    background: white;
    border-radius: var(--radius-lg);
}

.owner-gallery h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
