/* Osnovna podešavanja */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Korišćenje ozbiljnijeg serifnog fonta za advokaturu ako je dostupan, inače sistemski */
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, .logo, .btn {
    font-family: system-ui, -apple-system, sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigacija */
header {
    background: #0f172a; /* Tamno teget */
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Razmak između slike logotipa i teksta */
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.logo-img {
    height: 40px; /* Prilagodi visinu logotipa po želji */
    width: auto;
}

.logo span {
    color: #d4af37; /* Zlatna boja za ime */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: #e2e8f0;
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d4af37;
}

/* Hero sekcija sa pozadinskom slikom */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), 
                url('images/law.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #f8fafc;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #cbd5e1;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 3px solid #d4af37;
}

/* Dugmad */
.btn {
    display: inline-block;
    background: #d4af37;
    color: #0f172a;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: #b5952f;
    transform: translateY(-2px);
}

/* Opšte sekcije */
.content-section {
    padding: 80px 0;
}

.bg-light {
    background: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.line {
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin: 15px auto 0;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #475569;
}

/* Mreža usluga (Flexbox centriranje) */
.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centrira kartice u redu, uključujući i donje dve */
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    border-top: 4px solid #d4af37;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    
    /* Širina kartice u redu */
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 350px;
    
    /* Centriranje teksta i naslova unutar kartice */
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.card h3 {
    margin-bottom: 15px;
    color: #0f172a;
    font-size: 1.3rem;
}

.card p {
    color: #64748b;
}

/* Kontakt */
.contact-info {
    text-align: center;
    font-size: 1.2rem;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    color: #0f172a;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    color: #d4af37;
}

/* Podnožje */
footer {
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 25px 0;
    font-family: system-ui, sans-serif;
    border-top: 2px solid #d4af37;
}

/* Responzivnost za mobilne telefone */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    nav ul li a {
        margin: 5px 10px;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        text-align: center;
    }
}