@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  outline: none;
  scroll-behavior: smooth;
}

:root {
  --red-: #e21818;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #e21818;
}

::-webkit-scrollbar-track {
  background: #212121;
}

body {
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 6%;
  position: fixed;
  top: 0;
  right: 0;
  box-shadow: 0 0.3px 0.5px var(--red-);
  left: 0;
  z-index: 1000;
  width: 100%;
  transition: 200ms linear;
}

.sticky {
  background: #21212186;
  backdrop-filter: blur(5px);
  padding: 1.3rem 5%;
}

.logo-title a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo-title span {
  color: var(--red-);
}

.navbar-list a {
  margin: 0 1rem;
  color: #fff;
  position: relative;
  font-size: 0.9rem;
}

.navbar-list a:hover {
  color: var(--red-);
}

.navbar-list a::after {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  background: var(--red-);
  transition: 200ms linear;
}

.navbar-list a:hover::after {
  width: 100%;
}

#times {
  display: none;
}

.navbar-icon {
  display: none;
}

/* section fixed img */
.img-fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  right: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/home-fixed.png);
  background-size: cover;
}

/* hero section start */
.hero {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  display: flex;
  color: #fff;
  align-items: center;
}

.hero-content {
  margin: 1rem 8%;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--red-);
}

.hero-content h2 {
  font-size: 1rem;
}

.hero-content h3 {
  font-size: 1.2rem;
}

.hero-content p {
  font-size: 0.9rem;
  margin-top: 5px;
  width: 50%;
}

.btn-hero {
  padding: 0.5rem 1rem;
  display: inline-block;
  margin-top: 10px;
  background: transparent;
  border: 1.5px solid var(--red-);
  position: relative;
}

.btn-hero::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  content: "";
  background: #e2181886;
  backdrop-filter: blur(4px);
  transition: 200ms linear;
  z-index: -10;
}

.btn-hero:hover::after {
  width: 100%;
}

.btn-hero a {
  color: #fff;
}
/* hero section end */

/*  */
/*  */

/* heading */
.heading span {
  color: var(--red-);
  font-weight: 700;
}

/*  */
body p {
  color: #ccc;
}
/*  */

/* about section start */
.about {
  padding: 5rem 6%;
  background: #212121;
}

.about-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.about-row .about-img img {
  width: 100%;
  cursor: pointer;
}

.about-img img:hover {
  filter: grayscale(100);
}

.about-row .about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-row .about-text h3 {
  margin-bottom: 1rem;
  color: var(--red-);
}

.about-row .about-text p {
  font-size: 0.9rem;
}
/* about section end */

/*  */
/*  */
/*  */

/* menu section start */
.menu {
  padding: 5rem 6%;
  background: #212121;
}

.menu-row {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.menu-box {
  position: relative;
}

.overlay-name {
  position: absolute;
  right: 0;
  top: 87%;
  width: 0;
  height: 12%;
  overflow: hidden;
  transition: 300ms linear;
  background: #e21818;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-box:hover .overlay-name {
  width: 100%;
}

.overlay-price {
  position: absolute;
  left: 0;
  top: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 7.5%;
  overflow: hidden;
  transition: 300ms linear;
  background: #ddd;
  color: #e21818;
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
}

.menu-box:hover .overlay-price {
  width: 50%;
}

.menu-box img {
  width: 100%;
  cursor: pointer;
}
/* menu section end */

/*  */
/*  */
/*  */

/* contact section start */
.contact {
  padding: 5rem 6%;
  background: #212121;
}

.contact-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.contact-row .maps iframe {
  width: 100%;
  height: 300px;
}

.contact-row .input-form form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

*:focus {
  outline: none;
}

form input {
  padding: 0.4rem 1rem;
  margin-bottom: 1rem;
  background: transparent;
  border: 1.5px solid #fff;
}

form input:focus::placeholder {
  color: #e21818;
}

form input:focus {
  border: 1.5px solid var(--red-);
}

form textarea {
  padding: 0.4rem 1rem;
  resize: none;
  height: 130px;
  background: transparent;
  border: 1.5px solid #fff;
  margin-bottom: 1rem;
}

form textarea:focus {
  border: 1.5px solid var(--red-);
}

form textarea:focus::placeholder {
  color: #e21818;
}

.send {
  width: 40%;
  margin: auto;
  padding: 0.3rem 0.6rem;
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--red-);
  cursor: pointer;
  display: inline-block;
}

.send:hover {
  background: #e21818;
}

/* contact section end */

/*  */
/*  */
/*  */

/* footer section start */
footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: var(--red-);
  padding: 1.5rem 0 1.5rem;
}

.permalinks {
  margin-top: 0.5rem;
}

.permalinks a {
  margin: 0 0.9rem;
  color: #fff;
  font-size: 0.85rem;
}

.permalinks a:hover {
  color: #212121;
}

.copyright {
  text-align: center;
  background: #fff;
  padding: 0.1rem 0;
}

.copyright p {
  font-size: 0.7rem;
  color: #000;
  font-weight: 600;
  letter-spacing: 2px;
}

.copyright span {
  color: var(--red-);
}
/* footer section end */
