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



@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Raleway', sans-serif ;
    font-weight: 400;
    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: #B19470;
    text-decoration: none;
    padding: 10px 15px;
    transition: background-color 0.5s;
}

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

nav li a:active {
    background-color: #F7B787;
    color: white;
}



label {
    margin: 0 30px 0 0;
    font-size: 26px;
    line-height: 70px;
    display: none;
    width: 26px;
    float: right;
}

#prekidac {
    display: none;
}




/* ----- 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: 700px) {
    header {
        background-position: center;
    }
    
    nav {
        width: 100%;
    }
    
    nav li {
        display: block;
        border-top: 1px solid #f1733d;
    }

    nav li a {
        float: none;
        background-color: white;
        display: block;
        color: #B19470;
        font-family: 'Raleway', sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
    }
    
    nav li a:hover {
        background-color: #F7B787;
    }

    nav ul {
        width: 100%;
        text-align: center;
       
    }

    label {
        display: block;
        cursor: pointer;
    }
    
    .meni {
        text-align: center;
        width: 100%;
        height: auto;
        display: none;
    }
    
    .meni a {
        display: block;
        border-bottom: 1px solid #EAEAEB;
        margin: 0;
    }
    
    #prekidac:checked+ .meni {
        display: block;
    }

    .lijevo {
        float: none;
        width: 100%;
        border-bottom: solid 2px #f1733d;
        border-right: none;
        margin-left: 0;
        min-height: 2em;
        height: fit-content;
        padding-bottom: 1.5em;
    }

    .desno {
        float: none;
        width: 100%;
        padding-top: 1.8em;
        padding-left: 0;
    }

    img {
        float: none;
        width: 50%;
        margin-left: 20%;
    }
     h1{
        padding-top: 2em;
     }
}