* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: minmax(0, auto) [container] 80vw minmax(0, auto);
  grid-template-rows: [nav] 176px auto;
}

nav {
  grid-column: container;
  grid-row: nav;
  align-self: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}

/* slick slider styles */
.slide-gradient-overlay {
  width: 100%;
  height: 250px;
  grid-column: 1/-1;
  grid-row: 1/2;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  z-index: 10;
}

.hero-carousel {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  grid-column: 1/-1;
  grid-row: 1/4;
}

.hero-carousel img {
  width: 100%;
}

.slick-prev,
.slick-next,
.slick-list,
.slick-dots {
  grid-column: 1/-1;
  grid-row: 1/-1;
}

.slick-prev,
.slick-next {
  z-index: 11;
  background-color: transparent;
  border: 0;
  align-self: center;
  justify-self: start;
}

.slick-prev {
  margin-left: 50px;
}

.slick-next {
  justify-self: end;
  transform: rotate(0.5turn);
  margin-right: 50px;
}

.slick-dots {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  list-style: none;
  z-index: 100;
  align-self: end;
  justify-self: center;
  margin-bottom: 175px;
}

.slick-dots button {
  color: transparent;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  border: 0;
  width: 15px;
}

.slick-dots .slick-active button {
  background-color: rgba(223, 106, 46, 0.75);
}

.arrow-previous,
.arrow-next {
  height: 40px;
  width: 40px;
}

/* mid page - let's use <section>s */
section {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr repeat(2, 35vw) 1fr;
  grid-template-rows: [tiles] 10vh [content] minmax(30vh, auto) 10vh;
  -moz-column-gap: 100px;
       column-gap: 100px;
}

/* general section styles */
.tiles {
  position: relative;
  top: -5vh;
  height: 10vh;
  background-image: url("../img/tiles.svg");
  background-repeat: repeat-x;
  grid-row: tiles;
  grid-column: 1/-1;
}

.tiles.reverse {
  transform: rotate(0.5turn);
}

/* authentic / map section */
.map {
  height: 50vh;
  grid-column: 1/-1;
  background-image: url("../img/epicuria-map-background.jpg");
  background-attachment: fixed;
  background-size: calc(200vh + 200px);
  background-position: center center;
}

.authentic {
  grid-column: 2/4;
  grid-row: tiles;
  justify-self: center;
  position: relative;
  top: -5vh;
}
.authentic img {
  height: 13vh;
}

/* concept section */
.concept {
  background-image: url("../img/orange-tile-background.png");
  background-size: 100%;
  background-position: center;
}
.concept .copy,
.concept .mosaic {
  justify-self: center;
  align-self: center;
  grid-row: content;
  padding: 50px 0;
}
.concept .copy {
  display: grid;
  justify-items: center;
  grid-column: 2/3;
  row-gap: 50px;
}
.concept .copy .simple {
  width: 25vw;
}
.concept .copy .rooted {
  width: 35vw;
}
.concept .copy .view-menu-link {
  width: 25vw;
}
.concept .mosaic {
  grid-column: 3/4;
}
.concept .mosaic img {
  max-width: 35vw;
}

/* image section */
.gallery {
  grid-template-columns: 1fr;
  grid-template-rows: [tiles] 10vh [content] 4fr;
}

.image-grid {
  grid-column: 1/-1;
  grid-row: 1/3;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
}
.image-grid img {
  width: 100%;
}

/* about section */
.about {
  grid-template-columns: 1fr repeat(2, 40vw);
}
.about .copy {
  grid-row: content;
  grid-column: 2/3;
  padding: 2vw;
}
.about .copy h2 {
  font-family: Kari, serif;
  font-weight: 400;
  font-size: 3vw;
  color: #df6a2e;
  justify-self: start;
  margin-bottom: 1.5rem;
}
.about .copy p {
  font-family: Arial, Helvetica, Open Sans, sans-serif;
  font-size: 1.1vw;
  line-height: 2em;
  margin-bottom: 1.5rem;
}
.about .background {
  grid-column: 3/-1;
  grid-row: 1/-1;
  background-image: url("../img/wood-background-1920.jpg");
}
.about .details {
  grid-row: content;
  grid-column: 3/4;
  padding: 4vw;
  align-self: center;
}
.about .details p {
  font-family: Kari, serif;
  font-weight: 400;
  font-size: 2vw;
  line-height: 1.5em;
  text-align: center;
  color: #ffffff;
  margin-bottom: 2rem;
}

