.gallery-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 0 10px; /* Uklonio padding-left da se osigura centriranje */
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centriranje galerije */
    width: 100%;
}

.row {
    display: flex;
    justify-content: center; /* Centriranje slika unutar reda */
    margin-bottom: 20px; /* Razmak između redova */
}

.column {
    flex: 1 1 calc(50% - 20px); /* 2 kolone, oduzimanje margina */
    margin: 10px; /* Razmak između kolona */
    max-width: calc(50% - 20px); /* Maksimalna širina kolone */
}

.image-container {
    position: relative;
    width: 400px;
    height: 200px; /* Povećana visina slika */
    overflow: hidden;
    margin: 0 10px; /* Razmak između slika u redu */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #d4af37;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.text-top {
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 10px 2px 10px;
    z-index: 1;
    text-align: center;
    color: #d4af37;
    font-weight: bold;
    font-size: 24px;
}

.numbers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    left: 10px;
    top: 60%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 2px 5px;
}

.numbers div {
    margin: 5px 0;
}

.centered-title {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: bold;
}
