/* Background with blue color */
#hero {
    background: linear-gradient(135deg, #a8c0ff, #d9ecff);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  
  /* Typography improvements */
  #hero h1 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #000; /* atau bisa gradasi, sesuai selera */
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
  }

  #hero h1:hover {
    transform: translateY(-5px); /* Sedikit naik saat diarahkan */
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2); /* Bayangan halus */
  }
  
  #hero h3 {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  }
  
  #hero p {
    font-size: 1.1rem;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* Button styling */
  .d-flex-buttons button {
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
  }
  
  /* Explore button */
  .btn-explore {
    background-color: #ff5722;
    color: white;
    border: none;
  }
  
  .btn-explore:hover {
    background-color: #e64a19;
    transform: scale(1.1);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Light button */
  .btn-light {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
  }
  
  .btn-light:hover {
    background-color: #ddd;
    transform: scale(1.05);
  }
  
  /* Outline button */
  .btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
  }
  
  .btn-outline-light:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  
  /* Adding a background animation effect */
  #hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Slight dark overlay */
    transition: background 0.3s ease-in-out;
    z-index: -1;
  }
  
  #hero:hover::before {
    background: rgba(0, 0, 0, 0.5);
  }
  
  /* Styling untuk navbar dan link */
.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item {
  margin-left: 20px; /* Ruang antara setiap item menu */
}

.navbar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 15px;
}

.navbar-nav .nav-link:hover {
  background-color: #f39c12;
  color: white;
}

.navbar-nav .nav-link img {
  /* Styling untuk ikon logo di samping teks */
  margin-right: 8px;
}

.navbar-brand img {
  height: 50px;
  background: transparent;
}
