* {
  font-family: "Outfit", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Teko", sans-serif;
}

body #btn span {
  height: 50px;
  width: 50px;
  border-radius: 50px;
  background-color: #f10b0b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
body .icon {
  width: 50px;
  color: white;
}

header {
  position: sticky;
  top: 0px;
  z-index: 2;
  background-color: black;
  color: white;
}
header p:hover {
  cursor: pointer;
  color: #d30505;
  transition: all 0.5s;
}
header .header-top {
  /*MEDIA QUERY*/
}
@media (max-width: 1000px) {
  header .header-top {
    display: none;
  }
}
header .header-top .top-content {
  display: flex;
  justify-content: space-between;
  /*media-query*/
}
@media (max-width: 1200px) {
  header .header-top .top-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
header .header-top .top-content .top-left {
  display: flex;
  flex-direction: row;
}
header .header-top .top-content .top-right {
  display: flex;
  flex-direction: row;
}
header .header-top .top-content .top-right h6:hover {
  color: #f10b0b;
  cursor: pointer;
  transition: all 0.5s;
}
header nav a {
  font-size: 18px;
  padding: 10px;
  color: white;
}
@media (max-width: 990px) {
  header nav .link-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
  }
}
header nav .link-nav .div a {
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav a:hover {
  color: #f10b0b;
}
header nav .btn {
  height: 50px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f10b0b;
  margin-left: 50px;
  overflow: hidden;
  z-index: 0;
  position: relative;
  font-size: 18px;
  border-radius: 0;
}
header nav .btn::before {
  content: "Book a Table";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f10b0b;
  border-radius: 50% 50% 0 0;
  transition: all 0.5s;
}
header nav .btn:hover::before {
  top: 0;
  border-radius: 0;
}
header .custom-toggler {
  border: 1px solid #ff6347;
  padding: 10px;
  transition: all 0.3s ease-in-out;
}
header .custom-toggler:hover {
  border-color: #ffa07a;
}
header .custom-toggler .navbar-toggler-icon {
  width: 40px;
  height: 35px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='3' d='M4 6h22M4 14h22M4 22h22'/%3E%3C/svg%3E");
  transition: all 0.3s ease-in-out;
}
header .navbar-nav .nav-link {
  position: relative;
  text-decoration: none;
}
header .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background-color: #ff6347;
  transition: width 0.3s ease-in-out;
}
header .navbar-nav .nav-link:hover::after {
  width: 100%;
}

/*SHOWCASE-SECTION*/
.showcase-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("/images/book-a-table.png");
  background-size: cover;
  background-position: center;
}
.showcase-section .showcase-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0 100px;
}
.showcase-section .showcase-content .content h1 {
  font-size: 5rem;
  color: white;
  /*MEDAI QUERY*/
}
@media (max-width: 520px) {
  .showcase-section .showcase-content .content h1 {
    font-size: 3rem;
  }
}
.showcase-section .showcase-content .content a {
  text-decoration: none;
  color: white;
}
.showcase-section .showcase-content .content a:hover {
  color: #f10b0b;
}
.showcase-section .showcase-content .content .a {
  color: #f10b0b;
}

/*RESERVATION-SECTION*/
.reservation-section .content {
  background-color: #f0f0f0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  /*MEDIA QUERY*/
  padding: 7rem;
}
@media (max-width: 1200px) {
  .reservation-section .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.reservation-section .content .btn2 {
  border: none;
  background-color: #df4204;
  font-size: 17px;
  padding: 5px;
  color: white;
  width: 200px;
  border-radius: 5px;
}
.reservation-section .content form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reservation-section .content form input,
.reservation-section .content form .select {
  padding: 10px;
  background-color: white;
  border: none;
  border-radius: 0px;
}
.reservation-section .content form button {
  border: none;
  background-color: #df4204;
  font-size: 17px;
  padding: 10px;
  color: white;
}
.reservation-section .content .img-section {
  background-image: linear-gradient(rgba(30, 36, 61, 0.6), rgba(35, 33, 56, 0.6)), url("/images/salade.jpg");
  background-position: center;
  background-size: cover;
  /*MEDIA QUERY*/
}
@media (max-width: 1200px) {
  .reservation-section .content .img-section {
    height: auto;
  }
}

/*footer-section*/
.footer-section .footer-content .section1 {
  color: white;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url("/images/bg.png");
  background-size: cover;
  background-position: center;
}
.footer-section .footer-content .section1 .section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*MEDIA QUERY*/
}
@media (max-width: 1000px) {
  .footer-section .footer-content .section1 .section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: normal;
  }
}
.footer-section .footer-content .section1 .section a {
  color: white;
  font-size: 20px;
}
.footer-section .footer-content .section1 .section a:hover {
  color: #df4204;
}
.footer-section .footer-content .section1 .section .message {
  display: flex;
  gap: 10px;
}
.footer-section .footer-content .section1 .section .message .content {
  line-height: 0.3;
}
.footer-section .footer-content .section1 .section .message .content p {
  font-size: 14px;
}

/*section2*/
.section2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url("/images/depositphotos_157120512-stock-photo-coffee-with-beans-and-brown.webp");
  background-size: cover;
  background-position: center;
  color: white;
}
.section2 .content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 50px;
  /*MEDIA QUERY*/
}
@media (max-width: 1000px) {
  .section2 .content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
  }
}
@media (max-width: 800px) {
  .section2 .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}
@media (max-width: 550px) {
  .section2 .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.section2 .content .get-in-touch p:hover {
  color: #d30505;
  transition: all 0.5s;
  cursor: pointer;
}
.section2 .content .get-in-touch .icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.section2 .content .food-menu p:hover {
  color: #d30505;
  cursor: pointer;
}
.section2 .content .instagram .img {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

/*section3*/
.section3 {
  background-color: rgb(27, 27, 27);
  color: white;
}
.section3 .container .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*MEDIA QUERY*/
}
@media (max-width: 770px) {
  .section3 .container .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.section3 .container .content .link {
  display: flex;
  flex-direction: row;
}
.section3 .container .content .link a {
  text-decoration: none;
  color: white;
  padding: 10px;
}
.section3 .container .content a:hover {
  color: #df4204;
  transition: all 0.5s;
}/*# sourceMappingURL=book-table.css.map */