/* 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;
}


/* 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{
    background-image: url('images/aset/PRODUCT\ BG.png');
     background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  margin-top: -200px;
  max-width: 90vw;
  padding: 100px 5%;
  min-height: 2140px;
}
/* Hero Section */
.section1 .hero {
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  height: 640px;
  margin-top: 230px;
}

.section1 .hero h2 {
  font-size: 2.5rem;
  font-family: 'Arpona', serif;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: left;
  margin: 50px;
  color: #FC427B;
}

.section1 .hero p {
  font-size: 1.2rem;
  font-family: 'Mulish', sans-serif;
  text-align: left;
  margin: -20px 0px 0px 50px;
  color: #BDC581;
}

.product {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6rem;
  padding: 4rem 2rem;
  height: 850px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
    align-items: flex-start;

}
.product-card:hover {
  transform: translateY(-10px);

}
.product-card p{
  color: #BDC581;
  margin-top: -24px;
  text-align: right;
  margin-left: 170px;
}
.product-image {
  width: 250px;
  height: 390px;

  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
overflow: hidden;
  margin-top: 190px;
  align-self: center;

}
.product-image:hover{
    transform: scale(1.04);
}
.product-image img {
  width: 750px;
 margin-top: -160px;
 margin-left: -240px;
  object-fit: cover;
  display: block;
  justify-content: center;
  align-items:flex-end;
}

.shop-btn {
  margin-top: 1rem;
  background-color: #f5f2aa;
  color: #5a0f47;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s;
text-align: left;
}

.shop-btn:hover {
  background-color: #5a0f47;
  color: #fff;
  transform: scale(1.5);
}

.product-name {
  margin-top: 0.5rem;
  color: #f5f2aa;
  text-align: center;
  font-size: 0.95rem;
}


/* 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: 250px;
  margin-top: -287px;
}

.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;
}