 /* Osnovni reset */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Arial Black', 'Arial', sans-serif;
        }

        /* Pozadina preko cijelog ekrana sa tamnim slojem */
        body {
            background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), 
                        url('pozadina.jpg') no-repeat center center fixed;
            background-size: cover;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        /* --- NAVIGACIJA (MENI) - UKLONJENA CRNA PODLOGA --- */
        header {
            width: 100%;
            background-color: transparent; /* Meni je sada potpuno proziran */
            padding: 30px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
        }

        /* Stil za logo */
        .logo-text {
            color: #ffffff;
            font-size: 1.6rem;
            font-weight: 900;
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); /* Sjenka za bolju čitljivost */
        }

        .logo-text span {
            color: #ffcc00;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.85rem;
            text-transform: uppercase;
            font-family: 'Arial', sans-serif;
            font-weight: bold;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); /* Sjenka za bolju čitljivost */
        }

        nav ul li a:hover, nav ul li a.active {
            color: #ffcc00;
        }

        /* --- GLAVNI SADRŽAJ --- */
        .hero-section {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 120px 20px 40px 20px;
            text-align: center;
        }

        .content {
            max-width: 900px;
            color: white;
            /* Animacija pojavljivanja */
            animation: podigniSadrzaj 1.2s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .welcome-text {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            font-family: 'Arial', sans-serif;
            font-weight: bold;
        }

        .welcome-text span {
            color: #ffcc00;
        }

        h1 {
            font-size: 3.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.2;
            margin-bottom: 10px;
            font-weight: 900;
        }

        .subtitle {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: #dddddd;
            margin-bottom: 40px;
            font-family: 'Arial', sans-serif;
        }

        /* --- DUGME --- */
        .btn-contact {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: transparent;
            color: white;
            border: 2px solid #ffcc00;
            padding: 15px 40px;
            font-size: 1rem;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
        }

        .btn-contact:hover {
            background-color: #ffcc00;
            color: #111;
            transform: translateY(-3px);
            box-shadow: 0 5px 25px rgba(255, 204, 0, 0.4);
        }

        .btn-contact i {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .btn-contact:hover i {
            transform: translateX(4px);
        }

        /* --- ANIMACIJA --- */
        @keyframes podigniSadrzaj {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- RESPONSIVNOST (MOBILNI TELEFONI) --- */
        @media (max-width: 768px) {
            header {
                padding: 20px;
                flex-direction: column;
                gap: 15px;
            }

            nav ul {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            h1 {
                font-size: 2.2rem;
            }

            .welcome-text {
                font-size: 1rem;
            }

            .subtitle {
                font-size: 0.9rem;
                letter-spacing: 2px;
            }

            .btn-contact {
                width: 100%;
                padding: 12px 25px;
            }
        }