footer {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr [container] 80vw 1fr;
  grid-template-rows: [tiles] 10vh [content] auto [post-footer] 10vh;
  align-items: center;
  background: #1e355e;
}
footer h3 {
  font-family: kari-display-pro, sans-serif;
  font-size: 2.5vw;
  color: #ffffff;
}
footer p {
  font-size: 1vw;
  color: #ffffff;
  line-height: 1.8em;
}
footer .content {
  grid-row: content;
  grid-column: container;
  display: grid;
  -moz-column-gap: 50px;
       column-gap: 50px;
  justify-items: center;
  grid-template-columns: [logo] 30vw repeat(2, 1fr);
  grid-template-rows: [footer-body] auto [post-footer] 8vh;
}
footer .content img {
  grid-column: logo;
  grid-row: footer-body;
  width: 80%;
}
footer .content .hours {
  grid-column: 2/3;
  grid-row: footer-body;
}
footer .content .location {
  grid-column: 3/4;
  grid-row: footer-body;
}
footer .ucla-housing {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1/-1;
  grid-row: post-footer;
  background: #216092;
  align-self: stretch;
  justify-self: stretch;
}
footer .ucla-housing img {
  width: 12vw;
  display: block;
  align-self: center;
}

/*Styling logo*/
.logo img {
  width: 25vw;
}

/*Styling Links*/
.nav-links {
  flex-basis: 60%;
  display: flex;
  list-style: none;
  padding: 0.7vw;
  justify-content: space-between;
  align-items: flex-start;
}

.nav-links li a {
  font-family: kari, sans-serif;
  font-weight: 400;
  font-size: 1.5vw;
  color: #ffffff;
  text-decoration: none;
  margin: 0 0.7vw;
}

