.gallery-page {
    padding: 120px 5% 5rem 5%;
    min-height: 100vh;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #ccc;
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
    padding-bottom: 2rem;
}

.gallery-item {
    margin-bottom: 20px;
    break-inside: avoid;
    overflow: hidden;
    border-radius: 12px;
    display: block; /* Prevents column break inside */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #1a1a1a; /* Placeholder if image loads slow */
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
    .gallery-title {
        font-size: 3rem;
    }
}
