/* ------------------ Color Guide --------------------
    Gold: rgb(172, 140, 71);
    White: rgb(226, 226, 226);
    Grey: rgb(128, 128, 128);
    Black: rgb(15, 15, 15);
           rgba(15, 15, 15, 0.74);

.alegreya-sc-regular {
  font-family: "Alegreya SC", serif;
  font-weight: 400;
  font-style: normal;
}

.alegreya-sc-medium {
  font-family: "Alegreya SC", serif;
  font-weight: 500;
  font-style: normal;
}

.alegreya-sc-bold {
  font-family: "Alegreya SC", serif;
  font-weight: 700;
  font-style: normal;
}


.alegreya-sc-regular-italic {
  font-family: "Alegreya SC", serif;
  font-weight: 400;
  font-style: italic;
}

-------------------------------------------------------*/

/* global styles*/

body {
    font-size: 19px;
    font-family: "Alegreya SC", calibri, candara, "segoe UI", optima, arial, sans-serif;
    color: rgb(226, 226, 226);
    background-color: rgb(15, 15, 15);
    background-image: url(../images/background.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 2%;
}

#wrapper {
    background-color: rgba(15, 15, 15, 0.74);
    padding: 30px;
}

h1,
h2,
h3,
h4 { font-family: "alegreya",
Garamond,
"baskerville old face",
"Times New Roman",
serif;
font-weight: normal;

}

h1 {
    font-size: 3.3684em;
    line-height: 1.2656em;
    margin-top: 0.4219em;
    margin-bottom: 0;
    color: rgb(172, 140, 71);
}

h2 {
    font-size: 1.5em;
    line-height: 1.58em;
    margin: 0.4219em auto;
}

h3 {
    font-size: 1.5263em;
    line-height: 1.8621em;
    margin-top: 0.9310em;
    margin-bottom: 0;
}

p {
    font-size: 1em;
    line-height: 1.4211em;
    margin-top: 0.4219em;
    margin-bottom: 0;
}

img {
    width: 100%;
}

a:link {
    color: rgb(172, 140, 71);
}

a:visited {
    color: rgb(100, 81, 41);
}

a:hover {
    color: rgb(224, 182, 90);
}

a:active {
    color: rgb(224, 182, 90);
}
.button {
    background-color: rgb(172, 140, 71);
    border-radius: 8px; /* rounds the corners of the p tag box */
}

.button a{
    color: rgb(226, 226, 226);
    text-decoration: none; /* removes the underline from link */
    text-align: center;
    font-style: normal;
    display: block;
    padding: 10px 0;
}

.button a:hover {
    background-color: rgb(119, 97, 48);
    border-radius: 8px;
}

.featured-info h3 {
    border-bottom: 1px solid rgb(128, 128, 128);
}

.featured-info p {
    font-style: italic;
}

.featured-info ul {
    list-style-type: none;
    padding: 0;
}

/* Global logo styles */

.logo {
    display: block;
    width: 150PX;
    margin: 0 auto;
}

.logo img {
    width: 100%;
    align-content: center;
}

/* Global Main Navigation Style */

.main-nav ul {
    padding: 0; 
}

.main-nav li {
    list-style-type: none;
    text-align: center;
    margin: 20px 0;
    margin-right: auto 20px;
}

.main-nav a {
    display: block;
    padding: 15px 10px;
    text-decoration: none;
    text-transform: uppercase;
    background-color: rgba(67, 67, 67,.17);
    color: rgb(180, 180, 180);
}

.main-nav a:visited {
    color: rgb(106, 106, 106);
}

.main-nav a:hover {
    color: rgb(235, 235, 235);
    transition: .75s color;
    background-color: rgba(61, 61, 61,.5);
}

/* Global Footer Styles */

footer {
    padding: 10px 0;
}

footer h4 {
    margin-bottom: 15px;
    text-transform: uppercase;
}

footer p {
    margin: 0;
}

/* menu page styles */

.menu .featured-info {
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
    
}

.menu .featured-info ul {
    font-style: italic;
}

.menu .gallary {
    margin-top: 30px;
        
}

@media screen and (min-width:600px) {
    .menu .gallery {
        width: 446px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .menu .gallery img {
        max-width: 220px;
    }
}

/* Media Query 750px */

@media screen and (min-width:750px) {
    
    body {
        font-size: 1.4em;
    }
    
    .landing {
        text-align: center;
    }
    
    h1 {
        font-size: 2em;
    }
    
    p {
        font-weight: 100;
        max-width: 700px;
        margin: 0 auto;
        text-align: left;
    }
    
    li {
        font-weight: 100;
    }
    
    .button {
        max-width: 250px;
    }
    .main-nav {
        min-height: 100px;
        border-top: 1px solid rgb(63, 63, 63);
        border-bottom: 1px solid rgb(63, 63, 63);
    }
    
    .main-nav ul {
        display: flex;
        max-width: 950px;
        margin: 0 auto;
    }
    
    .margin-nav li {
        margin-left: 20px;
        width: 28%;
    }
    
    .main-nav a {
        background: none;
    }
    
    .main-nav a:hover {
        background: none;
    }
}

/* media query 88px */

@media screen and (min-width: 880px) {
    
    .main-nav ul {
        position: relative;
        right: -30px
    }
}

/* media query 1050px */

@media screen and (min-width: 1050px) {
    .featured {
        max-width: 1400px;
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
    }
    
    .featured-info {
        width: 30%;
        margin-left: 3%;
    }
    
    .gallery {
        width: 950px;
        margin: 0 auto;
    }
    
    .gallery img {
        max-width: 280px;
    }
    
    #main-content {
        width: 100%;
        display: flex;
        align-content: space-between;
    }
    
    .location .sidebar {
        width: 30%;
        margin-left: 14%
    }
    
    .location .sidebar h3 {
        border-bottom: none;
    }
    
    .location .featured-info {
        width: 100%;
    }
    
    .location .landing {
        text-align: left;
        width: 56%;
    }
    
    .location .landing p {
        position: relative;
        
    }
}
