/* --- Gallery Container --- */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 16px;
    box-sizing: border-box;
}

/* --- Gallery Items --- */
.gallery-item {
    flex: 0 1 calc(45% - 16px);
    max-width: 220px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .gallery-item { flex: 0 1 calc(48% - 16px); }
}

@media (max-width: 480px) {
    .gallery-item { flex: 0 1 calc(80% - 16px); }
}


/* Center logo and make it responsive */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.logo-container img {
    width: 320px;
    max-width: 80%;
    height: auto;
    display: block; /* ensures proper centering */
}

/* Responsive adjustments for logo */
@media (max-width: 768px) {
    .logo-container {
        margin: 1.5rem 0;
    }
    .logo-container img {
        width: 280px;
        max-width: 70%;
    }
}

@media (max-width: 480px) {
    .logo-container {
        margin: 1rem 0;
    }
    .logo-container img {
        width: 220px;
        max-width: 90%;
    }
}