@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 3%;
  width: 100%;
  background-color: #e7dfdf;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

.navbar .inner-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
}

.navbar .inner-navbar .brand a {
  font-size: larger;
  font-weight: bold;
  color: #111010;
  transition: 0.3s;
}

.navbar .inner-navbar .brand a:hover {
  color: #e74c3c;
}

.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
}

.navbar-nav a {
  color: #131212;
}

.hamburger-menu {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full height */
  overflow: hidden;
}

.inner-hero {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the entire area */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* Send the image to the back */
}

.hero-content {
  position: absolute;
  top: 40%;
  left: 1rem;
  z-index: 1;
  text-align: left;
  padding: 20px;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-content.visible {
  opacity: 1;
  transform: translateY(0); /* Posisi akhir */
}

.hero-content .hero-title {
  color: #e91e63;
}

.hero-content .hero-desc {
  color: #000;
}

.date-time {
  font-size: 1.2em;
  margin: 10px 0;
}

.btn {
  display: inline-block;
  background-color: #ff4081; /* Button color */
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #e91e63; /* Button hover color */
}

.about-us {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 4rem 0;
}

.content-about-us {
  width: 100%;
  /* max-width: 500px; */
  text-align: center;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
}

#id {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #555;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.icon-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fce4ec;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #e91e63;
  margin-right: 15px;
}

.content h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #333;
}

.content p {
  font-size: 0.9rem;
  color: #666;
  margin: 5px 0 0 0;
}

.social-links {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.social-link {
  text-align: center;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.social-links .social-link img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #000;
  padding: 10px;
  transition: transform 0.3s ease;
}

.social-link img:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }

  #hamburger-button {
    color: #000;
    font-size: 24px;
    transition: 0.3s linear;
  }

  #hamburger-button:hover {
    color: #e91e63;
  }

  .navbar-nav {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 20rem;
    height: 100vh;
    background-color: #e7dfdf;
    transition: 0.4s all;
    display: flex;
    flex-direction: column;
    justify-content: left;
    padding: 3rem 0;
  }

  .show-navbar {
    left: 0;
  }

  .navbar-nav a {
    font-size: 1.5rem;
  }

  .hero-content {
    top: 60%;
    left: 0;
    text-align: center;
    width: 100%;
  }

  .hero-content .hero-title {
    color: #ff0055;
    opacity: 0.8;
    font-size: 1.2rem;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
  }

  .hero-content .hero-desc {
    color: #000;
  }

  .date-time {
    font-size: 1em;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px); /* Posisi lebih bawah */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Posisi akhir */
  }
}
