/*** COLORS ***/
:root {
  --red: #861B1D;
  --l-red: #a4524e;
  --tan: #92794F;
  --l-tan: #ad9973;
  --peach: #ECC2BB;
  --l-peach: #f1cfc4;
  --brown: #42271F;
}
/** /COLORS ***/

.body {
  background-color: #000;
  box-sizing: border-box;
  display: inline-block;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh; /* Fallback for older browsers that ignore dvh */
  padding: 0;
  position: relative;
  width: 100%;
}

.body * {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 100%;
}

h1,
h2,
h3,
h4,
p,
span {
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  text-align: center;
  vertical-align: middle;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

a,
button {
  cursor: pointer;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  vertical-align: middle;
}

.icons,
.hotdogIcon {
  background-position: center;
  background-repeat: no-repeat;
  height: 40px;
  vertical-align: middle;
  width: 40px;
}

.hotdogIcon {
  background-image: url('./imgs/icons/hotdog_pop_art.png');
  background-size: contain;
}

.hotdogIcon.flip {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

/*** HEADER ***/
.header {
  background-blend-mode: multiply;
  background-color: #1b1b1b;
  background-image: url('./imgs/tonys_gourmet_dawgs.png');
  background-position: center center;
  background-size: 6%;
  border-bottom: #fff 1px solid;
  box-shadow: -3px 11px 19px -5px rgba(0,0,0,0.59);
  -webkit-box-shadow: -3px 11px 19px -5px rgba(0,0,0,0.59);
  -moz-box-shadow: -3px 11px 19px -5px rgba(0,0,0,0.59);
  padding: 64px 20px 32px 20px;
  text-align: center;
  z-index: 100;
}

.mainTitle {
  color: #000;
  font-size: 0px;
}

.logoSpace {
  height: 263px;
  margin: 0 auto;
  width: 170px;
}

.logoSpace img {
  width: 100%;
}

.headerPhoneNumber {
  font-size: 30px;
  margin-top: 20px;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
}

.headerPhoneLink {
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}
/** /HEADER ***/

/*** MAIN ***/
.section {
  padding: 64px 20px;
  text-align: center;
  transition: padding 0.3s ease-in-out;
  width: 100%;
}

.container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
  text-align: center;
  width: 100%;
}

.imgSpace {
  transition: width 0.3s ease-in-out;
  width: 48%;
}

.imgBox {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 4px solid #fff;
  border-radius: 2px 4px 2px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 30px auto;
  padding: 4px 4px 20px 4px;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  width: 90%;
}

.imgBoxIMG {
  aspect-ratio: 4 / 3;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.scribble {
  height: 11%;
}

.scribbleNote {
  font-family: "Permanent Marker", cursive;
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
}

.textSpace {
  background: rgba(255, 248, 224, .25);
  border-bottom: #fff 1px solid;
  border-left: #000 1px solid;
  border-radius: 24px;
  border-right: #fff 1px solid;
  border-top: #000 1px solid;
  box-shadow: 15px 14px 46px -6px rgba(0,0,0,0.68);
  -webkit-box-shadow: 15px 14px 46px -6px rgba(0,0,0,0.68);
  -moz-box-shadow: 15px 14px 46px -6px rgba(0,0,0,0.68);
  padding: 20px;
  transition: width 0.3s ease-in-out;
  width: 49%;
}

.textSpaceTitle {
  font-size: 28px;
}

.textSpaceTitleText {
  width: auto;
}

.text {
  font-size: 20px;
  margin-top: 12px;
}

/*** introSection ***/
#introSection {
  background-color: var(--red);
}

#introSection .imgSpace {
  order: 2;
}

#introSection .imgBox {
  box-shadow: 4px 2px 4px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: 4px 2px 4px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 4px 2px 4px 0px rgba(0,0,0,0.75);
  transform: rotate(14deg) scale(0.9);
}

#introSection:hover .imgBox {
  box-shadow: 2px 6px 35px 10px rgba(0,0,0,0.4);
  -webkit-box-shadow: 2px 6px 35px 10px rgba(0,0,0,0.4);
  -moz-box-shadow: 2px 6px 35px 10px rgba(0,0,0,0.4);
  transform: rotate(0deg) scale(1);
}

#introSection .imgBoxIMG {
  background-image: url('./imgs/gourmet-hot-dog.jpg');
  background-position: center center;
  border: 1px solid #000;
  border-right: none;
  border-top: none;
  transition: border 0.3s ease-in-out;
}

#introSection:hover .imgBoxIMG {
  border: 2px solid #1b1b1b;
  border-right: none;
  border-top: none;
}

#introSection .textSpace {
  background-color: var(--l-red);
  order: 1;
}
/** /introSection ***/

/*** menuSection ***/
#menuSection {
  background-color: var(--tan);
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  text-align: center;
}

#menuSection .textSpace {
  background-color: var(--l-tan);
  margin: 0 auto;
  width: 100%;
}

.menuList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
}

.menuListItem {
  padding: 20px;
  width: 50%;
}

#dawgs {
  order: 1;
}

#grill {
  order: 3;
}

