/* General body styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #D0C8C4;
    box-sizing: border-box;
    background: url('./slike2/bg3.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 */
}


/* Gallery Section */
.gallery-section {
    text-align: center;
    margin: 50px 0;
}

/* Large Image Container */
.large-image-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

#large-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Thumbnail Images */
.thumbnails {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.1);
}

/* Rotate Button Styles */
.rotate-btn {
    background-color: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
}

.rotate-btn:hover {
    color: #ff9800; /* Highlight color */
}

/* Description Section - Centered */
.description-section {
    text-align: left;
    margin: 30px 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.description-section h2 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #222;
}

.description-section p {
    font-size: 0.8rem;
    color: #555;
}

/* 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;
}

/* Title Section */
.title-section {
    text-align: center;
    margin-top: 50px;
}

.title-section h1 {
    font-size: 2.5rem;
    color: #222;
}

/* Gallery Section */
.gallery-section {
    text-align: center;
    margin: 50px 0;
}

/* Large Image Container */
.large-image-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

#large-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Thumbnail Images */
.thumbnails {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.1);
}
