/* 1. OSNOVNI STIL I RESET */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    padding-top: 80px; /* Ovo osigurava da sadržaj ne bude ispod navigacije */
    margin: 0;
}

/* 2. HEADER I VODORAVNA NAVIGACIJA */
.site-header {
    background-color: #ffffff;
    border-bottom: 2px solid #e9ecef;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #333;
    font-size: 1.1rem;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: #D4AF37; /* Zlatna boja na hover */
}

/* 3. HERO SEKCIJA I GUMBI */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.btn-primary {
    background-color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #ffffff !important;
    padding: 10px 25px;
    font-weight: 700;
}

.btn-outline-light {
    border: 2px solid #D4AF37 !important;
    color: #D4AF37 !important;
    padding: 10px 25px;
}

/* 4. DRUŠTVENE MREŽE */
.social-icon {
    font-size: 1.5rem;
    margin: 0 10px;
    transition: 0.3s;
}
.social-icon:hover { transform: scale(1.2); }
.wa-color { color: #25D366; }
.fb-color { color: #1877F2; }
.ig-color { color: #E1306C; }
/* Prisilno vodoravni prikaz */
.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
}

.nav-item {
    display: inline-block !important;
    float: left !important;
}

/* Uklanjanje točkica ako se pojavljuju */
ul.navbar-nav {
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}