* {
    box-sizing: border-box;
}

body {
    margin: 0;
}
.container {
    width:100%;
 
}
.logo{
    width: 75%;
    aspect-ratio: 303 / 83;
    background-image: url(../images/Resources/CozyCornerCAFE.svg);
    background-size: cover;
    background-repeat: no-repeat;
    text-indent: -9999px;
}
.header-content{
    text-align: center;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

h2{
    font-family:"Josefin Sans";
    font-weight: 500;
    font-size: 48;
    color: #CC797A;
    margin: 1em;
}
h3{
 color: #88595A;
 font-family:"Josefin Sans";
}
p{
    font-family:"Kodchasan";
}

.nav-list{
border-top:5px solid #88595A;
border-bottom:5px solid #88595A;
padding: 1em;
text-align: center;

}
:any-link{
        color: #88595A;
        padding: 10px;
        font-family:"Kodchasan";
}


.nav-list li{
display: inline;

}
button{
    position: absolute;
    right: 0px;
    bottom: 20px;
    background-color:#88595A;
    width: 70px;
    height: 40px;
    border: none;
}
.menu-grid{
    width:100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    margin-bottom: .5em;
}
/*menu item cards*/
.menu-item-featured
{
display:grid;

grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
}
.menu-item{ 
display:grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
}

.menu-item-featured img
{
grid-row: span 3;

}
img{
    margin:auto;
    width: 60%;
    grid-row: span 3;
   
}
.item-name{
    color: black;
    grid: -1fr 1fr;
    font-family:"Josefin Sans";
    font-weight: 500;

}
.section-title{
    margin-left: 48px;
}
.section-description{
    margin-left: 48px;
}
.item-description{
        font-family:"Kodchasan";
}

.special-item{ 
display:grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
}
/*footer*/
.footer-content{
    display: grid;
    grid-template-columns: 1/2;
    grid-template-rows: 1/2;

}

.social{
border-top:5px solid #88595A;
border-bottom:5px solid #88595A;
padding: 1em;
text-align: center;
}
.contact-info{
    text-align: center;
}
.hours{
    text-align: center;
}
li{
    list-style: none;
}
span{
    font-family:"Kodchasan";
}
/* Dark mode */
body.dark-mode {
    background-color: #7C3844; 
    color: #ffffff;
}
.dark-mode .logo{
    background-image: url(../images/Resources/CozyCornerCAFE-dark.svg);
}
.dark-mode h3{
 color: #E6CE8B;
}
.dark-mode .nav-list{
border-top:5px solid #E6CE8B;
border-bottom:5px solid #E6CE8B;
}
.dark-mode :any-link{
        color: #ffffff;
        
}
.dark-mode .item-name{
    color: rgb(255, 255, 255);
}
.dark-mode button{
    background-color: #CC797A;
}

@media (min-width: 400px) {
    .menu-grid{
        grid-template-columns: 1fr;
    }
    

}
/* BREAKPOINT: Large Desktop 1440px and up */
@media (min-width: 1040px) {
    .menu-grid {
        margin: auto;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr;
    }

}