@import url('https://fonts.googleapis.com/css2?family=Muli&display=swap');

* {
  box-sizing: border-box;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Muli', sans-serif;
  display: flex;
  flex-direction: column;
  width: 100vh;
  height: fit-content;
  overflow-x: hidden;
  background: white;
}
i {
  cursor: pointer;
}
.blog-post:hover {
  transform: scale(110%);
  filter: drop-shadow(0.2rem 0.2rem 0.8rem rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}
.nav-btns {
  display: flex;
  height: 100%;
  width: 100%;
  z-index: 20;
}
.nav-btns i {
  position: absolute;
  color: coral;
  font-size: 3rem;
  left: 0;
  margin: 0.6rem 1rem 0.6rem;
  cursor: pointer;
}
.nav-btns i:hover {
  filter: drop-shadow(0.2rem 0.2rem 0.4rem black);
}
.nav-btns i:active {
  transform: scale(90%);
}
.nav-btns i:nth-child(2) {
  margin: 1rem 1rem 0.6rem;
  font-size: 2.6rem;
  left: 85%;
}
.main::before {
  position: absolute;
  content: '';
  height: 6vh;
  min-height: 5rem;
  width: 100vw;
  background-color: #2b2921;
}
.main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 12vh;
  width: 100vw;
  background-color: transparent;
  z-index: 10;
}
#nav .logo {
  order: 2;
  height: 3.6rem;
  min-width: 3.6rem;
  margin: 0.4rem 2rem 1rem;
  background-image: url('/images/logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  filter: drop-shadow(0.2rem 0.3rem 0.3rem rgba(0, 0, 0, 0.5));
}
#nav .logo:active {
  transform: scale(90%);
}
.main ul {
  order: 3;
  position: relative;
  padding-right: 2rem;
  height: 100%;
  width: 100%;
}
.main ul li {
  display: none;
  letter-spacing: 0;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  color: #00000080;
  font-size: 1.2rem;
  font-weight: normal;
  text-transform: uppercase;
  height: 3.4rem;
  width: 100vw;
  padding-left: 0.6rem;
  border-bottom: solid 0.1rem #00000080;
  perspective-origin: left;
}
.main ul li.show {
  display: flex;
  animation: shown 0.4s ease forwards;
}
@keyframes shown {
  0% {
    color: coral;
    background-color: rebeccapurple;
  }
  50% {
    color: white;
    background-color: coral;
  }
  100% {
    background-color: white;
  }
}
.main ul li:hover {
  color: coral;
  transition: color 0.4s ease;
  font-weight: bold;
  border-bottom: solid 0.2rem coral;
}
.main ul li:active {
  transform-origin: right;
  padding-left: 2rem;
}
li:hover {
  cursor: pointer;
  color: coral;
  transition: color 0.4s ease;
}
li:active {
  transform: scale(90%);
}
.main ul li.active {
  color: coral;
  font-weight: bold;
  border-bottom: solid 0.2rem coral;
}
.search {
  order: 2;
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100vw;
}
.search input {
  display: flex;
  justify-content: center;
  align-items: center;
  border-style: none;
  width: 100%;
  height: 3rem;
  padding: 1rem;
  margin: 0;
}
.search input:placeholder-shown {
  color: #00000080;
}
.search input:focus {
  outline-style: none;
}
.search i {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-size: 2rem;
  height: 100%;
  width: 10%;
  right: 0;
  margin: 0 1rem 0;
  color: coral;
}
input.hide-clear[type='search']::-ms-clear,
input.hide-clear[type='search']::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
/* HERO  */
.hero {
  position: relative;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  width: 100vw;
  min-height: 900px;
  overflow: hidden;
  background-color: rebeccapurple;
}
.first-img {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  width: 100vw;
  color: white;
  background-color: rebeccapurple;
}
.first-img img {
  position: absolute;
  align-self: center;
  bottom: 50vh;
  left: 0vw;
  right: 0vw;
  max-width: 110%;
  transform: translateY(10vh) translateX(-10%);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  filter: drop-shadow(1rem 2rem 3rem rgba(0, 0, 0, 0.6));
  transition: bottom 0.4s linear;
}
.first-img h1 {
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
  margin: 20rem 0 0;
  max-width: 70vw;
  z-index: 10;
}
.first-img h1 span {
  color: coral;
  font-size: 2rem;
  text-transform: uppercase;
  z-index: 10;
}
.first-img p {
  max-width: 60vw;
  font-size: 1rem;
  margin: 1rem 0 1rem;
  text-align: center;
  z-index: 10;
}
button {
  height: 3.4rem;
  width: 10rem;
  border-radius: 5rem;
  font-weight: bolder;
  color: rebeccapurple;
  background-color: white;
  border: solid 0.15rem coral;
  margin: 0.4rem 0 1.4rem;
  cursor: pointer;
  z-index: 10;
  transition: border 0.4s ease;
}
button:hover {
  border: solid 0.2rem rgb(50, 25, 75);
}
.second-img {
  position: relative;
  display: flex;
  flex-flow: column wrap;
  min-height: 100vh;
  max-height: 120vh;
  width: 100vw;
}
.top-img {
  position: absolute;
  top: 0;
  height: 50%;
  width: 100vw;
  background-color: aqua;
  background-image: url('https://images.unsplash.com/photo-1441985969846-3e7c90531139?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTF8fGJlZXJ8ZW58MHx8MHx8&auto=format&fit=crop&w=500&q=60');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bottom-img {
  position: absolute;
  bottom: 0;
  height: 50%;
  width: 100vw;
  background-color: tomato;
  background-image: url('https://images.unsplash.com/photo-1625300105749-77d295c0f278?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8c3RlYWtob3VzZXxlbnwwfHwwfHw%3D&auto=format&fit=crop&w=500&q=60');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
/* PHOTO GALLERY  */
.photo-gallery {
  position: relative;
  width: 100vw;
  overflow: hidden;
}
.gallery {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: row nowrap;
  height: 25%;
  width: 100vw;
  margin: 2rem 0 2rem;
  transform: translateX(0vw);
  transition: transform 0.6s ease;
}
.g-btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  height: 2.5rem;
  width: 2.5rem;
  z-index: 20;
  border-radius: 50%;
  color: white;
  background-color: rebeccapurple;
  transition: background-color 0.4s ease;
}
.g-btn i {
  pointer-events: none;
}
.g-btn:hover {
  background-color: coral;
}
.g-btn:active {
  transform: translateY(-50%) scale(90%);
}
.g-btn.start {
  margin: 0 1rem 0;
}
.g-btn.end {
  right: 0;
  margin: 0 1rem 0;
}
.item {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  height: 15rem;
  min-width: 10rem;
  margin: 1rem;
  transform: translateX(20%);
}
.photo {
  display: flex;
  justify-content: center;
  height: 8rem;
  min-width: 8rem;
  background-color: black;
  border-radius: 1rem;
  overflow: hidden;
}
.photo img {
  width: 100%;
  border-radius: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}
.gallery h2 {
  text-transform: capitalize;
  color: #00000080;
  font-size: 1rem;
  margin: 1rem 0 0;
}
/* BLOG  */
.blog {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  margin-top: 2rem;
}
.blog-post::after {
  content: '';
  position: absolute;
  align-self: center;
  border: dashed coral 0.2rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  bottom: 1.5%;
  left: 1.5%;
  height: 96%;
  width: 95.5%;
}
.blog-post {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  background-color: #ffdfcb;
  height: 30rem;
  width: 90vw;
  max-width: 30rem;
  border-radius: 1rem;
  margin: 2rem;
  z-index: 1;
}
.blog-img {
  position: relative;
  display: flex;
  min-height: 50%;
  width: 100%;
  background-color: black;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;

  z-index: 1;
  overflow: hidden;
}
.pic-title {
  position: absolute;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  top: 50%;
  height: 30%;
  width: 100%;
  background-color: rgba(63, 32, 94, 0.8);
  box-shadow: 0.2rem 0.2rem 2rem black;
  z-index: 10;
}
.pic-title h1 {
  position: relative;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 1px;
  margin: 0;
  font-size: 1.6rem;
  width: 70%;
  height: 80%;
  color: white;
}
.logo.pic {
  height: 5rem;
  min-width: 5rem;
  margin: 0.8rem 1rem 1rem;
  background-image: url('/images/logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0.2rem 0.3rem 0.3rem rgba(0, 0, 0, 0.5));
}
.blog img {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
.blog-title {
  position: relative;
  text-transform: lowercase;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 1rem 2rem 1rem;
}
.blog-title small {
  top: -15%;
  position: relative;
  font-size: small;
}
.blog-text {
  color: #00000080;
  margin: 1rem 2rem 0;
}
.more-btn {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: fit-content;
  background-color: transparent;
  border-radius: 0;
  margin: 0 2rem 1rem;
  border: none;
  transition: all 0.4s ease;
}
.more-btn a {
  color: rebeccapurple;
  transition: 0.4s ease;
}
.more-btn i {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50%;
  margin-left: 0.4rem;
  top: 0;
  left: 0;
  height: 1.6rem;
  width: 1.6rem;
  font-size: 1rem;
  color: white;
  background-color: rebeccapurple;
  transition: 0.4s ease;
}
.more-btn:hover {
  border-style: none;
}
.more-btn a:hover {
  color: coral;
}
.more-btn a:hover + .fa-solid {
  background-color: coral;
  padding-left: 0.4rem;
}
.more-btn a {
  text-decoration: none;
  list-style: none;
}
footer::after {
  content: '';
  position: absolute;
  background-image: url('/images/Steak_logo.png');
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  opacity: 0.1;
  mix-blend-mode: normal;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
footer {
  position: relative;
  display: flex;
  flex-flow: column;
  padding: 2rem 0 2rem;
  width: 100vw;
  background: linear-gradient(rebeccapurple, rgb(41, 9, 60) 80%);
}
footer div {
  z-index: 10;
}
footer h4 {
  font-size: 1.2rem;
  margin: 1rem 0.6rem 1rem;
  color: coral;
}
footer ul li {
  color: white;
  width: fit-content;
  font-size: 1rem;
  margin: 1rem 0.6rem 1rem;
  list-style: none;
  text-transform: capitalize;
}
.connect {
  display: flex;
  justify-content: center;
  flex-flow: column nowrap;
  height: 10rem;
  width: 100vw;
}
.social-links {
  display: flex;
  justify-content: space-around;
  flex-flow: row nowrap;
  width: fit-content;
  margin: 0 0 0;
  height: 3rem;
  z-index: 10;
}
.social-links i {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: start;
  margin: 0 1rem 0;
  height: 3rem;
  width: 3rem;
  font-size: 2.3rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.4s ease;
}
.social-links i:hover {
  color: white;
  background-color: coral;
  border-radius: 1rem;
}
.social-links i:active {
  transform: scale(90%);
}
.rights {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-size: 0.8rem;
  text-align: center;
  z-index: 10;
}
.rights a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.4rem 0;
}
.rights a:hover {
  color: coral;
  transition: color 0.4s ease;
}
.rights a i {
  margin: 1rem 0.2rem 0;
}

@media (max-width: 410px) {
  .nav-btns i:nth-child(2) {
    left: 80%;
  }
  .first-img img {
    bottom: 55vh;
  }
  .pic-title h1 {
    margin-left: 1rem;
    font-size: 1.2rem;
    height: fit-content;
  }
  .logo.pic {
    min-width: 3rem;
    margin: 0.8rem 0.2rem 0.2rem;
  }
  .blog-title {
    font-size: 1rem;
    font-weight: bold;
    margin: 1rem;
  }
  .blog-text {
    font-size: 0.8rem;
    margin: 1rem;
  }
}
@media (min-width: 510px) {
  .first-img img {
    bottom: 35vh;
  }
  .item {
    min-height: 10rem;
    min-width: 15rem;
    margin: 0.6rem;
  }
  .photo {
    height: fit-content;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
  .gallery h2 {
    text-transform: capitalize;
    color: #00000080;
    font-size: 1rem;
    margin: 1rem;
  }
}
@media (min-width: 610px) {
  .first-img img {
    bottom: 25vh;
  }
}
@media (min-width: 710px) {
  .first-img img {
    bottom: 20vh;
  }
  .item {
    min-height: 17rem;
    min-width: 20rem;
    margin: 0.8rem;
  }
  .blog-title {
    font-size: 2rem;
  }
}
@media (min-width: 910px) {
  .main {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    min-height: 12vh;
    width: 100vw;
    background-color: #2b2921;
  }
  .logo {
    order: 1;
    height: 7rem;
    min-width: 7rem;
    margin: 1rem;
    margin-right: 2rem;
  }
  .nav-btns {
    display: none;
  }
  .main ul {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0.4rem;
    height: 100%;
    width: 100%;
    background-color: transparent;
  }
  .main ul li {
    order: 2;
    display: flex;
    opacity: 0;
    list-style: none;
    justify-content: center;
    align-content: center;
    text-align: center;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0.6rem 0.6rem;
    padding: 0.2rem;
    height: 3rem;
    width: fit-content;
    background-color: transparent;
    border: none;
    letter-spacing: 0;
    animation: show 0.4s ease forwards;
  }
  .main ul li.show {
    display: flex;
    animation: show 0.4s ease forwards;
  }
  @keyframes show {
    0% {
      color: orangered;
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .main ul li.active {
    border-bottom: solid 0.3rem coral;
  }
  .main ul li.active.show {
    border-bottom: solid 0.3rem coral;
  }
  .search {
    order: 3;
    padding: 0.4rem;
    width: 55vw;
  }
  .search input {
    min-width: 22rem;
    max-width: 30rem;
    margin: 0 1.4rem 0;
    border-radius: 2rem;
    border: coral 2px solid;
  }
  .search input:focus {
    outline-style: none;
  }
  .search i {
    font-size: 2rem;
    height: 100%;
    width: 20%;
    top: 0;
    right: 0;
    margin: 0 1rem 0;
    color: coral;
  }
  .hero {
    height: 100vh;
  }
  .first-img {
    justify-content: center;
    align-items: flex-end;
    width: 60%;
    height: 100%;
    overflow: hidden;
  }
  .first-img img {
    position: absolute;
    align-self: center;
    bottom: 10vh;
    left: 0vw;
    right: 0vw;
    max-width: 120%;
    transform: translateY(0%) translateX(-50%);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    filter: drop-shadow(1rem 2rem 3rem rgba(0, 0, 0, 0.6));
  }
  .first-img h1 {
    max-width: 55%;
    margin-top: 0;
    margin-right: 4rem;
    text-align: end;
  }
  .first-img p {
    max-width: 55%;
    margin-right: 4rem;
    text-align: end;
    z-index: 10;
  }
  button {
    margin: 0.4rem 4rem 1.4rem;
    z-index: 20;
  }
  .second-img {
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 40%;
  }
  .top-img {
    position: relative;
    height: 40%;
    width: 100%;
    background-position: center;
    background-size: cover;
  }
  .bottom-img {
    position: relative;
    height: 60%;
    width: 100%;
    background-position: center;
    background-size: cover;
  }
  .photo-gallery {
    display: none;
  }
  .blog {
    background-color: white;
  }
  footer {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    padding: 2rem 0 2rem;
    width: 100vw;
    background-color: rebeccapurple;
    background: linear-gradient(rebeccapurple, rgb(41, 9, 60) 80%);
  }
  footer div {
    min-width: 30%;
  }
  .rights {
    margin-top: 3rem;
  }
  footer::after {
    height: 90%;
    width: 90%;
  }
}

@media (min-width: 1020px) {
  .first-img img {
    bottom: -5vh;
  }
}

@media (min-width: 1420px) {
  .first-img img {
    bottom: -35vh;
  }
}
