/*/////////// General Styles */
/*///////////// Large Navigation Styles: centered horizontal */
.toggle {
  display: none;
  background: transparent;
  border: 0;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.nav a {
  color: black;
  text-decoration: none;
  padding: 1em;
  display: inline-block;
  font-size: 1.3em;
  transition-duration: 0.3s;
  font-family: "Quicksand", sans-serif;
}

.nav a:hover {
  background-color: #DCAEAF;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/*////////// Tablet Navigation Styles: 2x2 columns */
@media (max-width: 719px) {
  .nav li {
    width: 50%;
  }

  .nav a {
    padding: 1em;
  }
}
/*//////////// Hand-held Navigation Styles: hidden until active */
@media (max-width: 1020px) {
  body {
    /* Space needed so hamburger button won't overlap content */
    padding-top: 70px;
  }

  .hamburger,
.toggle {
    display: block;
  }

  .toggle {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1;
  }

  .hamburger > span {
    display: block;
    position: relative;
    width: 30px;
    height: 2px;
    border-radius: 3px;
    background-color: black;
    margin-top: 7px;
    transition: all 0.3s ease-in-out;
  }

  .nav li {
    width: 100%;
  }

  /* Hamburger animation from https://codepen.io/FilipVitas/pen/KVXvLP */
  .nav.active .hamburger .top {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 22.5px;
  }

  .nav.active .hamburger .meat {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -2px;
  }

  .nav.active .hamburger .bottom {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  .nav.active .menu {
    left: 0;
  }

  .nav.invisible .menu {
    display: none;
  }

  .nav.menu-noscript .menu {
    display: block;
    position: static;
    opacity: 1;
    margin-top: -70px;
    padding-top: 0;
    height: auto;
    width: 100%;
    transition: none;
  }

  .nav.menu-noscript .toggle {
    display: none;
  }

  .menu {
    position: fixed;
    width: 75%;
    height: 100vh;
    left: -100%;
    right: 0;
    bottom: 0;
    padding-top: 70px;
    background-color: #F8D3D7;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }

  .menu a {
    color: black;
    text-decoration: none;
    font-size: 1.5em;
    width: 100%;
    padding: 0.5em;
  }
}
.logo {
  display: inline;
  margin: 15px;
}

#accent-item {
  background-color: #DCAEAF;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  transition-duration: 0.3s;
}

#accent-item:hover {
  background-color: #F8D3D7;
}

header {
  background-image: url(images/mobile-header-bg.png);
  background-size: cover;
  background-position: top;
  display: grid;
}

.top-bar-wrap {
  display: flex;
  justify-content: space-between;
}

.logo-link {
  width: 150px;
  margin-right: 10vw;
}

.featured-item {
  margin-left: 15px;
}

.featured-item h1 {
  margin-bottom: 0px;
  margin-top: 20px;
}

.featured-item-desc {
  margin-left: 39px;
  border-left: solid #CAD1D9 6px;
  padding-left: 25px;
  max-width: 310px;
}

.header-feature {
  height: 150px;
  margin-left: 70px;
  padding-bottom: 50px;
  max-width: 683px;
}

.next-event {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding-top: 115px;
}

.next-event img {
  width: 150px;
  padding: 15px;
}

.next-event-desc {
  padding-right: 15px;
}

.button {
  padding: 9px 30px 9px 30px;
  border-radius: 8px;
  font-size: 22px;
  font-family: "Quicksand", sans-serif;
  transition-duration: 0.3s;
  text-decoration: none;
  color: #000;
}

.grey-btn {
  background-color: #CAD1D9;
}

.grey-btn:hover {
  background-color: #879FAC;
}

.dpink-btn {
  background-color: #DCAEAF;
}

.dpink-btn:hover {
  background-color: #F8D3D7;
}

.custom {
  padding-top: 100px;
  background-image: url(images/mobile-custom-bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 100px 1fr 260px;
}

.custom h1 {
  grid-row-start: 1;
  text-align: center;
}

.custom-desc {
  grid-row-start: 3;
  padding: 15px;
}

.custom-desc p {
  margin-bottom: 40px;
}

.bowl-comp {
  max-width: 100vw;
  display: grid;
  grid-template-columns: 100px 100px 100px;
  grid-template-rows: 2fr 1fr;
  grid-row-start: 2;
  justify-self: center;
}

.bowl-comp img {
  max-width: 70vw;
}

.bowl-comp :nth-child(1) {
  grid-column-start: 1;
  width: 100px;
  align-self: end;
  margin-bottom: -20px;
  z-index: 1;
}

.bowl-comp :nth-child(2) {
  grid-column-start: 2;
  width: 100px;
  align-self: end;
  margin-bottom: -20px;
  z-index: 1;
}

.bowl-comp :nth-child(3) {
  grid-column-start: 3;
  width: 100px;
  align-self: end;
  margin-bottom: -20px;
  z-index: 1;
}

.bowl-comp :nth-child(4) {
  grid-column-start: 1;
  grid-column-end: 3;
  align-self: center;
}

.mail-sub {
  text-align: center;
}

input[type=email] {
  padding: 17px 14px 12px 14px;
  outline: solid #879FAC 1px;
}

input[type=email]:focus {
  outline: solid #F8D3D7;
}

.mail-sub a {
  color: #000;
  text-decoration: none;
}

.lpink-btn {
  background-color: #F8D3D7;
}

.lpink-btn:hover {
  background-color: #DCAEAF;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-nav {
  grid-column-start: 1;
}

.footer-nav ul {
  list-style: none;
  width: 170px;
  border-left: solid #CAD1D9 6px;
  padding: 0px;
  margin: 30px;
}

.nav-item {
  color: black;
  text-decoration: none;
  padding: 15px;
  display: inline-block;
  font-size: 1.3em;
  transition-duration: 0.3s;
  font-family: "Quicksand", sans-serif;
}

.nav-item:hover {
  text-decoration: none;
  background-color: #F8D3D7;
  border-radius: 8px;
}

.social-icons {
  grid-column-start: 2;
  width: 60px;
  margin-top: 15px;
  padding: 15px;
  justify-self: end;
}

.social-icons svg {
  padding: 15px;
}

#Desktop-HD {
  transition-duration: 0.3s;
}

#Desktop-HD:hover {
  fill: #DCAEAF;
}

.legal {
  text-align: right;
  grid-column-start: 2;
  padding-right: 30px;
}

.legal a {
  text-decoration: none;
  color: #000;
  transition-duration: 0.3s;
}

.legal a:hover {
  color: #879FAC;
}

@media (max-width: 321px) {
  .next-event {
    grid-template-columns: 1fr;
    padding-left: 15px;
  }

  .bowl-comp :nth-child(1) {
    width: 80px;
  }

  .bowl-comp :nth-child(4) {
    padding-left: 30px;
  }

  .custom {
    padding-bottom: 30px;
  }
}
@media (max-width: 424px) {
  .header-feature {
    margin-left: 10px;
  }

  .button {
    font-size: 16px;
  }
}
@media (min-width: 512px) {
  .header-feature {
    margin-left: 200px;
  }

  .bowl-comp {
    grid-template-columns: 100px 150px 150px;
  }

  .custom-desc {
    max-width: 440px;
    justify-self: center;
  }

  .bowl-comp :nth-child(1) {
    width: 100px;
  }

  .bowl-comp :nth-child(2) {
    width: 150px;
  }

  .bowl-comp :nth-child(3) {
    width: 150px;
  }

  .mail-sub h1 {
    margin-top: 100px;
    margin-bottom: 0px;
  }

  .mail-sub p {
    margin-bottom: 60px;
  }

  input[type=email] {
    width: 300px;
  }
}
@media (min-width: 568px) {
  .next-event-desc {
    max-width: 350px;
  }
}
@media (min-width: 600px) {
  .header-feature {
    margin-left: 250px;
  }

  .next-event img {
    margin-left: 20px;
  }
}
@media (min-width: 720px) {
  header {
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .header-feature {
    margin-left: 300px;
    width: 50vw;
    height: auto;
  }

  .next-event {
    justify-items: center;
  }

  .next-event img {
    justify-self: end;
  }

  .next-event-desc {
    max-width: 440px;
  }

  .next-event-desc p {
    margin-bottom: 30px;
  }

  .bowl-comp {
    grid-template-columns: 100px 200px 150px;
  }

  .bowl-comp :nth-child(1) {
    width: 100px;
  }

  .bowl-comp :nth-child(2) {
    width: 200px;
  }

  .bowl-comp :nth-child(3) {
    width: 150px;
  }

  .custom-desc {
    max-width: 440px;
    justify-self: center;
  }

  input[type=email] {
    width: 400px;
  }
}
@media (min-width: 721px) {
  header {
    background-image: url(images/dt-header-bg.png);
  }

  .custom {
    background-size: cover;
  }
}
@media (min-width: 900px) {
  .custom {
    background-image: url(images/dt-custom-bg.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100vw auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding-top: 30px;
  }

  .next-event {
    grid-template-columns: 50vw 50vw;
  }

  .next-event img {
    width: 250px;
    margin-right: 50px;
  }

  .next-event-desc {
    justify-self: start;
  }

  .custom h1 {
    grid-column-start: 1;
    align-self: center;
  }

  .custom-desc {
    grid-row-start: 1;
    grid-column-start: 1;
    align-self: center;
    margin-top: 300px;
    padding-left: 40px;
  }

  .bowl-comp {
    grid-row-start: 1;
    grid-column-start: 2;
    padding-bottom: 50px;
  }
}
@media (min-width: 1050px) {
  .custom {
    background-image: url(images/dt-custom-bg-large.png);
    background-position: bottom;
    background-size: 100vw auto;
  }

  .header-feature {
    margin-left: 40vw;
  }
}
@media (min-width: 1300px) {
  .custom h1 {
    align-self: start;
    margin-top: 300px;
  }

  .custom-desc {
    margin-top: 200px;
  }
}
@media (min-width: 1440px) {
  .custom h1 {
    margin-top: 400px;
  }

  .custom-desc {
    margin-top: 250px;
  }

  .bowl-comp {
    grid-template-columns: 150px 250px 200px;
  }

  .bowl-comp :nth-child(1) {
    width: 150px;
  }

  .bowl-comp :nth-child(2) {
    width: 250px;
  }

  .bowl-comp :nth-child(3) {
    width: 200px;
  }

  .bowl-comp :nth-child(4) {
    width: 500px;
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
body {
  font-family: "EB Garamond", serif;
  margin: 0px;
  padding: 0px;
  color: #0E1726;
}

h1 {
  font-family: "Quicksand", sans-serif;
  font-size: 46px;
}

h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 26px;
}

img {
  max-width: 100vw;
}

.menu-header {
  background-image: url(images/menu-header-mobile.png);
  background-position: 0px 100px;
  background-size: auto;
  background-repeat: no-repeat;
}

.limited-edition {
  margin: 50px 10px 0px 20px;
}

.limited-edition h1 {
  text-align: center;
  margin-top: 25px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 150px;
  max-width: 650px;
}

.limited-edition {
  padding-bottom: 200px;
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
}

.menu-item h1 {
  font-size: 1.6em;
  margin: 0px;
  margin-left: -20px;
  text-align: left;
}

.menu-item img {
  width: 50vw;
  max-width: 300px;
  margin-right: -40px;
  align-self: end;
}

.menu-item-border {
  border-left: 6px #DCAEAF solid;
  margin-left: 20px;
}

.menu-item-border p {
  padding-left: 10px;
}

.menu-item-border img {
  width: 40px;
  padding-left: 10px;
  padding-top: 0px !important;
}

.menu-main {
  margin: 0px 10px 0px 15px;
  display: grid;
}

.menu-main-header {
  text-align: center;
  margin-bottom: 0px;
}

.menu-main .menu-item {
  margin-top: 100px;
}

.menu-main .menu-item-border {
  border-color: #CAD1D9;
}

.menu-main .lpink-btn {
  text-align: center;
  margin: 70px auto 0px auto;
}

@media (min-width: 540px) {
  .limited-edition h1 {
    text-align: left;
  }

  .menu-main {
    margin: 0px 25px 0px 25px;
  }
}
@media (min-width: 721px) {
  .menu-header {
    background-image: url(images/menu-header-tablet.png);
  }

  .limited-edition {
    padding-bottom: 250px;
  }

  .menu-item {
    margin: 100px auto 0px auto;
  }
}
@media (min-width: 1025px) {
  .menu-header {
    background-image: url(images/menu-header-dt-large.png);
    background-size: cover;
    background-position: center;
  }

  .limited-edition {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding-bottom: 15vw;
    margin-top: 0px;
  }

  .limited-edition h1 {
    grid-row: 1;
    align-self: end;
    margin-bottom: 130px;
  }

  #le-1 {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0px;
    align-self: center;
  }

  #le-1 h1, #le-2 h1 {
    margin-bottom: 0px;
    margin-left: -20px !important;
  }

  #le-2 {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0px;
    align-self: center;
  }

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

  .menu-item:nth-child(4) img {
    padding-top: 30px;
  }

  .menu-item:nth-child(6) img {
    padding-top: 30px;
  }
}
@media (min-width: 1300px) {
  .limited-edition h1 {
    margin-left: 5vw;
    margin-bottom: 100px;
  }

  #le-1 h1, #le-2 h1 {
    margin-left: -20px !important;
  }
}
header.ing {
  background-image: none;
}

