html, body {
  min-height: 100vh;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  background-color: #f0f2f5;
  padding-top: 80px;
  color: #333; /* buat teks agak gelap tapi ga terlalu keras */
}
main {
  flex: 1;
}

.contact-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/*
.contact-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.5);
}
*/

.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.75) !important;
}

.navbar-logo {
  width: 40px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
  filter: drop-shadow(0 0 3px #0d6efd80);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.3rem;
  color: #e0e0e0;
  transition: color 0.3s ease;
  line-height: 1;
}

.navbar-brand:hover {
  color: #0d6efd;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: #d0d0d0;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #0d6efd;
  text-shadow: 0 0 5px #0d6efd88;
}

h2 {
  font-weight: 700;
  color: #212529;
  margin-bottom: 30px;
  text-align: center;
}
p {
  line-height: 1.6;
  font-size: 1.1rem;
}

.theme-switch {
  width: 60px;
  height: 30px;
  background: #ddd;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
}

.theme-switch .icon {
  font-size: 16px;
  z-index: 1;
  pointer-events: none;
}

.toggle-circle {
  width: 26px;
  height: 26px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.theme-switch.dark {
  background: #333;
}

.theme-switch.dark .toggle-circle {
  transform: translateX(30px);
}
