/* OSNOVNI STILOVI */
*{
    box-sizing: border-box;
    margin: 0;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

/* HEADER */
header {
    background-color: #2f4f4f;
    color: white;
    width: 100%;
}

.inner-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;   
    gap: 10px;         
}

.logo {
    width: 60px;
    height: 60px;
    margin: 20px;
    flex: 0 0 auto;   
}

.title {
    font-size: 24px;
    margin-left: 20px;
    flex: 1 1 200px;  
    min-width: 150px;
}

nav {
    display: flex;
    flex-wrap: wrap;   
    gap: 15px;
    flex: 1 1 250px;  
    justify-content: flex-end;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    color: #66bb6a;
}

/* SADRŽAJNI KONTEJNER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
}

/* SLIDESHOW */
.slideshow {
    margin: 2px;
    width: 100%;
    height: 500px;
    margin-bottom: 20px;
    overflow: hidden;
}

#fotka {
    display: flex;
    max-width: 100%;
    height: 100%;
    border-radius: 20px;
}

#fotka img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* SADRŽAJNI BLOKOVI */
.content {
    display: flex;
    flex-wrap: wrap; 
    padding: 10px;
    margin-top: 20px;
    gap: 20px;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.text-box {
    flex: 1 1 45%; 
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

/* TABLICA ZA STRANICU PARKOVI */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    margin-top: 20px;
}

th, td {
    padding: 12px;
    border: 1px solid #ccc;
    text-align: left;
}

th {
    background-color: #e0e0e0;
}

/* FOOTER */
footer {
    background-color: #2f4f4f;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* BLOG SADRŽAJ */
.blog-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.blog-post {
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
}

.blog-post h3 {
    margin-bottom: 10px;
    color: #2f4f4f;
}

.blog-post p {
    line-height: 1.5;
    color: #333;
}

/* KONTAKT FORMA */
.kontakt-forma {
    max-width: 600px;
    margin: 20px auto;
    background-color: white;
    padding: 30px;
    border: 1px solid #ccc;
}

.kontakt-forma h2 {
    margin-bottom: 20px;
    color: #2f4f4f;
}

.kontakt-forma label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.kontakt-forma input,
.kontakt-forma textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #aaa;
    font-size: 14px;
    box-sizing: border-box;
}

.kontakt-forma button {
    padding: 10px 20px;
    background-color: #2f4f4f;
    color: white;
    border: none;
    font-size: 16px;
}

/* PARKOVI */
.parkovi-europa {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    padding: 20px;
    justify-content: space-between;
}

.park-kartica {
    flex: 1 1 300px;
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
}

.park-kartica h3 {
    margin-bottom: 10px;
    color: #2f4f4f;
}

.park-kartica p {
    color: #333;
    line-height: 1.4;
}

.park-kartica img {
    width: 100%;
    height: 200px;
    margin-top: 10px;
    border-radius: 4px;
}

/*BUTTON*/
.btn-vise {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #2c3e50;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 3px;
}

.btn-vise:hover {
    background: #2f4f4f;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