.nav-links li a:hover {
  filter: drop-shadow(0 5px 8px #000);
}

.nav-links li {
  position: relative;
}

.nav-links li a::after {
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  background-color: #df6a2e;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  transition: all ease-in-out 250ms;
  margin: 0 0 0 10%;
}

.nav-links li a:hover::after {
  width: 80%;
}

/*Styling Hamburger Icon*/
.hamburger div {
  width: 30px;
  height: 3px;
  background: #f2f5f7;
  margin: 5px;
  transition: all 0.3s ease;
}

.hamburger {
  display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 1200px) {
  .grid-wrapper {
    grid-template-columns: minmax(0, auto) [container] 80vw minmax(0, auto);
  }
  .nav-links li a {
    font-size: 21px;
  }
  .slick-dots {
    margin-bottom: 100px;
  }
  section {
    grid-template-columns: 1fr repeat(2, 35vw) 1fr;
    grid-template-rows: [tiles] 10vh [content] minmax(30vh, auto) 10vh;
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}
@media screen and (max-width: 1024px) {
  nav {
    width: 100vw;
  }
  .grid-wrapper {
    grid-template-columns: 0 [container] 100vw 0;
  }
  .nav-links li a {
    font-size: 18px;
    margin-right: 120px;
  }
  .logo {
    margin-left: 50px;
  }
  .authentic {
    height: 5vh;
    top: -5.25vh;
  }
  .tiles {
    top: -3vh;
  }
  .tiles.reverse {
    top: -8vh;
  }
  section {
    grid-template-rows: [tiles] 8vh [content] minmax(20vh, auto) 8vh;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer {
    grid-template-rows: [tiles] 10vh [content] minmax(20vh, auto) [post-footer] 10vh;
  }
}
@media screen and (max-width: 976px) {
  nav {
    position: relative;
  }
  .logo img {
    width: 35vw;
  }
  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 48.5%;
    transform: translate(-5%, -50%);
    z-index: 20;
    transition: all 0.7s ease;
  }
  .nav-links {
    background: radial-gradient(circle at top center, rgba(30, 53, 94, 0.875), rgba(33, 96, 146, 0.875));
    height: 100vh;
    width: 100%;
    flex-direction: column;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    transition: all 1s ease-out;
    pointer-events: none;
    flex-basis: 100%;
    justify-content: center;
    align-items: flex-end;
    row-gap: 20px;
  }
  .nav-links.open {
    clip-path: circle(350px at 85% 35%);
    -webkit-clip-path: circle(350px at 85% 35%);
    pointer-events: all;
  }
  .nav-links li {
    opacity: 0;
  }
  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }
  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }
  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }
  .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }
  .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }
  .nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
    margin: 0;
  }
  .nav-links li:nth-child(7) {
    transition: all 0.5s ease 1s;
    margin: 0;
  }
  li.fade {
    opacity: 1;
  }
}
/*Animating Hamburger Icon on Click*/
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  transition: all 0.7s ease;
  width: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (max-width: 600px) {
  .logo {
    position: absolute;
    margin-left: 0;
    z-index: 100;
    top: 46.5%;
    left: 5%;
  }
  .logo a,
.logo img {
    width: 55vw;
  }
  .nav-links {
    margin-top: 200px;
  }
  .nav-links.open {
    clip-path: circle(350px at 85% 35%);
    -webkit-clip-path: circle(350px at 85% 35%);
    pointer-events: all;
  }
  .nav-links li a {
    margin-right: 50px;
  }
  .hamburger {
    /* top: 50px; */
  }
  .hero-carousel {
    height: 80vh;
  }
  .slick-prev, .slick-next {
    align-self: end;
    margin-bottom: 80px;
  }
  .slick-track {
    height: 80vh;
  }
  .slick-slide img {
    display: none;
  }
  .slide {
    background-size: cover;
    background-position: center center;
  }
  .slide-one {
    background-image: url("../img/slide-frutti-de-mare.jpg");
  }
  .slide-two {
    background-image: url("../img/slide-beer.jpg");
  }
  .slide-three {
    background-image: url("../img/slide-pepperoni-pizza.jpg.jpg");
  }
  .slide-four {
    background-image: url("../img/slide-pasta.jpg");
  }
  .slide-five {
    background-image: url("../img/slide-dining-room.jpg");
  }
  section {
    grid-template-rows: [tiles] 8vh [content] minmax(20vh, auto) 8vh;
  }
  .tiles {
    background-size: cover;
  }
  .tiles.reverse {
    top: -4vh;
  }
  .map {
    grid-template-columns: auto;
  }
  .authentic {
    grid-column: 1/-1;
    width: 70vw;
  }
  .authentic img {
    width: 100%;
    height: auto;
  }
  .concept {
    grid-template-columns: 1fr;
  }
  .concept .copy {
    margin: 5vh 0;
    grid-column: 1/-1;
  }
  .concept .copy .simple {
    width: 60vw;
  }
  .concept .copy .rooted {
    width: 80vw;
  }
  .concept .copy .view-menu-link {
    width: 80vw;
  }
  .concept .mosaic {
    display: none;
  }
  .concept .copy,
.concept .mosaic {
    padding: 0;
  }
  .image-grid {
    -moz-column-gap: 3px;
         column-gap: 3px;
    row-gap: 3px;
    grid-template-columns: 1fr;
  }
  .about {
    grid-template-rows: [tiles] 10vh [about-content] auto [details] auto;
    grid-template-columns: [about-content] 100vw;
  }
  .about .copy {
    grid-column: about-content;
    grid-row: about-content;
    padding: 10vw;
  }
  .about .copy h2 {
    font-size: 10vw;
  }
  .about .copy p {
    font-size: 5vw;
  }
  .about .background,
.about .details {
    grid-row: details;
    grid-column: about-content;
    padding: 10vh 5vh;
  }
  .about .background p,
.about .details p {
    font-size: 6vw;
  }
  footer {
    grid-template-rows: [tiles] 5vh [content] minmax(40vh, auto) [post-footer] 5vh;
  }
  footer h3 {
    font-size: 5vw;
  }
  footer p {
    font-size: 3vw;
  }
  footer .content {
    margin: 5vh 0;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    row-gap: 30px;
  }
  footer .content img,
footer .content .hours,
footer .content .location {
    grid-column: 1/-1;
    text-align: center;
  }
  footer .content img {
    grid-row: 1/2;
  }
  footer .content .hours {
    grid-row: 2/3;
  }
  footer .content .location {
    grid-row: 3/4;
    margin-bottom: 5vh;
  }
  footer .ucla-housing img {
    width: 25vw;
  }
}/*# sourceMappingURL=index.css.map */