.ing-main {
  background-image: url(images/ing-bg-mob2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0px 0px;
  padding: 0px 20px 0px 20px;
}

.ing-main img {
  max-width: 90vw;
}

.mobile-hidden {
  display: none;
}

.desc p {
  line-height: 23px;
  max-width: 440px;
}

.ing-header .desc {
  margin-bottom: 20px;
}

.ing-header {
  margin-bottom: 55px;
  display: grid;
}

.ing-header-single {
  max-width: 280px !important;
  justify-self: center;
}

.coconut {
  display: grid;
  margin-bottom: 55px;
}

.coconut .desc {
  margin-bottom: 20px;
}

.coconut img {
  width: 230px;
  max-width: 355px;
  justify-self: center;
}

.maple {
  display: grid;
  margin-bottom: 55px;
}

.maple img {
  width: 180px;
  max-width: 370px;
  justify-self: center;
}

.cocoa {
  display: grid;
  padding-bottom: 100px;
}

.cocoa img {
  width: 250px;
  max-width: 500px;
  justify-self: center;
}

@media (min-width: 768px) {
  .ing-main {
    background-image: url(images/ing-bg-tab.png);
  }

  .ing-header {
    display: grid;
    grid-template-columns: 180px 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "single desc" "triple triple";
  }

  .ing-header-single {
    grid-area: single;
    width: 170px;
    padding-bottom: 30px;
    align-self: end;
    justify-self: center;
  }

  .mobile-hidden {
    display: block;
    grid-area: triple;
    width: 697px;
    justify-self: center;
  }

  .ing-header .desc {
    grid-area: desc;
    justify-self: start;
    padding-left: 60px;
  }

  .coconut {
    grid-template-columns: 280px 1fr;
    grid-template-rows: 1fr;
  }

  .coconut img {
    grid-column-start: 1;
    grid-row-start: 1;
    align-self: center;
  }

  .coconut .desc {
    grid-column-start: 2;
  }

  .maple {
    grid-template-columns: 1fr 1fr;
  }

  .maple img {
    align-self: center;
  }

  .cocoa {
    grid-template-columns: 280px 1fr;
    grid-template-rows: 1fr;
  }

  .cocoa img {
    grid-row-start: 1;
    grid-column-start: 1;
    justidy-self: center;
    align-self: center;
  }
}
@media (min-width: 1021px) {
  .ing-main {
    background-image: url(images/ing-bg-dt.png);
  }

  .ing-header {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "single desc" ". triple";
  }

  .mobile-hidden {
    width: 400px;
    justify-self: start;
    padding-left: 10px;
  }

  .ing-header-single {
    max-width: 90vw !important;
    width: 450px !important;
    grid-row-start: 1;
    grid-row-end: 3;
    align-self: center;
  }

  .ing-header .desc {
    justify-self: start;
    padding-left: 10px;
  }

  .coconut {
    grid-template-columns: 380px 1fr;
  }

  .coconut .desc {
    justify-self: center;
  }

  .coconut img {
    width: 330px;
  }

  .maple .desc {
    justify-self: end;
  }

  .maple img {
    width: 370px;
  }

  .cocoa {
    grid-template-columns: 530px 1fr;
  }

  .cocoa img {
    width: 500px;
  }

  .cocoa .desc {
    justify-self: center;
  }
}
@media (min-width: 1366px) {
  .ing-main {
    padding-bottom: 60px;
  }
}
@media (min-width: 1370px) {
  .ing-main {
    background-image: url(images/ing-bg-dt-lg.png);
    background-position: top;
  }

  .ing-header-single {
    width: 550px !important;
  }

  .mobile-hidden {
    width: 510px !important;
    padding-top: 50px;
  }

  .coconut {
    grid-template-columns: 1fr 1fr;
  }

  .maple .desc {
    justify-self: center;
    align-self: center;
  }

  .coconut, .maple, .cocoa {
    margin-bottom: 150px;
  }

  .cocoa {
    grid-template-columns: 1fr 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
