body.bg2 {
    padding: 0 !important;
    margin: 0 !important;
}

.onama-container {
    width: 100%;
    padding: 20px 40px;
    box-sizing: border-box;
    margin-top: 160px; /* da se poravna sa headerom, po potrebi menjaj */
    min-height: 100px;
}

.onama-naslov {
    font-family: 'Century Gothic', Arial, sans-serif;
    text-align: center;
    font-size: 3rem; 
    color: white;
    margin: 10px 0 20px 0; 
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

/* GRID RASPORED 2x2 — BEZ SKROLOVANJA */
.onama-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    grid-auto-rows: 1fr; /* visina bloka = visina sadržaja */
}

.onama-blok {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 18px;
    padding: 6px 14px;
    color: white;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* HOVER EFEKAT */
.onama-blok:hover {
    background: rgba(0, 0, 0, 0.65);
    transform: translateY(-5px);
}

.onama-blok h2 {
    font-size: xx-large;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.onama-blok h2 i {
    margin-right: 8px;
    color: #00ff00;
}

/* TEKST */
.onama-blok p {
    font-size: 16px;
    line-height: 1.35;
    margin: 0;
}
.text-justify {
    text-align: justify;
    text-justify: inter-word;
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .onama-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile polish: unify spacing, alignment and readability for small screens */
@media (max-width: 768px) {
    .onama-container {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 120px; /* reduce top gap on small screens */
        box-sizing: border-box;
    }

    .onama-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: stretch;
        grid-auto-rows: auto; /* allow blocks to size to their content on mobile */
    }

    .onama-blok {
        padding: 16px;
        border-radius: 12px;
        display: block;
        width: 100%;
        box-sizing: border-box;
        overflow: visible; /* ensure height follows content */
    }

    .onama-blok h2 {
        font-size: 1.25rem;
        margin-bottom: 10px;
        text-align: center; /* center headings on mobile */
        display: flex; /* center icon + title horizontally */
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    /* ensure the green icon sits centered next to the title on mobile */
    .onama-blok h2 i {
        margin: 0; /* remove default right-margin that shifts alignment */
        display: inline-block;
        align-self: center;
        color: #00ff00;
        font-size: 1.05rem;
    }

    .onama-blok p {
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
        text-align: center; /* center paragraph text on mobile */
        color: #e6e6e6;
    }

    .naslov-recenzije, .onama-naslov {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem);
        text-align: center;
        margin-bottom: 14px;
    }
    /* Match main title size from other pages on mobile only */
    .onama-naslov {
        font-size: 3rem !important;
    }
}
/* Google recenzije – sekcija */
.recenzije-container {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin-top: 40px; /* ostavi malo prostora iznad */
}

/* Naslov recenzija */
.naslov-recenzije {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 2.6rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    text-align: center;
}
