@charset "UTF-8";

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header_Title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header_profile_img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ash-gray);
}

.header_Title h1 {
  font-size: 20px;
  color: var(--text);
  font-weight: 700;
  margin: 0;
}

.header_Title a {
  color: var(--text);
  text-decoration: none;
}

.header_nav {
  display: flex;
  align-items: center;
}

.header_nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
  white-space: nowrap;
}

.header_nav li a {
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.header_nav li a:hover {
  color: var(--accent);
}

.resume_btn,
.header_nav li a.resume_btn {
  background: var(--accent);
  color: #ffffff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.resume_btn:hover,
.header_nav li a.resume_btn:hover {
  background: var(--accent-dark);
}

/* Mobile */
@media (max-width: 768px) {
  header {
    padding: 12px 20px;
  }

  .header_profile_img {
    width: 40px;
    height: 40px;
  }

  .header_Title h1 {
    font-size: 18px;
  }

  .header_nav ul {
    gap: 20px;
  }

  .header_nav li a {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  header {
    padding: 8px 12px;
  }

  .header_Title h1 {
    font-size: 16px;
  }

  .header_nav ul {
    gap: 12px;
  }
}