:root {
  --primary: #b6895b;
  --bg: #010101;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg);
  color: #ffff;
  min-height: 2000px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 7%;
  background-color: rgba(1, 1, 1, 0.8);
  border-bottom: 1px solid #473523;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.navbar .navbar-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #ffff;
  font-style: italic;
}

.navbar .navbar-logo span {
  color: var(--primary);
}

.navbar .navbar-nav a {
  color: #ffff;
  display: inline-block;
  font-size: 1.3rem;
  margin: 0 1rem;
}

.navbar .navbar-nav a:hover {
  color: var(--primary);
}

.navbar .navbar-nav a::after {
  content: "";
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid var(--primary);

  transform: scaleX(0);
  transition: 0.2s linear;
}

.navbar .navbar-nav a:hover::after {
  transform: scaleX(0.5);
}

.navbar .navbar-extra a {
  color: #ffff;
  margin: 0 0.5rem;
}

.navbar .navbar-extra a:hover {
  color: var(--primary);
}

#hamburger-menu {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../img/header-bg.jpeg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(1, 1, 3, 1) 8%,
    rgba(255, 255, 255, 0) 50%
  );
}

.hero .content {
  padding: 1.4rem 7%;
  max-width: 60rem;
}
.hero .content h1 {
  font-size: 5em;
  color: #ffff;
  text-shadow: 1px 1px 3px rgba(1, 1, 1, 3, 0.5);
  line-height: 1.2;
}

.hero .content h1 span {
  color: var(--primary);
}

.hero .content p {
  font-size: 1.6rem;
  margin-top: 1rem;
  line-height: 1.4;
  font-weight: 100;
  text-shadow: 1px 1px 3px rgba(1, 1, 1, 3, 0.5);
  mix-blend-mode: difference;
}

.hero .content .cta {
  margin-top: 1rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  color: #ffff;
  background-color: var(--primary);
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

/* About Section */
.about {
  padding: 10rem 7%;
}

.about h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3 rem;
}
.about h2 span {
  color: var(--primary);
}
.about .row {
  display: flex;
}

.about .row .about-img {
  flex: 1 1 45rem;
}

.about .row .about-img img {
  width: 100%;
}

.about .row .content {
  flex: 1 1 35rem;
  padding: 0 1rem;
}

.about .row .content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about .row .content p {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 100;
  line-height: 1.6;
}

/* Media Queries */

/* Laptop */
@media (max-width: 1366px) {
  html {
    font-size: 75%;
  }
}

/* Tablet */
@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
  #hamburger-menu {
    display: inline-block;
  }
  .navbar .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: #ffff;
    width: 30rem;
    height: 100vh;
    transition: 0.3s;
  }

  .navbar .navbar-nav.active {
    right: 0;
  }

  .navbar .navbar-nav a {
    color: var(--bg);
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
  }

  .navbar .navbar-nav a::after {
    transform-origin: 0 0;
  }

  .navbar .navbar-nav a:hover::after {
    transform: scaleX(0.2);
  }
}

/* Mobile Phone */
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
}

/* Menu Section */
.menu {
  padding: 10rem 7%;
}

.menu h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.menu h2 span {
  color: var(--primary);
}

.menu > p {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: #aaa;
}

.menu .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.menu-card {
  background-color: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
  width: 280px;
  text-align: center;
  transition: 0.3s;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(182, 137, 91, 0.3);
}

.menu-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.menu-card-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.menu-card-price {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.menu-list {
  list-style: none;
  text-align: left;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

.menu-list li {
  padding: 0.3rem 0;
  font-size: 1rem;
  color: #ccc;
}

.menu-list li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.5rem;
}

/* Order List Section */
.order-list {
  padding: 8rem 7%;
  background-color: #0a0a0a;
}

.order-list h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

.order-list h2 span {
  color: var(--primary);
}

.order-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.order-step {
  background-color: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
  width: 250px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.order-step h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.order-step p {
  font-size: 1rem;
  color: #aaa;
}

/* Gallery Section */
.gallery {
  padding: 10rem 7%;
}

.gallery h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.gallery h2 span {
  color: var(--primary);
}

.gallery > p {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: #aaa;
}

.gallery .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.gallery-card {
  width: 500px;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}

.gallery-card:hover {
  transform: scale(1.02);
}

.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1rem;
}

.gallery-caption h3 {
  font-size: 1.4rem;
}

.gallery-caption p {
  font-size: 1rem;
  color: #aaa;
}

/* Video Section */
.videos {
  padding: 8rem 7%;
  background-color: #0a0a0a;
}

.videos h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.videos h2 span {
  color: var(--primary);
}

.videos > p {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: #aaa;
}

.videos .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.video-card {
  width: 500px;
  background-color: #1a1a1a;
  border-radius: 1rem;
  overflow: hidden;
}

.video-card video {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.video-card h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.3rem;
}

.video-card p {
  padding: 0 1rem 1.5rem;
  font-size: 1rem;
  color: #aaa;
}

/* Location Section */
.location {
  padding: 10rem 7%;
}

.location h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.location h2 span {
  color: var(--primary);
}

.location > p {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: #aaa;
}

.location .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.location-map {
  flex: 1 1 60%;
  min-width: 300px;
}

.location-map iframe {
  border-radius: 1rem;
  min-height: 400px;
}

.location-info {
  flex: 1 1 35%;
  min-width: 300px;
  background-color: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
}

.location-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.location-info p {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #ccc;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 1.1rem;
}

.contact-item i {
  color: var(--primary);
}

.schedule-list {
  list-style: none;
  margin-top: 1rem;
}

.schedule-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #ccc;
  border-bottom: 1px solid #333;
}

/* Contact Form Section */
.contact {
  padding: 8rem 7%;
  background-color: #0a0a0a;
}

.contact h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.contact h2 span {
  color: var(--primary);
}

.contact > p {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: #aaa;
}

.contact .row {
  display: flex;
  justify-content: center;
}

.contact-form {
  width: 100%;
  max-width: 600px;
}

.input-group {
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

.input-group i {
  color: var(--primary);
  margin-right: 1rem;
}

.input-group input,
.input-group textarea {
  flex: 1;
  background: none;
  color: #fff;
  padding: 0.8rem;
  font-size: 1rem;
  border: none;
}

.input-group textarea {
  resize: none;
  height: 120px;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  color: #fff;
  background-color: var(--primary);
  border-radius: 0.5rem;
  cursor: pointer;
  border: none;
  width: 100%;
  transition: 0.3s;
}

.btn:hover {
  background-color: #9a7650;
}
