/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}





/* General/Desktop CSS */
#container {
    max-width: 1440px;
    margin: auto;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    font-family: 'Irish Grover';
}

h2 {
    font-size: 40px;
    font-weight: bold;
    padding: 15px;
    font-family: 'Irish Grover';
}

h3 {
    font-size: 30px;
    font-weight: bold;
    padding: 5px;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #C1EAD6;
    color: #2CBA98;
    padding: 20px;
}

#text {
    display: block;
    margin: auto;
    text-align: center;
}

img {
    width: 100%;
}

#res_name {
    width: 16.389%;
    text-align: center;
}

nav {
    width: 60.972%;
    display: flex;
    justify-content: space-around;
    font-family: 'Itim';
}

#row1 {
    display: flex;
    justify-content: space-around;
    background: #C1EAD6;
}

#row2 {
    display: flex;
    justify-content: space-between;
    background: #84B5A9;
}

#row2 img {
    width: 60%;
    height: auto;
}

#row3 {
    display: flex;
    justify-content: space-around;
    background: #C1EAD6;
}

#row3 img {
    width: 60%;
}

#hours {
    width: 33%;
    text-align: center;
}

#number {
    width: 33%;
    text-align: center;
}

#social {
    width: 33%;
    text-align: center;
}

a {
    color: #577C73;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 16px;
}

.circle {
    width: 20.0694%;
    padding: 100px;
}

.circle img {
    border-radius: 50%;
}

#hero {
    background: #C1EAD6;
}

p {
    width: 400px;
    font-size: 24px;
    text-align: center;
    font-family: 'Julee';
}

#footer {
    display: flex;
    justify-content: space-around;
    background: #6DDDA0;
}

#footer img {
    width: 15%;
}

#hours p {
    text-align: center;
}

#footer h2 {
    font-size: 30px;
}

#footer h3 {
    font-size: 24px;
    font-family: 'Irish Grover';
}

/* COPIED Code */

.navbar {
    display: none;
    width: 100%;
    box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
}
  
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
}
  
.navbar .menu-items {
    display: flex;
}
  
.navbar .nav-container li {
    list-style: none;
}
  
.navbar .nav-container a {
    text-decoration: none;
    color: #0e2431;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
}
  
.navbar .nav-container a:hover{
      font-weight: bolder;
}
  
.nav-container {
    display: block;
    position: relative;
    height: 60px;
}
  
.nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}
  
.nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
  
.nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
}
  
.nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}
  
.nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
}
  
.nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}
  
.navbar .menu-items {
    background: white;
    padding-top: 120px;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
    height: 100vh;
    width: 100%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    text-align: center;
}
  
.navbar .menu-items li {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
}
  
.logo {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 1.2rem;
    color: #0e2431;
}
  
.nav-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
}
  
.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
}
  
.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
}
  
.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
}
  
.nav-container input[type="checkbox"]:checked ~ .logo{
    display: none;
}

/* Tablet CSS */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 36px;
        font-weight: bold;
    }

    #res_name {
        width: 13.8671875%;
    }

    .circle {
        width: 28.80859375%;
        padding: 30px;
    }

    #text h2 {
        font-size: 28px;
    }

    p {
        font-size: 20px;
        width: 300px;
        text-align: center;
        padding: 10px;
        margin: auto;
    }

    #row2 {
        display: block;
        margin: auto;
        text-align: center;
    }

    #row2 img {
        width: 100%;
    }

    #row3 {
        display: block;
        text-align: center;
    }

    #row3 img {
        width: 100%;
    }
}

/* Mobile  CSS */
@media screen and (max-width: 500px) {
    .navbar {
        display: block;
    }

    nav {
        display: none;
    }

    #header {
        justify-content: center;
    }

    #res_name {
        width: 56.25%;
    }

    h1 {
        text-align: center;
    }

    p {
        padding: 35px;
    }

    .circle img {
        display: none;
    }

    #footer {
        display: block;
        justify-content: center;
        text-align: center;
        margin: auto;
    }

    #hours {
        margin: auto;
        padding: 20px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    #number {
        margin: auto;
        padding: 20px;
        width: 100%;
        text-align: center;
    }

    #social {
        width: 100%;
        text-align: center;
        padding: 20px;
        margin: auto;
        justify-content: center;
    }

    #social h2 {
        text-align: center;
        width: 100%;
    }

    #footer img {
        justify-content: center;
        width: 15%;
        padding: 20px;
    }

    #hours h3 {
        width: 100%;
        text-align: center;
    }

}