#toppings {
  order: 2;
}

#sides {
  order: 4;
}

#drinks {
  order: 5;
}

.menuCategory {
  font-size: 26px;
  margin: 20px 0 0 0;
}

.menuCategory,
.categorySubTitle {
  font-weight: 700;
  padding: 0 12px;
  text-align: center;
  width: 100%;
}

.categorySubTitle {
  font-size: 22px;
  margin: 8px 0 0 0;
}

.categoryRow {
  border-bottom: 1px dotted #fff;
  margin: 12px 0 0 0;
  padding: 0 8px 12px 8px;
  width: 100%;
}

.categoryItem {
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
  text-align: left;
}

.price {
  display: inline-block;
  margin-left: auto;
  width: auto;
}

.itemDetails {
  font-size: 18px;
  font-style: italic;
  margin: 4px 0 0 0;
  text-align: left;
}
/** /menuSection ***/

/*** storySection ***/
#storySection {
  background-color: var(--peach);
}

#storySection .imgBox {
  box-shadow: -4px 2px 4px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: -4px 2px 4px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: -4px 2px 4px 0px rgba(0,0,0,0.75);
  transform: rotate(-14deg) scale(0.9);
}

#storySection:hover .imgBox {
  box-shadow: 2px 6px 35px 10px rgba(0,0,0,0.4);
  -webkit-box-shadow: 2px 6px 35px 10px rgba(0,0,0,0.4);
  -moz-box-shadow: 2px 6px 35px 10px rgba(0,0,0,0.4);
  transform: rotate(0deg) scale(1);
}

#storySection .imgBoxIMG {
  background-image: url('./imgs/chef-tony.jpg');
  background-position: center center;
  border: 1px solid #000;
  transition: border 0.3s ease-in-out;
}

#storySection:hover .imgBoxIMG {
  border: 2px solid #1b1b1b;
}

#storySection .textSpace {
  background-color: var(--l-peach);
}
/** /storySection ***/
/** /MAIN ***/

/*** FOOTER ***/
.footer {
  background-color: var(--brown);
  border-top: #fff 1px solid;
  text-align: center;
  width: 100%;
}

.contactSpace {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
  padding: 20px;
  text-align: center;
  width: 100%;
}

.contactIMGColumn {
  width: calc(100% - 350px);
}

.contactIMG {
  aspect-ratio: 16 / 9;
  background-image: url('./imgs/food-truck.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  width: 100%;
}

.contactTextColumn {
  width: 310px;
}

.contactRow {
  color: #fff;
  font-size: 21px;
  padding: 4px 20px;
  text-align: left;
}

.clockIcon,
.mapIcon,
.emailIcon {
  fill: #fff;
}

.contactLink,
.contactLink:hover,
.contactLink:focus,
.contactLink:visited {
  color: #fff;
  text-decoration: none
}

.copyrightRow {
  background-color: var(--tan);
  padding: 4px 20px;
  text-align: center;
  width: 100%;
}

.copyright {
  margin: 0 auto;
}
/** /FOOTER ***/

/** MEDIA QUERIES ***/
@media (max-width: 1024px) {
  .section {
    padding: 32px 20px;
  }
  
  .imgSpace {
    z-index: 50;
  }

  .textSpace {
    z-index: 100;
  }

  #introSection .container {
    flex-direction: column-reverse;
  }

  #storySection .container {
    flex-direction: column;
  }

  #introSection .imgSpace,
  #storySection .imgSpace {
    width: 65%;
  }

  #introSection .textSpace,
  #storySection .textSpace {
    margin-top: -172px;
    width: 80%;
  }
}

@media (max-width: 768px) {
  #introSection .imgSpace,
  #storySection .imgSpace {
    width: 85%;
  }

  #introSection .textSpace,
  #storySection .textSpace {
    margin-top: -172px;
    width: 100%;
  }

  .menuList {
    flex-direction: column;
  }

  .menuListItem {
    width: 100%;
  }

  .contactSpace {
    flex-direction: column;
  }

  .contactIMGColumn {
    margin-top: 20px;
    width: 100%;
  }
}

@media (max-width: 550px) {
  #introSection .imgSpace,
  #storySection .imgSpace {
    width: 100%;
  }

  #introSection .textSpace,
  #storySection .textSpace {
    margin-top: -132px;
  }

  #introSection .textSpaceTitle,
  #storySection .textSpaceTitle {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: center;
  }

  .textSpaceTitleText {
    width: 100%;
  }

  #introSection .hotdogIcon.flip,
  #storySection .hotdogIcon.flip {
    display: none;
  }
}

@media (max-width: 499px) {
  .textSpaceTitle {
    font-size: 26px;
  }

  .text {
    font-size: 18px;
  }

  .menuListItem {
    padding: 4px 0 0 0;
  }

  .categoryItem {
    font-size: 18px;
  }

  .itemDetails {
    font-size: 16px;
  }

  .contactRow {
    font-size: 19px;
  }

  .contactRow .icons {
    height: 30px;
    width: 30px;
  }
}
/** MEDIA QUERIES ***/