/* General mobile styles */
body {
    font-size: 14px;
    margin: 0;
    padding: 0;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    text-align: justify; /* Dodato za justified tekst */
}

#header {
    padding: 10px 0;
    text-align: center;
}

#header a.logo img {
    width: 100px;
}

#navigation {
    display: block;
    text-align: center;
}

#navigation li {
    display: block;
    margin: 10px 0;
}

#navigation li a {
    font-size: 16px;
}

#body {
    padding: 20px 10px;
    text-align: left; /* Promenjeno iz center u justify */
}

#featured {
    position: relative;
}

#featured img {
    width: 100%;
    height: auto;
}

#featured div {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 10px;
    width: 90%;
    box-sizing: border-box;
}

#featured h2 {
    font-size: 24px;
    margin: 0;
    color: #ECECEC;
}

#featured span {
    font-size: 16px;
    color: #3498DB;
}

#footer {
    padding: 10px 0;
    text-align: center;
}

#footer p {
    font-size: 12px;
}

#body img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

/* Adjustments for smaller screens */
@media screen and (max-width: 568px) {
    body {
        padding: 0;
    }

    #header {
        padding: 5px 0;
    }

    #header a.logo img {
        width: 80px;
    }

    #navigation li {
        margin: 5px 0;
    }

    #navigation li a {
        font-size: 14px;
    }

    #body {
        padding: 10px 5px;
    }

    #featured img {
        max-height: 200px;
    }

    #featured div {
        padding: 5px;
        width: 90%;
    }

    #featured h2 {
        font-size: 20px;
    }

    #featured span {
        font-size: 14px;
    }

    #footer {
        padding: 5px 0;
    }

    #footer p {
        font-size: 10px;
    }
}

#featured img {
    width: 100%;
    height: auto;
}

#intro {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ECECEC;
    border-radius: 10px;
    margin-top: 10px;
}

#intro h2 {
    font-size: 24px;
}

#intro span {
    font-size: 16px;
}

.article a:visited {
    text-decoration: none; 
    color: #3498DB;
}

.article a:link {
    text-decoration: none; 
    color: #3498DB;
}

.article a:hover {
    color: #fff;
}

/* Dodato za bulleted listu sa ikonama */
ul.bulleted-list {
    list-style: none;
    padding: 0;
}

ul.bulleted-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

ul.bulleted-list li:before {
    content: url('path/to/icon.png'); /* Putanja do ikone */
    margin-right: 10px;
}



.article a:visited {
	text-decoration:none; color: #3498DB;
}

.article a:link {
	text-decoration:none;color: #3498DB;
}

.article a:hover {
	color: #fff;
}


#body h1, h2, h3 {
	color: #3498DB;}


.article li {
    padding-top: 25px;
}

