html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* logo-browser */
@keyframes flicker {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.3);
  }
}
/* Agar logo terlihat menyala */
.logo-favicon {
  animation: flicker 1.5s infinite alternate;
}

nav {
  background-color: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  justify-content: space-between;
  box-sizing: border-box; /* Pastikan padding tidak mempengaruhi lebar */
  z-index: 999;
  position: absolute;
  top: 0; /* Menempel di bagian atas */
  left: 0; /* Menempel di sisi kiri */
  transition: background-color 0.3s, -webkit-backdrop-filter 0.3s;
  transition: background-color 0.3s, backdrop-filter 0.3s;
  transition: background-color 0.3s, backdrop-filter 0.3s, -webkit-backdrop-filter 0.3s;
}
nav ul {
  display: flex;
  margin: 0;
  gap: 20px;
}
nav ul li a {
  text-decoration: none;
  color: white;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.4s ease;
}
nav ul li a.reservation {
  background-color: #ffa600;
  border-radius: 30px;
  padding: 10px 30px;
  color: white;
  width: 100px;
}
nav .logo a img {
  width: 70%;
  height: 70%;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.4s;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.content .home {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: url("/image/grill meat.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
  color: white;
  text-align: center;
  font-family: "Playfair", serif;
}
.content .home h2 {
  font-size: 1.3rem;
  font-family: "Raleway";
  margin-left: 40px;
}
.content .home h1 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 800;
  margin-left: 40px;
}
.content .home p {
  margin-left: 40px;
  color: #f1e6e6;
  text-align: left;
  margin-top: 0;
}
.content .home a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  margin-top: 20px;
  margin-left: 40px;
  background-color: #ffa600;
  border: 1px solid transparent;
  /* Transparansi agar blur terlihat */
  padding: 14px 22px;
  border-radius: 30px;
  transition: 0.4s ease-in-out;
}
.content .home a:hover {
  background-color: #b68d40; /* Perubahan warna lebih terang */
}
.content section#tulisan {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fbece4;
  padding: 50px 0 20px 0;
}
.content section#tulisan .tulisan-gila {
  display: grid;
  grid-template-areas: "tulisan" "arabian";
  grid-template-columns: 3fr;
  grid-template-rows: 3fr 1fr;
  background-color: #fbece4;
}
.content section#tulisan .tulisan-gila p {
  grid-area: tulisan;
  text-align: center;
  font-family: "Trebuchet MS";
  font-size: 20px;
  color: #534c4c;
  width: 800px;
  align-items: center;
  justify-content: center;
  display: flex;
  padding-bottom: 30px;
}
.content section#tulisan .tulisan-gila p.root {
  grid-area: arabian;
  text-align: center;
  color: #b68d40;
}
.content section#choose {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  background-color: #f5fafe;
  gap: 30px;
  padding-bottom: 50px;
}
.content section#choose .choose-up {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  gap: 10px;
}
.content section#choose .choose-up h1 {
  font-family: "Merryweather";
  font-weight: 600;
  font-size: 30px;
  color: rgb(0, 0, 0);
  margin-top: 40px;
  margin-bottom: 10px;
}
.content section#choose .choose-up h1 span {
  color: #b68d40;
}
.content section#choose .choose-up h2 {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-weight: 200;
  color: #888;
  text-align: center;
  align-items: center;
}
.content section#choose .choose-down {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.content section#choose .choose-down .choose-item {
  width: 300px;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #ffffff;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.content section#choose .choose-down .choose-item svg {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  color: #b68d40;
}
.content section#choose .choose-down .choose-item h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 800;
  margin-top: 20px;
  color: #b68d40;
}
.content section#choose .choose-down .choose-item p {
  align-items: center;
  text-align: center;
  width: 200px;
  font-size: 17px;
  color: #534c4c;
  justify-items: center;
  line-height: 18px;
  font-family: "Lucida Sans Unicode";
}

#testimoni {
  background-color: #8db5c1;
  height: 100vh;
  width: 100%;
}

section#about {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  padding: 40px 20px;
  height: auto;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7), rgb(0, 0, 0)), url("/image/arang.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 200;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding-top: 65px;
}
section#about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  font-style: normal;
  color: white;
}
section#about h2 span {
  color: #b68d40;
}
section#about p {
  color: white;
  font-weight: 300;
}
section#about .atas p {
  text-align: center;
  font-size: 24px;
  font-family: "Dancing Script", cursive;
  margin-bottom: 20px;
}
section#about .bawah {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  /* background-color: #000000; */
  width: auto;
  height: auto;
  padding-bottom: 70px;
}
section#about .bawah .kiri,
section#about .bawah .kanan {
  width: 300px;
  height: 400px;
}
section#about .bawah .kiri img,
section#about .bawah .kanan img {
  width: 300px;
  height: 400px;
}
section#about .bawah .tengah {
  background-color: rgba(0, 0, 0, 0.5215686275);
  width: 300px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}
