.site-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}

@media (max-width: 768px) {
  .site-wrapper {
    max-width: 720px;
    padding: 0 1rem;
  }
}

/* header navbar */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #11151c;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 600;
}

.nav-item-wrapper {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-item a {
  text-decoration: none;
  transition: color 0.2s;
}

.nav-item a:hover {
  color: #175676;
}

/* Mobile Nav Hamburger */
.menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #f5f7fa;
}

@media (max-width: 768px) {
  #navbar {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #11151c;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  #navbar.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }
}

/* Section */
section {
  padding: 100px 0;
  scroll-margin-top: 78px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

.section-name {
  border-bottom: 1px solid #f5f7fa;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
}
.profile-image {
  width: 180px;
  height: 180px;
  background-image: url("../assets/images/profile_img.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  border: 2px solid #f5f7fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-name {
  margin-top: 8px;
  font-size: 24px;
}

.profile-description {
  font-size: 16px;
  margin: 16px 0;
}
/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  color: #f5f7fa;
}

/* Footer icons */
.footer-icons {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #f5f7fa;
  cursor: pointer;
}
.footer-link i[data-lucide] {
  width: 18px;
  height: 18px;
}
