/* Osnovna podešavanja */
* {
    margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}

h1{
    margin-bottom: 15px;
    line-height: 1.3;
}

h2{
    margin-bottom: 15px;
    line-height: 1;
}

h3{
    margin-bottom: 15px;
    line-height: 1.3;
}

h4{
    margin-bottom: 15px;
    line-height: 1.6;
}

body{
    background: #f0f2f5;
    color: #1c1e21;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigacija */
header{
    width:100%;
    background-color:#943c0c;
    color:white;
    text-align:center;
    padding:20px 0;
}

header h1{
    margin: 0;
    font-size: 28px;
    letter-spacing: 2px;
}

nav{
    background:#943c0c;
}

nav ul{
    display:flex;
    justify-content:center;
    list-style:none;
}

nav ul li{
    margin:15px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:bold;
	transition: 0.3s;
}

nav ul li a:hover{
    color:#f39c12;
}

nav ul li a.active{
    font-weight: bold;
    border-bottom: 2px solid white;
    padding-bottom: 3px;
}

/* Hero sekcija */
.hero img{
    width: 100%;
    height: auto;
    display: block;
}

.btn {
    margin-top: 20px;
    padding: 10px 25px;
    background: #e74c3c;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.1rem;
}

.content{
    display:flex;
    width:100%;
	gap: 5%;
	padding: 50px 5%;
}

.container{
    width:70%;
    background:#f9f9f9;
    padding:30px;
    border:1px solid #ddd;
}

/*.container img {
/*    width: 150px;
/*    height: auto;
}*/

.side-image{
    width:30%;
	border:1px solid #ddd;
}

.side-image img{
    width:100%;
    height:auto;
    display:block;
}

/* Kartice */
.info {
    display: flex;
    justify-content: space-around;
    padding: 50px 5%;
}

.card {
    background: white;
    padding: 20px;
    width: 45%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
}

footer {
    text-align: center;
    padding: 20px;
    background: #2c3e50;
    color: white;
}