/* Gallery Layout */
.gallery-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.gallery-title {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    display: block !important; /* Forces title visibility */
}

.gallery-grid {
    display: grid;
    /* Responsive grid: fits 4 columns on desktop, 1 on mobile automatically */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* Pagination Styling */
.pagination-wrapper {
    margin-top: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-btn {
    padding: 10px 18px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
}

.page-btn:hover {
    background-color: #2980b9;
}

.page-btn.disabled {
    background-color: #ecf0f1;
    color: #95a5a6;
    pointer-events: none;
    border: 1px solid #dee2e6;
}

.page-info {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 0 15px;
}

.no-data {
    text-align: center;
    grid-column: 1 / -1;
    color: #95a5a6;
    font-style: italic;
}