/* FINAL PROJECT CSS */

/* NOTE TO ZHAN: REMOVE HEIGHTS AND BACKGROUND COLORS WHEN SATISFIED WITH LAYOUT */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: lightgrey;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #666;
}

#wrapper {
    /* background: lightsalmon; */
    max-width: 1000px;
    margin: 20px auto;
    height: auto;
}

header {
    /* background: lightblue; */
    overflow: hidden;
    height: auto;
    border-bottom: 7px solid white;
}

header img {
    padding: 10px;
}



/* NAVIGATION */

nav {
    background: #eee;
    /* width: auto; */
    height: 50px;
    line-height: 50px;
    float: right;
    margin: 60px auto;
    text-transform: uppercase;
    font-size: 1.3em;
}

nav a {
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

nav ul {
    margin-right: 30px;
}

nav li {
    float: left;
    list-style-type: none;
    margin-left: 30px;
    text-align: center;
}

.home nav li:nth-child(1) a, .menu nav li:nth-child(2) a, .calendar nav li:nth-child(3) a, .booking nav li:nth-child(4) a, .contact nav li:nth-child(5) a {
    text-decoration: underline;
}



/* MAIN */

main {
    /* background: lightcoral; */
    /* height: 600px; */
}

.home main {
    /* background: lightcoral; */
    width: 48.935%;
    float: left;
    /* height: 500px; */
}

.menu main {
    /* background: lightcoral; */
    width: 50%;
    float: left;
    padding: 20px;
    height: 500px;
    border-right: 3px solid white;
}

.contact main {
    background: lightcoral;
    width: 61.70%;
    float: left;
    height: 500px;
}



/* ASIDE */

.home aside {
    /* background: lightgreen; */
    width: 48.935%;
    float: right;
    padding: 20px;
    /* height: 500px; */
}

.menu aside {
    /* background: lightgreen; */
    width: 50%;
    float: right;
    padding: 20px;
    height: 500px;
    border-left: 3px solid white;
}

.contact aside {
    background: lightgreen;
    width: 36.17%;
    float: right;
    height: 400px;
}



/* FOOTER */

footer {
    background: #eee;
    height: 50px;
    line-height: 50px;
    clear: both;
    font-size: .9em;
}

footer a {
}

footer ul {
    margin-left: 30px;
}

footer li {
    float: left;
    list-style-type: none;
    margin-right: 30px;
}



/* IMAGES */

img {
    max-width: 100%;
}

#logo {
}

#map {
    display: block;
    float: right;
    margin: 50px auto 0 auto;
        /* top, right, bottom, left */
}



/* TYPOGRAPHY */

h1, h2, h3 {

}

h1 {

}

h2 {
    margin-top: 7px;
}

h3 {

}

p {
}

a {
    color: #666;
}