body {
  font-family: arial, sans-serif;
  margin: 0;
  background-color: #f7f5f2;
}
header nav a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
  font-size: 14px;
}
header nav a:hover {
  color: #d4af37;
}
.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 10px;
}
.logo img {
  width: 70px;
  height: 40px;
}
.hero {
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px; /* Sesuaikan tinggi sesuai kebutuhan */
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93")
    center/cover no-repeat;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: 'Lora', serif;
}
.hero p {
  max-width: 500px;
  font-size: 15px;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 60px;
  background-color: white;
  background-size: cover;
  background-position: center;
  min-height: 60vh;
}
.content img {
  width: 230px;
  border-radius: 8px;
  object-fit: cover;
  
}
.text-box {
  max-width: 400px;
}

.font-serif {
    font-family: 'Lora', serif;
    }
.text-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.text-box p {
  font-size: 14px;
  line-height: 1.6;
}

.text-box button:hover {
  background-color: #b6932b;
}

/* FOOTER */
footer {
  background-color: #1e1e1e;
  color: #e0e0e0;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer h4 {
  margin-bottom: 8px;
  color: #d4af37;
}

footer a {
  color: #d4af37;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
#backTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #d4af37;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 4px;
  cursor: pointer;
  display: none;
  z-index: 200;
}

.fade-img {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(30px);
}
.fade-img.visible {
  opacity: 1;
  transform: translateY(0);
}
/* stylemenu.css */
.hero-animate {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1.2s ease-out forwards;
}
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content img {
  transition: transform 0.4s, box-shadow 0.4s;
}
.content img:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.18);
  z-index: 2;
}


