/* NAVBAR */
.ut-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition:
    background 0.3s,
    box-shadow 0.3s;
  z-index: 1000;
}

.ut-navbar.desktop {
  background: transparent;
  color: #ffd700;
} /* gold text default */
.ut-navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffd700;
}

.ut-logo {
  font-weight: 600;
  font-size: 1.5rem;
  color: #ffd700;
} /* gold logo */

.ut-navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: auto; /* center menu */
}

.ut-navbar ul li a {
  text-decoration: none;
  color: #ffd700; /* gold text menu */
  font-weight: 500;
  transition: color 0.3s;
}
.ut-navbar ul li a:hover {
  color: #ffa500;
} /* gold-orange hover */

/* HAMBURGER */
.ut-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.ut-hamburger div {
  width: 25px;
  height: 3px;
  background-color: black;
  transition: all 0.3s;
}

/* MOBILE MENU */
.ut-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 220px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 999;
  padding-top: 60px;
}
.ut-mobile-menu.show {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.ut-mobile-menu .ut-mobile-logo {
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.ut-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.ut-mobile-menu ul li a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background 0.2s;
}
.ut-mobile-menu ul li a:hover {
  background: #f2f2f2;
}
.ut-mobile-menu ul li {
  border-bottom: 1px solid #eee;
}
.ut-mobile-menu ul li:last-child {
  border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ut-navbar.desktop {
    display: none;
  } /* desktop navbar hilang di mobile */
  .ut-hamburger {
    display: flex;
    position: fixed;
    top: 1rem;
    right: 1.5rem;
  } /* hamburger tetap */
}
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
.footer {
  background: #0a0a0a;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1920px;
  margin: auto;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: gold;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: gold;
}

.social-icons a {
  display: inline-block;
  margin-right: 8px;
}

.social-icons img {
  width: 35px;
  height: 35px;
  background: #fff;
  padding: 5px;
  border-radius: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #aaa;
}
.kontak-icons p {
  display: flex;
  align-items: center; /* sejajarkan ikon dan teks secara vertikal */
  font-size: 15px;
  color: #fff; /* sesuaikan warna teks */
}
.footer p {
  margin: 8px 0; /* atas 10px, kanan 15px, bawah 8px, kiri 5px */
}
.kontak-icons img {
  margin-right: 8px; /* jarak antara ikon dan teks */
  width: 20px; /* ukuran ikon seragam */
  height: 20px;
}
.center-footer {
  text-align: center; /* bikin gambar di tengah */
}

.circle-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: inline-block; /* biar bisa ditengah pakai text-align */
  margin-bottom: 10px;
}
