/* galerie.css - Gallery Page Styles */

/* Header section centering and typography */
.gallery-section-header {
    text-align: center !important;
    margin: 80px auto 60px !important;
    padding: 0 20px;
}

.gallery-section-header h1 {
    font-size: 3.8rem;
    color: #1a202c;
    font-weight: 800;
    margin-bottom: 30px;
    display: block;
    text-align: center;
    line-height: 1.1;
}

.gallery-intro-text {
    max-width: 800px;
    margin: 0 auto 80px !important;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333333;
    text-align: center !important;
    display: block;
}

/* Unified responsive grid layout */
.gallery-grid-1to1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 100px;
}

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


.gallery-item {
    width: 100%;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(250px, 30%, 400px), 1fr));
    gap: 30px;
    margin-bottom: 60px;
}



.gallery-section-header h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
}
