/* 
    MIBOX MONT - Finalni Style 
    Paleta: #0f172a (Tamno plava), #FFCC00 (Zlatna), #1e293b (Svijetlo plava)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Montserrat:ital,wght@1,900&display=swap');

:root {
    --gold: #FFCC00;
    --dark-bg: #0f172a;
    --card-bg: #111a2e;
    --glass: rgba(255, 255, 255, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: #cbd5e1;
    line-height: 1.6;
}

/* --- Tipografija --- */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

.accent {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
}

/* --- Navigacija --- */
.lang-btn {
    text-decoration: none;
    font-size: 1.1rem;
    padding: 5px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.lang-btn:hover, .lang-btn.active {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.2);
}

/* --- Hero Sekcija --- */
header {
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
}

/* --- Usluge i Sektori (Po uzoru na sliku) --- */
.sector-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.sector-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sector-card img {
    filter: grayscale(100%);
    transition: 0.5s ease;
    opacity: 0.4;
}

.sector-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Stil za listu pored Tesla slike */
#main-services-list li {
    list-style: none;
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

#main-services-list li:hover {
    padding-left: 10px;
    color: var(--gold);
}

/* --- Dugmad --- */
.btn-primary {
    background: var(--gold);
    color: black;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

/* --- Forme --- */
input, textarea {
    background: var(--glass) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

input:focus, textarea:focus {
    border-color: var(--gold) !important;
    outline: none;
}

/* --- Karijera (WhatsApp dugme) --- */
.whatsapp-btn {
    background-color: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* --- Footer --- */
footer {
    background: #0a0f1d;
}

/* --- Animacije --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeIn 0.8s ease-out forwards;
}
/* Video Hero Overlay */
header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #0f172a 0%, rgba(15, 23, 42, 0.4) 50%, #0f172a 100%);
    z-index: 1;
}

.sector-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-10px);
}

.btn-primary {
    background-color: var(--gold);
    color: #000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.4);
    transform: scale(1.05);
}

/* Glassmorphism za formu */
form {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}