/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fffcfc;
    font-family: "Arial, sans-serif";
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* VANTA pozadina */
#vanta-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Da bude iza svega */
}

/* Logo */
.logo {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 80px;
    width: auto;
    z-index: 1000;
}

/* Hamburger menu */
.menu-toggle {
    position: fixed;
    top: 60px;
    left: 20px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1000;
    color: white;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: rotate(90deg);
}

/* Navigacija */
#menu {
    position: fixed;
    top: 60px;
    left: 50px;
    background: rgba(0,0,0,0.9);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

#menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#menu a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

#menu a:hover {
    background: transparent;
    color: #000;
}

section {
    padding: 160px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

h1 {
    font-size: 32px;
    margin-bottom: 25px;
}

h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 900px;
}

.text-box {
    background: transparent;
    padding: 30px;
    border-radius: 15px;
    max-width: 1000px;
    margin-bottom: 30px;
    text-align: center;
}

img.section-img,
.aboutus-img,
.home-img {
    display: block;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.6);
    max-width: 300px;
    height: auto;
}

.links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.links img {
    width: 160px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.links img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.7);
}

footer {
    background: transparent;
    padding: 20px;
    font-size: 16px;
    text-align: center;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-img {
    position: fixed;
    bottom: 0px;
    right: 10px;
    width: 220px;
    border-radius: 12px;
    z-index: 1000;
}

.lang-switcher {
    position: fixed;
    top: 10px;
    right: 10px;
    text-align: center;
    z-index: 200;
}

.lang-switcher p {
    margin: 0;
    font-weight: bold;
    font-size: 14px;
}

.lang-switcher button {
    margin-left: 0px;
    padding: 5px 10px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.6);
    color: rgb(233, 238, 245);
    font-weight: bold;
    font-size: 14px;
}

.lang-switcher button:hover {
    background-color: rgba(255,255,255,0.2);
}
/* Contact sekcija */
#contact h2 {
    color: #ffffff; /* Boja naslova */
    text-shadow: 0 0 6px rgba(0,0,0,0.8); /* da bude čitljiv na svetloj pozadini */
}

#contact p {
    color: #f5f5f5; /* Tekst ispod */
    font-weight: bold;
    text-shadow: 0 0 4px rgba(0,0,0,0.7);
}

#contact a {
    color: #00ffff; /* boja linkova (npr. cyan) */
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 0 4px rgba(0,0,0,0.7);
}

#contact a:hover {
    color: #ffae00; /* boja na hover */
    text-decoration: underline;
}
/* === Scroll progress bar === */
#progress-bar { 
  position: fixed; 
  top: 0; 
  left: 0; 
  height: 5px; 
  background: linear-gradient(90deg, #f4b400, red); 
  width: 0%; 
  z-index: 200; 
  transition: width 0.1s ease-out; 
}
