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 */
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: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)), url("/image/about.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  height: 60vh;
  color: white;
  text-align: center;
  font-family: "Playfair", serif;
}
.content .home h2 {
  font-size: 1.3rem;
  font-family: "Raleway";
}
.content .home h1 {
  font-size: 3.5rem;
  color: #c99a36;
  margin-bottom: 10px;
}

#about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px 0 50px 0;
  background-color: #ebf3f5;
}
#about .above {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 90%;
}
#about .above .left {
  flex: 1;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#about .above .left h2 {
  color: black;
  margin-bottom: 10px;
  font-size: 2.5rem;
  font-weight: 700;
}
#about .above .left p {
  color: #534c4c;
  width: 70%;
  text-align: justify;
  margin-top: 20px;
  font-size: 1.1rem;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  line-height: 150%;
  line-break: loose;
}
#about .above .right {
  flex: 1;
}
#about .above .right img {
  width: 90%;
  height: 90%;
  box-sizing: border-box;
  border-radius: 3px;
  box-shadow: 10px 10px 1px #d8d8d8;
  transition: 0.4s ease-in-out;
}
#about .above .right img:hover {
  box-shadow: none;
}
#about .under {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
}
#about .under .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#about .under .left h2 {
  color: black;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}
#about .under .left p {
  color: #534c4c;
  width: 70%;
  text-align: justify;
  margin-top: 20px;
  font-size: 1.1rem;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  line-height: 150%;
  line-break: loose;
}
#about .under .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#about .under .right h2 {
  color: black;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}
#about .under .right p {
  color: #534c4c;
  width: 90%;
  text-align: justify;
  margin-top: 20px;
  font-size: 1.1rem;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  line-height: 150%;
  line-break: loose;
}
#about .under .right ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 40px 0 0 20px;
}
#about .under .right ul li {
  list-style: circle;
  color: #534c4c;
  font-size: 20px;
}

footer {
  background-color: rgb(116, 94, 94);
  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;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    height: 100vh;
    top: 0;
    right: -100px;
    background-color: rgb(95, 88, 88);
    /* 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;
  }
  #about {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e6e6e6;
  }
  #about .above {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    gap: 40px;
  }
  #about .under {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  #about .under .right p {
    width: 70%;
  }
}/*# sourceMappingURL=about.css.map */