/* 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.active,
.booking-button:hover
 {
  background-color: #ff5a96;
  color: #fff;
}

/* Navbar Animation */
@keyframes bounceOutUp {
  0% { transform: translateY(0); }
  30% { transform: translateY(-10px); }
  100% { transform: translateY(-120%); }
}

@keyframes slideDown {
  from { transform: translateY(-120%); }
  to { transform: translateY(0); }
}

.navbar.hide {
  animation: bounceOutUp 0.5s forwards;
}

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

.section1{
    width: 100vw;
    height: auto;
    margin-top: -160px;
    background-color: #3b3b3b;
    display: flex;
    flex-direction: column;
}
/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 6rem;
  overflow: hidden;
  margin-top: -120px;
  margin-left: -1360px;
}

.hero-text {
  flex: 1;
  color: #fff;
  max-width: 50%;
  margin-left: -1900px;
}

.hero-text h2 {
  font-size: 2rem;
  font-family: 'Arpona', serif;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: left;
  margin: 50px;
  color: #FC427B;
}
 .hero-text p{
    font-size: 1.2rem;
  font-family: 'Mulish', sans-serif;
  text-align: left;
  margin: -20px 0px 0px 50px;
  color: #000000;
 }
.btn-wa {
  background-color: #d4e157;
  color: #000;
  padding: 0.7rem 1.5rem;
  border-radius: 20px;
  display: inline-block;
  text-decoration: none;
  margin-top: 1.5rem;
  margin-left: 50px;
}
.btn-wa:hover{
    color: #f5f2aa;
    background-color: #BDC581;
}
.hero-img {
  flex: 1;
  display: flex;
  width: 1920px;
  
  justify-content: flex-end;
}

.hero-img img {
width: 1920px;
  height: auto;
  margin-right: 150px;
  object-fit: contain;
  margin-top: 40px;
  margin-left: -2000px;
}



.product {
  width: 100vw;
  height: 900px; /* Tinggi container ngikutin gambar */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -190px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.booking-img {
  width: 100%;
  height: auto; /* Bisa kamu ganti ke 600px atau apapun */
  object-fit: cover; /* Biar gambarnya tetap proporsional */
  margin-top: 340px;
}

.map-box {
  background-color: cornsilk;
width: 600px;
  height: 600px;
  border: 2px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin: 20px auto;
  position: relative;
  z-index: 2;
  margin-left: -1480px;
}

.alamat-text {
  flex: 1;
  margin-left: -1900px;
  text-align: right;
}

.alamat-text h2 {
  font-size: 2rem;
  font-family: 'Arpona', serif;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #FC427B;
  margin-right: 100px;
}
 .alamat-text p{
    font-size: 1.2rem;
  font-family: 'Mulish', sans-serif;
 margin-right: 100px;
  color: #ffffff;
  margin-top: -20px;
 }
.btn-maps {
  background-color: #d4e157;
  color: #000;
  padding: 0.7rem 1.5rem;
  border-radius: 20px;
  display: inline-block;
  text-decoration: none;
  margin-top: -10px;
   margin-right: 100px;
}
.btn-maps:hover{
    color: #f5f2aa;
    background-color: #BDC581;
}


/* 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 {
  height: 40px;
  margin: 0 10px;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons img:hover {
  filter: brightness(0) saturate(100%) invert(65%) sepia(19%) saturate(1294%) hue-rotate(305deg) brightness(97%) contrast(90%);
}
.p a {
  color: inherit;        /* agar warna teks ikut warna <p> */
  text-decoration: none; /* menghilangkan underline */
}

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