/* FINAL PROJECT CSS */



* {
    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 {
    max-width: 1000px;
    margin: 20px auto;
    height: auto;
}

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

header img {
    padding: 10px;
}



/* NAVIGATION */



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

header nav a {
    text-decoration: none;
}

header nav a:hover {
    /* text-decoration: underline; */
    border-bottom: 1px solid #bb9243;
    padding-bottom: 2px;
}

header nav ul {
    margin-right: 30px;
}

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

.home header nav li:nth-child(1) a, .menu header nav li:nth-child(2) a, .calendar header nav li:nth-child(3) a, .booking header nav li:nth-child(4) a, .contact header nav li:nth-child(5) a {
    /* text-decoration: underline; */
    border-bottom: 1px solid #666;
    padding-bottom: 2px;
}



/* MAIN */



.home main {
    width: 48.935%;
    float: left;
}

.menu main {
    width: 50%;
    float: left;
    padding: 20px;
}

.calendar main {
    margin-top: 15px;
}

.booking main {
    width: 61.70%;
    float: left;
    margin-top: 10px;
}

.contact main {
    width: 70%;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

.sent main {
    margin: 20px auto 20px auto;
}



/* ASIDE */



.home aside {
    width: 48.935%;
    float: right;
    padding: 20px;
}

.menu aside {
    width: 50%;
    float: right;
    padding: 20px;
}

.booking aside {
    width: 36.17%;
    float: right;
}

.contact aside {
    width: 27.87%;
    float: right;
    margin-top: 20px;
}



/* FOOTER */



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

footer ul {
    margin-left: 30px;
}

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

/* IMAGES */

img {
    max-width: 100%;
}

#map {
    display: block;
    margin: 50px auto 0 auto;
}



/* CALENDAR */



.row {
    clear: both;
    margin: 20px auto 10px auto;
    overflow: hidden; 
}

.col4 {
    width: 23%;
    background: white;
    float: left;
    margin: auto 10px auto 10px;
    padding: 10px;
}

.col4 img {
    display:block;
    margin: 10px auto 10px auto;
}

.row + p {
    margin-bottom: 10px;
}



/* FORM */



form {
    max-width: 100%;
    margin: 20px auto 20px 0;
}

fieldset {
    padding: 10px;
    border: 1px solid white;
}

fieldset p {
    font-size: .9em;
}

legend {
    font-size: 1.3em;
    font-weight: bold;
    padding: 0 5px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.booking legend + p {
    margin: 0;
}

p + label {
    margin-top: 10px;
}

input {
    margin-bottom: 10px;
    height: 30px;
    width: 100%;
}

input[type="submit"] {
    width: auto;
}

form ul {
    margin-left: 15px;
    margin-bottom: 10px;
}

form li {
    list-style-type: none;
}

textarea {
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
} 



/* SOCIAL MEDIA */



.socials {
    margin-top: 10px;
    margin-bottom: 20px;
}

.socials li {
    height: 40px;
    line-height: 40px;
    background: #fff;
    list-style-type: none;
    margin-bottom: 5px;
}

.socials a {
    display: block;
    padding-left: 20px;
    text-decoration: none;
    color: #666;
}

.socials a:hover {
    background: #bb9243;
    color: #fff;
}



/* TYPOGRAPHY */



h1, h2, h3, h4{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
    margin-top: 7px;
    font-size: 2em;
}

h2 {
    margin-top: 7px;
    margin-bottom: 5px;
}

p a {
    color: #bb9243;
}

.booking p {
    margin: 10px auto 0 auto;
}

.calendar p, .sent p {
    margin-top: 10px;
}

.contact p {
    margin-bottom: 5px;
}

a {
    color: #666;
}

a:hover {
    color: #bb9243;
}

span {
    display:block;
    font-style: italic;
}

span a {
    color: #bb9243;
}