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: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7), rgb(0, 0, 0)), url("/image/testi.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: rgba(142, 143, 49, 0.564);
  margin-bottom: 10px;
}
.content .home a {
  text-decoration: none;
  color: #ffffff;
}
.content .home a p {
  background-color: rgba(255, 255, 255, 0.2); /* Transparansi agar blur terlihat */
  padding: 12px;
  border: 1px solid white;
  transition: 0.4s ease-in-out;
  backdrop-filter: blur(2px); /* Blur yang elegan */
  -webkit-backdrop-filter: blur(8px); /* Support untuk Safari */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Memberikan efek melayang */
}
.content .home a p:hover {
  background-color: rgba(255, 255, 255, 0.3); /* Perubahan warna lebih terang */
  color: #c99a36;
  border: 1px solid #c99a36;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Efek bayangan yang lebih jelas */
}

#testimoni {
  background-color: rgba(165, 31, 31, 0.337254902);
  height: auto;
  padding: 30px 0 50px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#testimoni .testimoni {
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-between;
  padding: 30px;
  align-items: center;
  border-top: 3px solid white;
  border-left: 3px solid rgb(255, 255, 255);
}
#testimoni .testimoni h2 {
  color: white;
  font-size: large;
  font-weight: 300;
  font-size: 24px;
  text-align: left;
  align-items: center;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}
#testimoni .testimoni h2 span {
  font-size: 40px;
}
#testimoni .testimoni p {
  width: 50%;
  text-align: justify;
  color: white;
  font-weight: 300;
  font-size: 18px;
}
#testimoni .card-wrapper {
  padding: 30px;
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-left: 3px solid white;
}
#testimoni .card-wrapper .card-list {
  height: 450px;
  width: 300px;
  border: 1px solid #534c4c;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0 20px 0;
}
#testimoni .card-wrapper .card-list img {
  width: 200px;
  height: 380px;
  margin-bottom: 15px;
  -o-object-fit: fill;
     object-fit: fill;
}
#testimoni .card-wrapper .card-list p {
  text-align: center;
}

footer {
  background-color: rgba(81, 41, 41, 0.6156862745);
  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(171, 171, 171);
    /* 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;
  }
  .card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .card-wrapper .card-list {
    height: 350px;
    width: 200px;
  }
  .testimoni {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}/*# sourceMappingURL=testimoni.css.map */