/* =======================================
   HERO POČETNE STRANE — KOMPAKTAN
======================================= */

.hero-home {
    min-height: 45vh; /* dovoljno da izgleda jako, ali ne preveliko */
    background: url("../images/background.jpg") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 80px 0; /* razmak gore/dole oko teksta */
}

/* Poluprozirna kutija samo oko teksta */
.hero-content {
    position: relative;
    padding: 35px 60px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 18px;
}

/* Tekst */
#heroFadeText {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.85);
    margin: 0;

    opacity: 0;
    transform: scale(1);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        padding: 25px 35px;
    }

    #heroFadeText {
        font-size: 2.8rem;
    }
}
