/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
header {
    position: fixed; /* Make the header fixed */
    top: 0; /* Stick it to the top of the viewport */
    width: 100%; /* Take full width of the viewport */
    background-color: #000;
    color: #b8860b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000; /* Ensure it's above other content */
}


.header-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

.contact {
    position: relative;
}






.contact:hover .popup {
    display: block;
}

.header-right a {
    margin-left: 10px;
}

.social-icon-img,
.social-icon-img1 {
    height: 30px;
}

.container {
    display: flex;
}

.sidebar {
    width: 20%;
    background-color: #333;
    color: #fff;
    padding: 20px;
}

.sidebar h2 {
    text-align: center;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    background-color: #444;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.sidebar ul li a:hover {
    background-color: #555;
}

main {
    width: 80%;
    padding: 20px;
}



.reserve-btn {
    display: block;
    width: 200px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.reserve-btn:hover {
    background-color: #555;
}

.rezervisi-button,
.vrela-ponuda-button {
    background-color: darkred;
    color: darkgoldenrod;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    margin-right: 10px;
}

.rezervisi-button:hover,
.vrela-ponuda-button:hover {
    background-color: #8B0000;
}

.animate-popup {
    animation: popup-animation 0.3s ease;
}

@keyframes popup-animation {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.popup {
    display: none;
    position: absolute;
    background-color: #000; /* Set background color to black */
    color: #b8860b; /* Set text color to white */
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: calc(100% + 10px); /* Position the popup below the Kontakt button */
    left: 50%; /* Center the popup horizontally */
    transform: translateX(-50%); /* Adjust for centering */
}

.contact {
    position: relative;
}

.contact-link {
    margin-right: 20px;
    color: #b8860b;
    text-decoration: none;
    cursor: pointer;
}

.header-right {
    display: flex;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background-color: #000;
    color: #b8860b; /* Dark gold color */
}

.header-left {
    display: flex;
    align-items: center;
}

.header-left h1 {
    margin-left: 10px; /* Adjust spacing between logo and text */
    font-family: 'Arial', sans-serif; /* Use a modern font */
    font-size: 1.8rem; /* Adjust font size as needed */
}

.logo {
    width: 70px; /* Adjust the size as needed */
    height: 70px; /* Adjust the size as needed */
}

.header-right {
    display: flex;
}

.social-icon {
    margin-left: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #b8860b; /* Dark gold color */
}

.social-icon-img {
    width: 40px; /* Adjust the size as needed */
    height: 40px; /* Adjust the size as needed */
}
.social-icon-img1 {
    width: 55px; /* Adjust the size as needed */
    height: 50px; /* Adjust the size as needed */
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
	background-color: #b8860b;
    color: black;
    background-size: cover;
    background-repeat: no-repeat;

}

.sidebar {
    width: 300px; /* Increase the width as needed */
    background: #8b0000;
    color: #b8860b;
    padding-top: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    height: calc(100vh - 70px); /* Adjust the height to fill remaining space */
    position: fixed; /* Position the sidebar */
    top: 73px; /* Adjust the top position based on header height */
    left: 0; /* Position the sidebar to the left */
    overflow-y: auto; /* Add vertical scrollbar if content exceeds height */
}

.container {
    display: flex;
    margin-top: 70px; /* Adjust margin to accommodate fixed sidebar */
    margin-left: 300px; /* Adjust margin to accommodate wider sidebar */
}

.sidebar h2 {
    margin: 10px;
    color: #b8860b;
}

.sidebar ul {
    list-style: none;
    padding: 0;

}

.sidebar ul li {
    padding: 10px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #b8860b;
    transition: all 0.3s ease;
}

.sidebar ul li a:hover {
    color: #b8860b;
}

main {
    flex: 1;
    margin-left: 20px;
}

form {
    margin-top: 20px;
}

button {
    margin-top: 10px;
    background-color: #20c997;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    transform: scale(1.05);
}

input[type="text"],
input[type="email"],
input[type="number"],
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
select:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Dodati CSS za poboljšanje mobilne korisničke prijatnosti */
/* Responsive design */
@media only screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        margin-left: 0;
    }
    .sidebar {
        width: 100%;
        height: auto;
        position: static;
        margin-bottom: 20px;
    }
    main {
        margin-left: 0;
    }
    header {
        flex-direction: column;
        padding: 10px;
    }
    .header-left {
        margin-bottom: 10px;
        text-align: center;
    }
    .header-right {
        justify-content: center;
        margin-top: 10px;
    }
    .logo {
        margin: 0 auto;
    }
    .social-icon {
        margin: 0 5px;
    }
}

/* Povećanje prostora dodira */
.contact-link,
.rezervisi-button,
.vrela-ponuda-button {
    padding: 15px 25px;
}

/* Reorganizacija sadržaja */
.sidebar ul {
    padding-left: 0;
}
.sidebar ul li {
    padding: 10px 20px;
    text-align: center;
}

.performance-image {
    max-width: 100%; /* Postavi maksimalnu širinu */
    height: auto; /* Očuvaj proporcije */
    cursor: pointer; /* Prikazuje da je slika klikabilna */
    transition: transform 0.3s ease; /* Efekat pri hover-u */
}

.performance-image:hover {
    transform: scale(1.05); /* Uvećaj sliku pri hover-u */
}

.image-text {
    font-family: 'Arial', Copperplate Papyrus; /* Moderni font */
    font-size: 3rem; /* Veličina fonta */
    line-height: 1.5; /* Povećaj razmak između redova */
}

#theater-info img:hover {
    transform: scale(1.05);
}

#theater-info {

            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 20px;
            justify-content: center;
        }

        #theater-info img {
            width: 200px;
            height: 300px;
            object-fit: acover;
            border-radius: 10px;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .theater-title {
            text-align: center;
            grid-column: 1 / -1;
        }

        .image-container {
            position: relative;
        }

        .image-container p {
			
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 5px;
            margin: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }


body {
    font-family: 'Georgia', serif;
    background-color: #b8860b; /* Tamno zlatna */
    margin: 0;
    padding: 0;
    color: #000000; /* Tamno zlatna */
    font-size: 115%; /* Povećano za 15% */
}

.about-talas-kulture {
    max-width: 1300px; /* Povećana širina za bolji pregled */
    margin: 0 auto;
    padding: 20px;
    background-color: #8b0000; /* Tamno crvena */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    line-height: 1.6;
    font-size: 115%; /* Povećano za 15% */
    color: #b8860b;
	/* Tekst u div-u je sada tamno zlatan */
}

.about-talas-kulture strong {
    color: #b8860b; /* Tamno zlatna */
    display: block;
    margin-top: 20px;
    font-size: 1.3em; /* Povećano za 15% i dodatno za isticanje */
    font-weight: bold;
}

.about-talas-kulture a {
    color: #b8860b; /* Tamno zlatna */
    text-decoration: none;
    font-size: 1.15em; /* Povećano za 15% */
}

.about-talas-kulture a:hover {
    text-decoration: underline;
}

.about-talas-kulture p {
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .about-talas-kulture {
        padding: 10px;
        font-size: 1em; /* Vraćeno na normalnu veličinu za mobilne uređaje */
    }
}
