﻿/* Gallery Page */
.gallery-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

    .gallery-section h1 {
        font-size: 2.2rem;
        color: #333;
        margin-bottom: 15px;
    }

    .gallery-section p {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 20px;
    }

/* Gallery Grid */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.gallery-item {
    width: auto;
    height: 500px;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

