/* Reset i moderni font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #fff;
    padding-bottom: 120px;
}

header {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    text-align: center;
    padding: 20px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative; /* više nije fixed */
}


.opis {
    font-size: 16px;
    color: #eee;
    margin-bottom: 10px;
}

.logo {
    position: relative;
    display: inline-block;
    padding: 20px;
    animation: pulseGlow 2s infinite;
    background: none;
    border-radius: 50px;
}

.logo img {
    height: 60px;
    z-index: 2;
    position: relative;
}

/* Glow efekat */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 2px #00ffae, 0 0 5px #00ffae, 0 0 10px #00ffae;
    }
    50% {
        box-shadow: 0 0 5px #00ffae, 0 0 10px #00ffae, 0 0 20px #00ffae;
    }
    100% {
        box-shadow: 0 0 2px #00ffae, 0 0 5px #00ffae, 0 0 10px #00ffae;
    }
}


/* NASLOV */
.naslov h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    color: #00ffae;
    text-shadow: 0 0 10px #00ffae;
}

/* SEGMENTI */
.segment {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin: 30px auto;
    padding: 30px 20px;
    max-width: 700px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(0, 255, 174, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.segment h1 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 2px solid #00ffae;
    padding-bottom: 10px;
}

/* KONTEJNER ZA ARTIKLE */
.container {
    background: #ffffff10;
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    margin: 10px 0;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.container:hover {
    background: #00ffae20;
    transform: translateY(-2px);
    border-color: #00ffae60;
}

.naziv, .cena {
    font-size: 18px;
    color: #f1f1f1;
}

/* FOOTER */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    text-align: center;
    padding: 15px;
}

.ikonice a {
    margin: 0 15px;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.ikonice a:hover {
    transform: scale(1.2);
    color: #00ffae;
}
