/* Globalni stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* HEADER & NAVIGACIJA */
header {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease-in-out;
}

.hamburger-menu {
    font-size: 35px;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease-in-out;
}

.hamburger-menu:hover {
    transform: scale(1.2);
}

/* NAVIGACIONI MENI */
nav ul {
    list-style: none;
    background: rgba(52, 73, 94, 0.95);
    position: absolute;
    top: 70px;
    left: -260px;
    width: 240px;
    transition: left 0.4s ease-in-out;
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease-in-out;
}

nav ul.show {
    left: 10px;
    opacity: 1;
    transform: translateX(0);
}

nav ul li {
    text-align: center;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 12px 20px;
    display: block;
    transition: background 0.3s ease, transform 0.2s;
}

nav ul li a:hover {
    background: #208b8b;
    transform: scale(1.05);
}

/* WELCOME SEKCIJA */
.welcome-section {
    padding: 140px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1a3d4c, #3498db);
    color: white;
    margin-bottom: 30px;
    border-bottom: 10px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1.5s ease-in-out;
}

.welcome-section h1 {
    font-size: 50px;
    margin-bottom: 15px;
    animation: slideDown 1.5s ease-in-out;
}

.welcome-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    animation: slideUp 1.5s ease-in-out;

}

.welcome-section .welcome-image {
    margin-top: 70px; /* Razmak iznad slike */
    margin-bottom: 20px; /* Razmak ispod slike */
    text-align: center; /* Centriranje slike */
}

.welcome-section .welcome-image img {
    max-width: 200px; /* Maksimalna širina slike */
    height: auto; /* Automatsko prilagođavanje visine */
    border-radius: 10px; /* Blago zaobljeni uglovi slike */
    
}
r.required-files-section {
    background-color: #f9f9f9;
    padding: 20px 40px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.required-files-section h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.required-files-section p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.required-files-section ul {
    list-style-type: none;
    padding: 0;
}

.required-files-section ul li {
    margin-bottom: 15px;
    text-align: center;
}

.required-files-section ul li a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.required-files-section ul li a:hover {
    color: #0056b3;
    transform: scale(1.1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.instructions-section {
    background-color: #eaf4fc; /* Svetloplava pozadina */
    padding: 30px 40px; /* Unutrašnji razmak */
    margin: 20px auto; /* Centriranje sekcije */
    border-radius: 10px; /* Zaobljeni uglovi */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Blaga senka */
    max-width: 800px; /* Maksimalna širina sekcije */
    text-align: center; /* Centriranje teksta */
}

.instructions-section h2 {
    font-size: 2em; /* Veći font za naslov */
    color: #0056b3; /* Tamnoplava boja */
    margin-bottom: 15px; /* Razmak ispod naslova */
    font-weight: bold; /* Podebljan tekst */
}

.instructions-section p {
    font-size: 1.2em; /* Veći font za paragraf */
    color: #333; /* Tamnosiva boja */
    margin-bottom: 20px; /* Razmak ispod paragrafa */
}

.instructions-section ol {
    font-size: 1.1em; /* Font za listu */
    color: #333; /* Tamnosiva boja */
    margin: 0 auto; /* Centriranje liste */
    padding-left: 0; /* Uklanjanje podrazumevanog uvlačenja */
    list-style-position: inside; /* Brojevi unutar margine */
}

.instructions-section ol li {
    margin-bottom: 10px; /* Razmak između stavki liste */
}


/* FOOTER */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

/* ANIMACIJE */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
