/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Header */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: auto;
}

/* Navigation */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 60vh; /* još kraće nego pre */
    display: flex;
    align-items: flex-start; /* sadržaj ide bliže vrhu */
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 20px 20px 10px; /* manji padding */
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-top: -20px; /* još više podignuto */
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: -20px;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #f1f1f1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-button {
    background-color: #f04e23;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button i {
    margin-left: 8px;
}

/* Featured Services */
.featured-services {
    padding: 20px 20px; /* smanjen padding */
    max-width: 1200px;
    margin: 0 auto;
    margin-top: -40px; /* još bliže hero sekciji */
}

.featured-services h2 {
    text-align: center;
    margin-bottom: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.service img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.service h3 {
    margin-top: 15px;
    margin-bottom: 10px;
}

.service p {
    font-size: 0.95em;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .hero {
        min-height: auto;
        padding: 40px 20px 20px;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .cta-button {
        padding: 10px 20px;
    }

    .featured-services h2 {
        font-size: 1.5em;
    }
}



 