/* Image of the menu section */
.menuSection {
    background-image: url("../images/wooden_top.jpg");
    background-size: cover;
}

/* Centring the IMG on the DIV dynamically */
.top_logo {
    width: 500px;
    display: block;
    margin: 10px auto 5px auto;
    cursor: pointer;
    background-color:#272727;
}

/* Width of the menu logo div */
#menu {
    width: 100%;
    margin: 0;
}

.menu_label {
    float: right;
    font-size: 30px;
    display: none;
}

#toggle {
    display: none;
}

/* Remove margins and padding from the list, and add a black background color */
ul.menunav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    /*background-color: transparent;*/
    background-image: url("../images/menu_wrapper.jpg");
    text-align: center;
}

/* Displaying the list items side by side */
ul.menunav li {
    display: inline-block;
    list-style: none;
}

/* Style the links inside the list items */
ul.menunav li a {
    font: bold 16pt "Calibri";
    color: white;
    text-align: center;
    padding: 20px 35px;
    text-decoration: none;
    transition: 0.3s;
}

/* Change background color of links on hover */
ul.menunav li a:hover {background-color: #ffc233; cursor: pointer;}

/* Hide the list item that contains the link that should open and close the topnav on small screens */
ul.menunav li.icon {display: none;}

/* -------- Footer CSS start -------- */
/* Alignment of the tags*/
.footer {
    float: right;
}

/* Spacing between tags */
.footer span {
    padding: 30px 10px;
}

/* Decoration for the link urls*/
.footer span a {
    text-decoration: none;
    font: 11pt "Calibri";
    color: black;
}
/* -------- Footer CSS end -------- */



/* When the screen is less than 470 pixels wide, the name logo of the website will change size to fit the screen */

@media screen and (max-width: 550px) {
    img.top_logo {width: 75vw;}
    /*div.logo_txt {height: 80px;}*/
}

/* When the screen is less than 880 pixels wide, hide all list items. Show the
list item that contains the link to open and close the topnav */
@media only screen and (max-width:680px) {
    #menu {
        width: 100%;
        float: right;
    }
    
    .menu_label {
        display: block;
        cursor: pointer;
        margin-top:-35px;
        background-color: #ffc233;
    }
    ul.menunav {
        text-align: center;
        width: 100%;
        display: none; 
    }
    
    ul.menunav li {
        width: 100%;
    }
    
    ul.menunav li a {
        clear: right; 
        display: block;
        font: bold 14pt "Calibri";
        padding: 5px 35px;
    }
    #toggle:checked + .menunav {
        display: block;
    }
}
