/* === Umum === */
body {
  min-height: 100vh;
  background-color: #0055ff;
}

body.with-bg {
  background-image: url('../img/bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}


/* === Navbar === */
.navbar-index {
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-index.navbar-scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Warna link navbar */
.navbar-dark .nav-link,
.navbar-dark .navbar-brand span {
  color: #ffffff;
}

.navbar-light .nav-link,
.navbar-light .navbar-brand span {
  color: #212529;
}

.nav-link.active {
  font-weight: bold;
}

.navbar-brand span {
  font-size: 1.25rem;
}

/* Tombol Navbar */
.btn-nav-dashboard,
.btn-nav-auth,
.btn-nav-register {
  transition: 0.3s ease;
}

.navbar-index .btn-nav-dashboard,
.navbar-index .btn-nav-auth {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.navbar-index .btn-nav-register {
  background-color: #fff;
  color: #000;
  border: none;
}

.navbar-scrolled .btn-nav-dashboard,
.bg-white .btn-nav-dashboard {
  border: 1px solid #000;
  color: #000;
  background: transparent;
}

.navbar-scrolled .btn-nav-auth,
.bg-white .btn-nav-auth {
  background-color: #000;
  color: #fff;
  border: none;
}

/* Tombol hover */
.btn-outline-dark:hover {
  background-color: #212529;
  color: #fff;
}

.btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #000;
}

.btn-light.text-dark {
  background-color: #fff;
  color: #000;
  border: none;
}

.btn-light.text-dark:hover {
  background-color: #e2e6ea;
}


/* === MGJ Logo Animation === */
.putar-kanan {
  animation: rota-full-right 25s linear infinite;
}

@keyframes rota-full-right {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* === Hero === */
.hero-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.welcome-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px 20px 120px;
  color: #ffffff;
}

.welcome-text h1 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.welcome-text .highlight {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.welcome-text h3 {
  font-size: 1.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.welcome-text p {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}


/* === Help === */
.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}


/* === Footer === */
footer {
  background-color: #ffffff;
  width: 100%;
}

#footer {
  margin-top: auto;
  width: 100%;
}
