<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 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: 29px;
    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 */
}

/* Hero Section */
#hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keep the video covering the entire hero section */
    opacity: 1; /* Slight transparency for better text visibility */
}

/* Photo Gallery */
#photo-gallery {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
}

#photo-gallery h2 {
    color: #9A0000;
    margin-bottom: 20px;
}

.carousel img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Updated Logo Grid */
#logo-gallery {
    background-color: #f9f9f9;
    padding: 30px 15px; /* Reduced padding to make the section smaller */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo-gallery h2 {
    color: #9A0000;
    margin-bottom: 20px;
}

/* Adjusted grid container size */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); /* Reduced min size by 40% */
    gap: 10px; /* Reduced gap size */
    justify-items: center;
    width: 80%; /* Reduced width by 20% */
    max-width: 800px; /* Reduced max width */
}

/* Smaller grid item images */
.grid-item img {
    width: 70%; /* Reduced image size by 30% */
    height: auto;
    transition: transform 0.3s;
}

/* Hover effect remains the same */
.grid-item img:hover {
    transform: scale(1.1);
}


/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
     background: url('./slike2/bg4.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Footer container to align the image and text */
/* Footer container to align the image and text */
.footer-container {
    display: flex;
    align-items: center; /* Vertically center the items */
    justify-content: space-between; /* Distribute space between items */
    width: 100%; /* Full width */
    gap: 0; /* No gap between items */
    padding: 0; /* Remove any padding around the container */
    margin: 0; /* Remove any margin */
    
}

/* Common styles for both footer images */
.footer-image {
    height: 180px;  /* Adjust the height for both images */
    width: auto;    /* Keep aspect ratio */
    max-width: 320px;  /* Increase max width for larger image */
    margin: 0; /* No margin */
    padding: 0; /* No padding */
    flex-shrink: 0; /* Prevent shrinking of the image */
}

/* Left footer image specific styles */
.footer-image.left {
    padding-left: 20px; /* Add small padding to the left for left image */
    position: absolute; /* Remove it from the flexbox flow */
    left: 0; /* Align the image exactly to the left */
}

/* Right footer image specific styles */
.footer-image.right {
    padding-right: 20px; /* Add small padding to the right for right image */
    position: absolute; /* Remove it from the flexbox flow */
    right: 0; /* Align the image exactly to the right */
}

/* Footer Contact Section */
.footer-contact {
    text-align: center; /* Center the text */
    flex-grow: 1; /* Ensure it takes up remaining space */
}



</pre></body></html>