/* Gallery grid */
.gallery-section {
    padding: 80px 10%;
    background: transparent;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #E6E6E6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background-color: #0D1F3C;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(62, 193, 230, 0.25);
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
