/* Font */
@import url('https://fonts.googleapis.com/css2?family=Mulish&display=swap');

@font-face {
  font-family: 'Arpona';
  src: url('fonts/Fontspring-DEMO-arpona-bolditalic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Arpona';
  src: url('fonts/Fontspring-DEMO-arpona-regularitalic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
}

body {
  margin: 0;
  font-family: 'Mulish', sans-serif;
  background-color: #3b3b3b;
  color: #fff;
  padding-top: 160px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  padding: 1rem 3rem;
  max-width: 1500px;
  margin: 30px auto 0 auto;
  border-radius: 80px;
  transition: transform 0.3s ease;
}

.logo img {
  height: 80px;
  margin-left: 30px;
}

.menu-icons {
  margin-left: 900px;
}

.menu-icons img {
  margin: 0 10px;
  height: 40px;
}

.menu-icons img.active,
.menu-icons img:hover {
  filter: brightness(0) saturate(100%) invert(85%) sepia(13%) saturate(1498%) hue-rotate(25deg) brightness(91%) contrast(91%);
  transition: all 0.3s ease;
}

.booking-button {
  padding: 0.4rem 1rem;
  border: 5px solid #ff5a96;
  border-radius: 999px;
  color: #ff5a96;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
  transition: background 0.3s;
}

.booking-button:hover {
  background-color: #ff5a96;
  color: #fff;
}


/* Hero */
.hero {
    background-image: url('images/aset/home.png');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 5%;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: -160px;
  height: 1000px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #ff5a96;
  margin-bottom: 1rem;
font-family: 'Arpona', serif;
    font-style: italic;
    font-weight: bold;
  }


.hero-text p {
  color: #d2d093;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  background-color: #d2d093;
  color: #6D214F;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.cta-button:hover {
  background-color: #e6e2b5;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 40px 0 0 40px;
  opacity: 0;
}

/* Footer */
.footer {
  background: linear-gradient(to right, #4e2e6a, #161f39, #000000);
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 200px;
}

.address p {
  margin: 0;
  font-size: 0.95rem;
  color: #d2d093;
}
.address p:hover{
  text-decoration: underline;
}


.social-icons img {
  margin-left: 15px;
  height: 40px;
  margin-right: 20px;

}
.social-icons img:hover{
      filter: brightness(0) saturate(100%) invert(65%) sepia(19%) saturate(1294%) hue-rotate(305deg) brightness(97%) contrast(90%);
}

/* Animasi keluar (bounce ke atas) */
@keyframes bounceOutUp {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-10px); }
  100% { transform: translateY(-120%); }
}

/* Animasi masuk (slide dari atas) */
@keyframes slideDown {
  from { transform: translateY(-120%); }
  to   { transform: translateY(0); }
}

/* Efek hide & show */
.navbar.hide {
  animation: bounceOutUp 0.5s forwards;
}

.navbar.show {
  animation: slideDown 0.4s forwards;
}

/* Animasi dasar */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Kelas untuk teks yang muncul */
.reveal {
  opacity: 0;
}

/* Saat aktif */
.reveal.active {
  animation: fadeUp 0.8s ease-out forwards;
}

/* Delay opsional */
.reveal.delay-1 {
  animation-delay: 0.2s;
}
.reveal.delay-2 {
  animation-delay: 0.4s;
}
.reveal.delay-3 {
  animation-delay: 0.6s;
}

@font-face {
  font-family: 'Arpona';
  src: url(fonts/Fontspring-DEMO-arpona-bolditalic.woff2) format('woff2');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'Arpona';
  src: url(fonts/Fontspring-DEMO-arpona-regularitalic.woff2) format('woff2');
  font-weight: normal;
  font-style: italic;
}
.p a {
  color: inherit;        /* agar warna teks ikut warna <p> */
  text-decoration: none; /* menghilangkan underline */
}

.p a:hover{
text-decoration: underline;
}