* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0d0d0d; /* Zatamnjeno da paše uz ostale stranice */
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    color: white;
    /* Flexbox na body-ju omogućuje lako centriranje content-wrappera */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* NAVBAR (Potpuno prenesen iz style.css) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.navbar .nav-links {
    display: flex;
    gap: 40px;
}

.navbar .nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #6EBFC4;
}

.navbar .logo {
    width: 35px;
    height: 35px;
    background: white;
    mask: url('photos/logo.png') no-repeat center;
    -webkit-mask: url('photos/logo.png') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    transition: 0.3s;
}

.navbar .logo:hover {
    background: #6EBFC4;
    cursor: pointer;
}


/* CONTENT WRAPPER - Centrira sve vertikalno na sredinu ekrana */
.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 70px; /* Odmak za navigaciju */
    padding: 40px 20px;
}

/* NASLOVI */
h1 {
    font-family: 'Playfair Display SC', serif;
    font-size: 60px;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.8);
}

h2 {
    color: #6EBFC4;
    font-size: 24px;
    text-align: center;
    font-family: 'Playfair Display SC', serif;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

/* TEKST (Poruka o zatvorenim pozicijama) */
p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* GUMB (Kontaktirajte nas - stil preuzet s Home stranice) */
.mail {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 16px 45px;
    background: white;
    color: #1A1A1A;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn:hover {
    background-color: #6EBFC4;
    color: white;
    box-shadow: 0 6px 20px rgba(110, 191, 196, 0.4);
    transform: translateY(-2px);
}

/* RESPONSIVNI DIZAJN */
@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .navbar .nav-links { display: none; }
    
    h1 { font-size: 45px; }
    h2 { font-size: 18px; margin-bottom: 40px; }
    p { font-size: 20px; margin-bottom: 40px; }
}