/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        background: url('./slike2/kon1.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Sticky Header */
header {
    position: static;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    color: white;
    z-index: 10;
    padding: 1px 0;
}

header nav {
    display: flex;
    justify-content: center; /* Center the navigation menu */
    align-items: center;
}

header #branding img {
    max-height: 60px;
    margin-right: 20px; /* Add some space to the right of the logo */
}

header nav ul {
    list-style-type: none;
    display: flex;
    margin: 0;
}

header nav li {
    padding: 0 20px;
}

header nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    transition: color 0.3s;
}

header nav .current a {
    color: #ff9800; /* Highlight active menu */
}

header nav a:hover {
    color: #ff9800; /* Hover color change */
}
.language-switcher .lang-btn {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.language-switcher .lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent background for the dropdown */
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-content {
    display: block;
}
@font-face {
    font-family: 'Insignia';
    src: url('./fonts/Insignia.ttf') format('truetype');
}
#branding h1 {
    color: #ff2200;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    max-height: 60px;
    display: flex;
    align-items: center;
    font-family: 'Insignia', sans-serif;
}

/* Ensure the text is positioned like the old image */
header #branding {
    margin-right: 20px; /* Space to the right, like the image had */
    display: flex;
    align-items: center;
    height: 60px; /* Match the old image height */
}

/* Main Content */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

main h2 {
    text-align: center;
    color: #ff2200;
    margin-bottom: 30px;
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact Item */
.contact {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff2200;
}

/* Alternating Layout */
.contact.right {
    flex-direction: row;
}

.contact.left {
    flex-direction: row-reverse;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-details .position {
    font-size: 18px;
    font-weight: bold;
    color: #ff2200;
}

.contact-details .name {
    font-size: 16px;
    color: #333;
}

.contact-details .phone,
.contact-details .email {
    font-size: 14px;
    color: #555;
}

.contact-details .email a {
    color: #555;
    text-decoration: none;
}

.contact-details .email a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer h2 {
    margin-bottom: 10px;
}

.footer p {
    margin: 5px 0;
}

.black-white {
    color: #ff9800;
}


