@charset "utf-8";
/* CSS Document */

* {
	padding: 0;
	margin: 0;
}

body {
	font-family: Arial, san-serif;
	background-color: #fff;
}


/* ----- HEADER ----- */

header {

	height: 200px;
	background-image: url(slike/recepti_logo.png);
	background-repeat: no-repeat;
	border-bottom: 5px double #f1733d;
}


/* ----- NAVIGACIJA ----- */

nav {
	height: 50px;
	font-size: 14pt;
}

nav ul {
	list-style-type: none;
	float: right;

}

nav li {
	display: inline;
	margin: 0 15 15 0;
}

nav li a {
	float: left;
	color: #f1733d;
	text-decoration: none;
	padding: 10px 15px;
	transition: background-color 2s;
}

nav li a:hover {
	background-color: #ffbd59;
	color: #fff;
}

nav li a:active {
	background-color: #f1733d;
	color: #eeff59;
}




/* ----- SADRŽAJ ----- */

section {

	min-height: 400px;
	text-align: left;
	padding: 15px 30px;

}


h1 {
	font-size: 17pt;
	color: #f1733d;
	text-align: center;
	padding-bottom: 50px;
}

h2 {
	font-size: 18px;
	color: #f1733d;
	padding-bottom: 20px;
}


/* LIJEVO */

.lijevo {
	background-color: #fff;
	width: 25%;
	min-height: 200px;
	float: left;
	margin-left: 100px;
	border-right: solid 2px #f1733d;
}

.desno {
	background-color: #fff;
	width: 40%;
	float: left;
	padding-left: 50px;
}

article ul {
	margin-left: 20px;
}

img {
	float: right;
	padding-left: 20px;
}

/* ----- FOOTER ----- */

footer {

	height: 50px;
	text-align: center;
	font-weight: bold;

}

footer p {
	padding-top: 15px;
	color: #fff;
}

@media only screen and (max-width:750px) {

    header{
        background-position: center;
    }

    nav{
        height: auto;
        margin-bottom: 1em;
    }
    nav ul {
        float: none;
        width:100%;
    }

    nav li{
       display: block;
       background-color: #ffbd59;
       border: 1px solid #f1733d;
       height: 20px;
       text-align: left;
       padding: 1em;
    }

    nav li a{
        float:none;
        color:#fff;
        text-decoration: none;
        margin-left: 40%;
        padding: 0.1em;
        transition: background-color 2s;
    }

    .lijevo{
        float:none;
        width: 80%;
        border-right: none;
        border-left:none;
        margin-bottom: 10%;
        border-bottom: 2px solid #f1733d;
    }

    .desno{
        width:80%;
        margin-left: 45px;
    }

}