section#about .bawah .tengah p {
  color: white;
  font-weight: 100;
  z-index: 9;
}
section#about .bawah .tengah h1 {
  color: #ffffff;
  font: 18/12 helvetica #888;
  text-align: center;
  align-items: center;
  width: 250px;
}
section#about .bawah .tengah h2 {
  font-family: "Times New Roman", serif;
  font-weight: 100;
  font-size: 50px;
  margin-bottom: 0;
  color: white;
}
section#about .bawah .tengah a {
  padding: 10px;
  background: #ffa600;
  border: 1px solid #ffa600;
  width: 150px;
  text-decoration: none;
  color: white;
  font-weight: 400;
  transition: 0.23s ease-in;
  margin-top: 20px;
}
section#about .bawah .tengah a:hover {
  background-color: rgba(194, 183, 183, 0);
  border: 1px solid #fcfcfc;
  color: #c99a36;
}

.product-section {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0)), url(/image/tileable-wood-colored.png);
  background-size: cover;
  background-repeat: repeat;
  padding-bottom: 120px;
  padding-top: 50px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product-section a.keMenu {
  background-color: #c99a36;
  border: 1px solid #c99a36;
  transition: 0.4ms ease-in-out;
  text-decoration: none;
  color: white;
  font-size: 3rem;
  width: 80%;
  text-align: center;
  transition: 0.32s ease-in;
  box-shadow: 1px 2px 3px rgba(29, 29, 29, 0.8235294118);
  border-radius: 3px;
  padding: 10px 0;
}
.product-section a.keMenu:hover {
  background: #363229;
  color: #c99a36;
}
.product-section a.keWa {
  background-color: #c99a36;
  border: 1px solid #c99a36;
  transition: 0.4ms ease-in-out;
  text-decoration: none;
  color: white;
  font-size: 3rem;
  width: 80%;
  text-align: center;
  transition: 0.32s ease-in;
  box-shadow: 1px 2px 3px rgba(29, 29, 29, 0.8235294118);
  border-radius: 3px;
  padding: 10px 0;
  background-color: green;
  margin-top: 20px;
}
.product-section a.keWa:hover {
  background: #363229;
  color: #c99a36;
}
.product-section a.keWa:hover {
  color: green;
  border: 1px solid green;
}
.product-section ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: transparent;
  border-radius: 3px;
  padding: 5px 10px;
  margin-top: 20px;
}
.product-section ul li {
  cursor: pointer;
  padding: 10px 5px 10px 5px;
  background-color: #c99a36;
  border-radius: 3px;
  color: white;
  transition: 0.4s ease-in;
}
.product-section ul li:hover {
  background-color: rgba(49, 77, 110, 0.15);
  box-shadow: 0 0 10px #fff;
}
.product-section h1 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: white;
  font-size: 24px;
  margin-top: 20px;
}
.product-section .paket-kambing-bakar,
.product-section .paket-sate-gulai {
  display: grid;
  grid-template-areas: "atas" "bawah";
  grid-template-rows: 1fr 9fr;
}
.product-section .paket-kambing-bakar .product-up,
.product-section .paket-sate-gulai .product-up {
  grid-area: atas;
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
  justify-content: center;
}
.product-section .paket-kambing-bakar .product-up h2,
.product-section .paket-sate-gulai .product-up h2 {
  color: white;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  padding: 5px 30px 5px 30px;
  border: 1px solid #c99a36;
}
.product-section .paket-kambing-bakar .product-up h2 span,
.product-section .paket-sate-gulai .product-up h2 span {
  color: #c99a36;
}
.product-section .paket-kambing-bakar #product-down-1,
.product-section .paket-kambing-bakar #product-down-2,
.product-section .paket-sate-gulai #product-down-1,
.product-section .paket-sate-gulai #product-down-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-section .paket-kambing-bakar .product-down,
.product-section .paket-sate-gulai .product-down {
  grid-area: bawah;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 30px;
  width: 90%;
}
.product-section .paket-kambing-bakar .product-down .product,
.product-section .paket-sate-gulai .product-down .product {
  background-color: rgba(72, 63, 63, 0.7411764706);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 230px;
  height: auto;
  border-radius: 4px;
  gap: 20px;
  padding-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.411);
  padding: 10px 10px 20px 10px;
}
.product-section .paket-kambing-bakar .product-down .product img,
.product-section .paket-sate-gulai .product-down .product img {
  width: 230px;
  height: 230px;
  border-radius: 3px;
}
.product-section .paket-kambing-bakar .product-down .product a,
.product-section .paket-sate-gulai .product-down .product a {
  background-color: #c99a36;
  border: 1px solid #c99a36;
  transition: 0.4ms ease-in-out;
}
.product-section .paket-kambing-bakar .product-down .product a:hover,
.product-section .paket-sate-gulai .product-down .product a:hover {
  background: transparent;
}
.product-section .paket-kambing-bakar .product-down .product .product-a h2,
.product-section .paket-sate-gulai .product-down .product .product-a h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
  text-align: left;
  margin-left: 0;
}
.product-section .paket-kambing-bakar .product-down .product .product-a p,
.product-section .paket-sate-gulai .product-down .product .product-a p {
  width: 230px;
  text-align: left;
  color: #968686;
  margin-bottom: 10px;
  font-weight: bold;
}
.product-section .paket-kambing-bakar .product-down .product .product-a p span,
.product-section .paket-sate-gulai .product-down .product .product-a p span {
  color: #b68d40;
}
.product-section .paket-kambing-bakar .product-down .product .product-c,
.product-section .paket-sate-gulai .product-down .product .product-c {
  display: flex;
  text-align: left;
}
.product-section .paket-kambing-bakar .product-down .product .product-c p,
.product-section .paket-sate-gulai .product-down .product .product-c p {
  width: 230px;
  color: #8db5c1;
  line-height: 1.8;
}
.product-section .paket-kambing-bakar .product-down .product .product-c p span,
.product-section .paket-sate-gulai .product-down .product .product-c p span {
  color: #b68d40;
}
.product-section .paket-kambing-bakar .product-down .product .product-b,
.product-section .paket-sate-gulai .product-down .product .product-b {
  display: flex;
  justify-content: space-between;
  width: 230px;
}
.product-section .paket-kambing-bakar .product-down .product .product-b a,
.product-section .paket-sate-gulai .product-down .product .product-b a {
  padding: 5px;
  transition: 0.4s ease-in-out;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.product-section .paket-kambing-bakar .product-down .product .product-b a:hover,
.product-section .paket-sate-gulai .product-down .product .product-b a:hover {
  background-color: transparent;
}
.product-section .paket-kambing-bakar .product-down .product .product-b p,
.product-section .paket-sate-gulai .product-down .product .product-b p {
  padding: 7px;
  color: #968686;
}
.product-section .paket-kambing-bakar .product-down .product .product-b p span,
.product-section .paket-sate-gulai .product-down .product .product-b p span {
  color: #b68d40;
}
.product-section .paket-sate-gulai {
  display: none;
}
.product-section .show {
  display: flex;
}

.contact-section {
  padding: 80px 20px;
  text-align: center;
  font-family: "Raleway", sans-serif;
  background-color: #f5fafe;
}
.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #b68d40;
  font-weight: bold;
}
.contact-section h2 span {
  color: #ffa600;
}
.contact-section .contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  height: auto;
}
.contact-section .contact-container .map-container {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: 400px;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.contact-section .contact-container .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact-section .contact-container .form-container {
  flex: 1;
  height: 360px;
  min-width: 300px;
  max-width: 600px;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 20px;
  border-radius: 3px;
  border: 1px solid transparent;
}
.contact-section .contact-container .form-container .form-group {
  margin-bottom: 20px;
  text-align: left;
  max-width: 610px;
}
.contact-section .contact-container .form-container .form-group label {
  display: block;
  font-size: 1rem;
  color: #b68d40;
  margin-bottom: 5px;
}
.contact-section .contact-container .form-container .form-group textarea,
.contact-section .contact-container .form-container .form-group input {
  width: 95%;
  padding: 10px;
  border: 1px solid #b68d40;
  border-radius: 3px;
  background-color: #ffffff;
  color: #534c4c;
  font-size: 1rem;
  transition: border-color 0.3s, background-color 0.3s;
}
.contact-section .contact-container .form-container .form-group textarea:focus,
.contact-section .contact-container .form-container .form-group input:focus {
  outline: none;
  border-color: #ffffff;
  background-color: #fbece4;
}
.contact-section .contact-container .form-container .form-group textarea::-moz-placeholder, .contact-section .contact-container .form-container .form-group input::-moz-placeholder {
  color: #888;
}
.contact-section .contact-container .form-container .form-group textarea::placeholder,
.contact-section .contact-container .form-container .form-group input::placeholder {
  color: #888;
}
.contact-section .contact-container .form-container button[type=submit] {
  background-color: #b68d40;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-section .contact-container .form-container button[type=submit]:hover {
  background-color: #ffdd57;
}

footer {
  background-color: rgb(45, 45, 45);
  height: 15vh;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
footer p {
  margin-bottom: 10px;
  color: white;
}
footer .social-media a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
  font-size: 24px;
}
footer .social-media a:hover {
  color: #b68d40;
}

/* Responsive */
@media (max-width: 945px) {
  #choose .choose-down {
    flex-direction: column;
  }
  #choose .choose-down .choose-item {
    width: 100px;
    height: 150px;
  }
  #choose .choose-down .choose-item svg {
    width: 50px;
    height: 50px;
  }
  #choose .choose-down .choose-item h3 {
    font-size: 16px;
  }
  #choose .choose-down .choose-item p {
    width: 100px;
    font-size: 15px;
  }
  #about .bawah .kiri,
  #about .bawah .kanan {
    width: 250px;
    height: 350px;
  }
  #about .bawah .kiri img,
  #about .bawah .kanan img {
    width: 250px;
    height: 350px;
  }
  #about .bawah .tengah {
    width: 250px;
    height: 350px;
  }
  #about .bawah .tengah p {
    color: white;
    font-weight: 100;
    z-index: 9;
  }
  #about .bawah .tengah h1 {
    color: #888;
    font: 15/12 helvetica #888;
    text-align: center;
    align-items: center;
    width: 200px;
  }
  #about .bawah .tengah h2 {
    font-family: "Times New Roman", serif;
    font-weight: 100;
    font-size: 35px;
    margin-bottom: 0;
    color: white;
  }
  #about .bawah .tengah a {
    padding: 8px;
    width: 120px;
  }
  #about .bawah .tengah a:hover {
    background-color: rgba(194, 183, 183, 0);
    border: 1px solid #fcfcfc;
    color: #c99a36;
  }
}
@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    height: 100vh;
    top: 0;
    border: 1px solid #2a2a2a;
    right: -100px;
    background-color: rgb(0, 0, 0);
    /* border-radius: 8px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    z-index: 100;
    padding: 90px;
    transition: 0.4s ease-in-out;
  }
  .menu li {
    padding: 0 0 24px 0;
    margin-top: 0;
  }
  nav .search-nav {
    display: none;
  }
  .menu.open {
    display: flex;
    right: 0;
  }
  .hamburger {
    display: flex;
  }
  #choose .choose-down {
    display: flex;
    flex-direction: column;
  }
  #choose .choose-down .choose-item {
    width: 200px;
    height: 250px;
  }
  #choose .choose-down .choose-item svg {
    width: 80px;
    height: 80px;
  }
  #choose .choose-down .choose-item h3 {
    font-size: 16px;
  }
  #choose .choose-down .choose-item p {
    width: 160px;
    font-size: 15px;
  }
  .about h2 {
    font-size: 1.8rem; /* Ukuran font lebih kecil untuk layar kecil */
  }
  .about p {
    font-size: 1rem; /* Ukuran font lebih kecil untuk layar kecil */
    padding: 20px 10px; /* Padding yang lebih kecil */
  }
  .about .bawah {
    flex-direction: column; /* Ubah ke column untuk layar kecil */
    align-items: center; /* Pusatkan konten */
  }
  .about .bawah .img-part img {
    width: 100%; /* Gambar mengisi lebar layar */
    max-width: 400px; /* Batasi ukuran maksimum gambar */
    padding-right: 0; /* Hapus padding kanan */
  }
  .product-down {
    display: grid;
    grid-column: span;
    align-items: center;
    justify-content: center;
  }
  .product-section .product-up h2 {
    padding: 5px 50px 5px 50px;
  }
  .product-section .product-down {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .about h2 {
    font-size: 1.5rem; /* Ukuran font lebih kecil untuk ponsel */
  }
  .about p {
    font-size: 0.9rem; /* Ukuran font lebih kecil untuk ponsel */
    padding: 10px; /* Padding yang lebih kecil */
  }
  .bawah .img-part p {
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */